:root {
    --black: #050608;
    --dark: #0c0d10;
    --card: #111318;
    --card2: #161820;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --gold: #F5A623;
    --gold2: #E8920D;
    --red: #E53535;
    --red2: #C42424;
    --cyan: #00D4E8;
    --text: #F0EDE8;
    --muted: #888690;
    --dim: #3a3840;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(5,6,8,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .btn {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.18s;
  }
  .btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border2);
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--dim); background: rgba(255,255,255,0.04); }

  .btn-gold {
    background: var(--gold);
    color: #0a0900;
  }
  .btn-gold:hover { background: #f8b63a; transform: translateY(-1px); }
  .btn-gold:active { transform: translateY(0); }

  .btn-red {
    background: var(--red);
    color: #fff;
  }
  .btn-red:hover { background: #f04040; transform: translateY(-1px); }

  .btn-lg {
    font-size: 18px;
    padding: 14px 32px;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 48px 52px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  /* Dramatic diagonal split */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245,166,35,0.10) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 40%, rgba(229,53,53,0.08) 0%, transparent 70%);
  }

  /* Scanlines */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.15) 2px,
      rgba(0,0,0,0.15) 4px
    );
    pointer-events: none;
  }

  /* Diagonal accent line */
  .hero-diagonal {
    position: absolute;
    top: 0;
    right: 38%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, transparent 100%);
    opacity: 0.18;
    transform: skewX(-8deg);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
  }

  .hero-game-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,53,53,0.12);
    border: 1px solid rgba(229,53,53,0.3);
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f07070;
    margin-bottom: 24px;
  }
  .hero-game-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
  }

  .hero-title {
    font-family: var(--font-head);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .hero-title .line2 { color: var(--gold); }
  .hero-title .line3 { 
    color: transparent; 
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  }

  .hero-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 24px;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
  }
  .hero-stat-num {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    display: block;
  }
  .hero-stat-num span { color: var(--gold); }
  .hero-stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .trust-item .icon {
    width: 16px; height: 16px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .trust-sep {
    width: 1px;
    height: 20px;
    background: var(--border);
    flex-shrink: 0;
  }

  /* ─── SECTION SHARED ─── */
  section { padding: 100px 48px; position: relative; }

  .section-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
  }

  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    gap: 24px;
    flex-wrap: wrap;
  }

  /* ─── SERVICES ─── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
  }
  .service-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
  }
  .service-card.featured {
    border-color: rgba(245,166,35,0.35);
    background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, var(--card) 60%);
  }
  .service-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 16px; right: 16px;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gold2);
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.25);
    padding: 3px 9px;
    border-radius: 4px;
  }

  .service-icon {
    width: 46px; height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
  }
  .icon-gold { background: rgba(245,166,35,0.12); }
  .icon-red  { background: rgba(229,53,53,0.12);  }
  .icon-cyan { background: rgba(0,212,232,0.10);  }

  .service-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .service-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .price-from { font-size: 12px; color: var(--muted); }
  .price-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
  }
  .price-unit { font-size: 12px; color: var(--muted); }

  /* ─── HOW IT WORKS ─── */
  .how-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
  }

  .step {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .step:last-child { border-right: none; }

  .step-num {
    font-family: var(--font-head);
    font-size: 72px;
    font-weight: 900;
    color: rgba(245,166,35,0.08);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .step h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 10px;
  }
  .step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }
  .step-dot {
    position: absolute;
    top: 36px;
    right: -5px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--dark);
    z-index: 1;
  }
  .step:last-child .step-dot { display: none; }

  /* ─── BOOSTERS ─── */
  .boosters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
  }

  .booster-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s;
  }
  .booster-card:hover { border-color: var(--border2); }

  .booster-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .av-red  { background: rgba(229,53,53,0.2); color: #e07070; }
  .av-gold { background: rgba(245,166,35,0.2); color: #d4942a; }
  .av-cyan { background: rgba(0,212,232,0.2); color: #00c0d0; }

  .booster-info h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .booster-info span {
    font-size: 12px;
    color: var(--muted);
  }

  .booster-rank {
    margin-left: auto;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.2);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
  }

  /* ─── GAME MODES TABS ─── */
  .games-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .game-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }
  .game-tab {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 14px 28px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.18s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: -1px;
  }
  .game-tab:hover { color: var(--text); }
  .game-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .game-content { display: none; }
  .game-content.active { display: block; }

  .mode-card {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    text-decoration: none;
  }
  .mode-card:hover {
    border-color: var(--border2);
    background: var(--card);
  }
  .mode-card-left h4 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 3px;
  }
  .mode-card-left span { font-size: 12px; color: var(--muted); }

  .mode-price {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
  }
  .mode-price small { font-size: 12px; color: var(--muted); font-family: var(--font-body); font-weight: 400; }

  /* ─── TESTIMONIALS ─── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
  }

  .review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
  }

  .review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .review-text {
    font-size: 14px;
    color: #bbb8c0;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .review-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--dim);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-name { font-size: 13px; font-weight: 500; color: var(--text); }
  .review-game { font-size: 11px; color: var(--muted); }

  /* ─── PRICING ─── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }

  .pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
  }
  .pricing-card.highlight {
    border-color: rgba(245,166,35,0.4);
    background: linear-gradient(145deg, rgba(245,166,35,0.08) 0%, var(--card) 50%);
  }
  .pricing-card.highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
  }

  .pricing-tier {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .pricing-card.highlight .pricing-tier { color: var(--gold); }

  .pricing-price {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
  }
  .pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
  .pricing-per { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

  .pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pricing-features li {
    font-size: 14px;
    color: #bbb8c0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pricing-features li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 5.5' stroke='%23F5A623' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
  }

  /* ─── FAQ ─── */
  .faq-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .faq-list {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .faq-q {
    width: 100%;
    background: var(--card);
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background 0.15s;
  }
  .faq-q:hover { background: var(--card2); }

  .faq-q-text {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
  }

  .faq-toggle {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.25s;
    font-size: 16px;
    color: var(--muted);
  }

  .faq-a {
    background: var(--card2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    padding: 0 22px;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 16px 22px 20px;
  }
  .faq-item.open .faq-toggle {
    background: rgba(245,166,35,0.15);
    color: var(--gold);
    transform: rotate(45deg);
  }

  /* ─── CTA SECTION ─── */
  .cta-section {
    text-align: center;
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,166,35,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section .section-title {
    font-size: clamp(44px, 7vw, 88px);
    margin-bottom: 20px;
  }
  .cta-section .section-sub {
    max-width: 480px;
    margin: 0 auto 36px;
  }
  .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 12px;
  }

  .footer-col h5 {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 14px;
    color: #7a7882;
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p {
    font-size: 13px;
    color: var(--dim);
  }

  /* ─── WZ RANKED PRICING ─── */
  .wz-rank-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid;
    letter-spacing: 0.04em;
  }

  .wz-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 18px;
    transition: border-color 0.18s;
  }
  .wz-price-row:hover { border-color: var(--border2); }

  .wz-price-from, .wz-price-to {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-width: 110px;
  }

  .wz-arrow {
    font-size: 22px;
    color: var(--muted);
    font-weight: 300;
    flex-shrink: 0;
  }

  .wz-price-amount {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    margin-left: auto;
    margin-right: 8px;
  }

  /* ─── VOUCHES GALLERY ─── */
  .vouches-masonry { padding: 0; }
  .vouch-img {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    display: block;
  }
  .vouch-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
  }
  .vouch-img:hover img { transform: scale(1.02); }
  .vouch-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(5,6,8,0.92) 0%, transparent 100%);
    padding: 20px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .vouch-img:hover .vouch-overlay { opacity: 1; }
  .vouch-user {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
  }
  .vouch-tag {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  @media (max-width: 900px) { .vouches-masonry { columns: 2; } }
  @media (max-width: 500px) { .vouches-masonry { columns: 1; } }

  /* ─── VOUCHES ─── */
  .vouch-masonry { padding-bottom: 4px; }
  .vouch-item {
    background: #111318;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
  }
  .vouch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
  }
  .vouch-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: #c9c7ff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .vouch-date {
    font-size: 11px;
    color: var(--muted);
  }
  .vouch-text {
    font-size: 13px;
    color: #c0bdc8;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .vouch-img {
    width: 100%;
    border-radius: 6px;
    display: block;
    border: 1px solid rgba(255,255,255,0.06);
  }
  @media (max-width: 900px) {
    .vouch-masonry { columns: 2 !important; }
  }
  @media (max-width: 600px) {
    .vouch-masonry { columns: 1 !important; }
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .trust-bar { padding: 16px 24px; gap: 20px; flex-wrap: wrap; }
    footer { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .game-tabs { overflow-x: auto; }
    .footer-grid { grid-template-columns: 1fr; }
  }