    :root {
      --gold: #D4AF37; --gold-light: #F5D76E; --gold-dark: #9A7B1A;
      --dark: #0A0A0F; --dark-2: #111118; --dark-3: #1A1A26; --dark-4: #22223A;
      --accent: #7C3AED; --red: #E63946; --green: #009C3B;
      --text: #E8E8F0; --text-muted: #8888AA;
      --border: rgba(212,175,55,0.18); --radius: 12px; --radius-lg: 20px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Nunito', sans-serif; background: var(--dark); color: var(--text); min-height: 100vh; overflow-x: hidden; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; opacity: 0.4; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .logo-img { height: 45px; width: auto; display: block; }

    .header { position: sticky; top: 0; z-index: 100; background: rgba(35, 35, 45, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
    .header-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; gap: 32px; }
    .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .header-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
    .header-nav a { padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--text-muted); transition: color 0.2s, background 0.2s; }
    .header-nav a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
    .header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 22px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: all 0.25s; letter-spacing: 0.03em; text-decoration: none; }
    .btn-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.15); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }
    .btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0A0A0F; box-shadow: 0 4px 18px rgba(212,175,55,0.35); }
    .btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(212,175,55,0.5); }

    .slide-img { min-width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; display: block; transition: opacity 0.3s ease; }
    .slide-img:hover { opacity: 0.9; }

    .slider-section { position: relative; overflow: hidden; height: 460px; }
    .slider-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.77,0,0.18,1); }
    .slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; overflow: hidden; }
    .slider-nav { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
    .slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
    .slider-dot.active { width: 28px; border-radius: 4px; background: var(--gold); }
    .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); border: 1px solid var(--border); color: var(--gold); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 18px; transition: background 0.2s; }
    .slider-arrow:hover { background: rgba(212,175,55,0.2); }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }

    .stats-bar { background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stats-inner { max-width: 1280px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; }
    .stat-item { flex: 1; text-align: center; padding: 8px 16px; border-right: 1px solid var(--border); }
    .stat-item:last-child { border-right: none; }
    .stat-value { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }
    .stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

    .section { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }
    .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
    .section-title { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
    .section-title::before { content: ''; display: block; width: 4px; height: 22px; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 2px; }
    .section-link { font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
    .section-link:hover { gap: 8px; }
    .cat-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
    .cat-tab { padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; background: var(--dark-3); color: var(--text-muted); transition: all 0.2s; }
    .cat-tab.active, .cat-tab:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }

    .slots-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
    @media (max-width: 1100px) { .slots-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 700px)  { .slots-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 480px)  { .slots-grid { grid-template-columns: repeat(2, 1fr); } }

    .slot-card { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--dark-3); border: 1px solid var(--border); aspect-ratio: 4/5; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; }
    .slot-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.4); }
    .slot-thumb { width: 100%; height: 72%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .slot-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5)); }
    .slot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .slot-info { padding: 8px 10px; height: 28%; display: flex; flex-direction: column; justify-content: center; }
    .slot-name { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
    .slot-provider { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
    .slot-overlay { position: absolute; inset: 0; background: rgba(10,10,15,0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity 0.25s; }
    .slot-card:hover .slot-overlay { opacity: 1; }
    .slot-play-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0A0A0F; font-weight: 800; font-size: 13px; padding: 8px 20px; border-radius: 8px; letter-spacing: 0.04em; text-decoration: none; }
    .slot-demo-btn { font-size: 12px; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 8px; text-decoration: none; }
    .slot-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; z-index: 2; }
    .badge-hot { background: var(--red); color: #fff; }
    .badge-new { background: var(--accent); color: #fff; }
    .badge-top { background: var(--gold); color: #0A0A0F; }
    .show-more-wrap { text-align: center; margin-top: 28px; }

    .seo-section { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .seo-inner { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
    h1.main-title { font-family: 'Cinzel', serif; font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
    h1.main-title .gold { color: var(--gold); }
    .title-underline { width: 80px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 2px; margin-bottom: 36px; }

    .toc-box { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 36px; max-width: 480px; }
    .toc-title { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .toc-list { list-style: none; counter-reset: toc; }
    .toc-list li { counter-increment: toc; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 10px; }
    .toc-list li:last-child { border-bottom: none; }
    .toc-list li::before { content: counter(toc, decimal-leading-zero); font-size: 11px; font-weight: 700; color: var(--gold); min-width: 22px; opacity: 0.7; }
    .toc-list li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
    .toc-list li a:hover { color: var(--gold); }

    .article-content { max-width: 860px; }
    .article-content h2 { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--text); margin: 36px 0 14px; padding-top: 10px; }
    .article-content h3 { font-size: 17px; font-weight: 700; color: var(--gold-light); margin: 24px 0 10px; }
    .article-content p { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
    .article-content ul { list-style: none; padding: 0; margin-bottom: 20px; }
    .article-content ul li { padding: 5px 0 5px 20px; position: relative; font-size: 15px; color: var(--text-muted); line-height: 1.6; }
    .article-content ul li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 9px; }
    .article-content ol { padding-left: 20px; margin-bottom: 20px; }
    .article-content ol li { padding: 4px 0 4px 8px; font-size: 15px; color: var(--text-muted); line-height: 1.65; }

    .faq-section { max-width: 860px; margin-top: 48px; }
    .faq-title { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
    .faq-title::before { content: ''; display: block; width: 4px; height: 22px; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 2px; }
    .faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--dark-3); transition: border-color 0.2s; }
    .faq-item.open { border-color: rgba(212,175,55,0.35); }
    .faq-q { padding: 18px 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15px; font-weight: 600; color: var(--text); user-select: none; transition: color 0.2s; }
    .faq-item.open .faq-q { color: var(--gold); }
    .faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: transform 0.3s, border-color 0.2s; color: var(--gold); }
    .faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-a-inner { padding: 0 20px 18px; font-size: 14px; line-height: 1.7; color: var(--text-muted); }

    .comments-section { background: var(--dark-2); border-top: 1px solid var(--border); }
    .comments-inner { max-width: 860px; margin: 0 auto; padding: 56px 24px; }
    .comments-title { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
    .comments-title::before { content: ''; display: block; width: 4px; height: 22px; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 2px; }
    .comment-list { margin-bottom: 40px; }
    .comment-item { display: flex; gap: 14px; padding: 20px; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; }
    .comment-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; color: #fff; }
    .comment-body { flex: 1; }
    .comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
    .comment-author { font-weight: 700; font-size: 14px; }
    .comment-date { font-size: 12px; color: var(--text-muted); }
    .comment-stars { color: var(--gold); font-size: 12px; margin-left: auto; }
    .comment-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
    .comment-form-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
    .form-input, .form-textarea { background: var(--dark-3); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
    .form-input:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
    .form-textarea { resize: vertical; min-height: 110px; }
    .star-rating { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
    .star-rating input { display: none; }
    .star-rating label { font-size: 26px; color: var(--dark-4); cursor: pointer; transition: color 0.15s; }
    .star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: var(--gold); }
    .form-submit { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
    .form-notice { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
    .form-success { display: none; padding: 16px 20px; background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); border-radius: 10px; color: #4ade80; font-size: 14px; font-weight: 600; margin-top: 14px; }

    .footer { background: var(--dark-2); border-top: 1px solid var(--border); }
    .footer-providers { border-top: 1px solid var(--border); padding: 24px; }
    .footer-providers-inner { max-width: 1280px; margin: 0 auto; }
    .providers-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
    .providers-list { display: flex; gap: 8px; flex-wrap: wrap; }
    .provider-badge { background: var(--dark-3); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; }
    .footer-payments { border-top: 1px solid var(--border); padding: 20px 24px; }
    .footer-payments-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .payment-badge { background: var(--dark-3); border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 18px 24px; }
    .footer-bottom-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-copy { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
    .footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
    .footer-legal a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
    .footer-legal a:hover { color: var(--gold); }

    @media (max-width: 860px) { .header-nav { display: none; } }
    .header-burger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; padding: 4px; }
    @media (max-width: 860px) { .header-burger { display: block; } }

    @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .anim-in { animation: fadeInUp 0.6s ease both; }
    .anim-in:nth-child(2) { animation-delay: 0.1s; }
    .anim-in:nth-child(3) { animation-delay: 0.2s; }
    @keyframes goldPulse { 0%, 100% { box-shadow: 0 4px 18px rgba(212,175,55,0.35); } 50% { box-shadow: 0 4px 28px rgba(212,175,55,0.6); } }
    .btn-gold { animation: goldPulse 2.5s ease-in-out infinite; }
    .btn-gold:hover { animation: none; }

    @media (max-width: 768px) { .slider-section { height: 250px; } .logo-img { height: 35px; } }
    @media (max-width: 480px) { .slider-section { height: 180px; } .header-actions .btn { padding: 8px 12px; font-size: 12px; } }
     /* ══════════════════════════════════
       BONUS PAGE SPECIFIC STYLES
    ══════════════════════════════════ */

    /* Breadcrumb */
    .breadcrumb {
      max-width: 1280px;
      margin: 0 auto;
      padding: 14px 24px 0;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { color: var(--gold); }

    /* Page subtitle tabs (Todos / Cassino / Esporte) */
    .bonus-page-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 24px 24px 0;
    }

    .bonus-page-tab {
      padding: 9px 28px;
      border-radius: 24px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: var(--dark-3);
      color: var(--text-muted);
      transition: all 0.2s;
    }

    .bonus-page-tab.active,
    .bonus-page-tab:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(212,175,55,0.1);
    }

    /* ── Bonus card grid ── */
    .bonus-grid-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 32px 24px 48px;
    }

    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media (max-width: 900px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .bonus-grid { grid-template-columns: 1fr; } }

    .bonus-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      text-decoration: none;
      display: block;
      background: var(--dark-3);
      min-height: 140px;
    }

    .bonus-card:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 18px rgba(212,175,55,0.1);
      border-color: rgba(212,175,55,0.4);
    }

    /* Card background gradients per type */
    .bonus-card.type-welcome  { background: linear-gradient(135deg, #1a0e2e 0%, #0e1a2e 100%); }
    .bonus-card.type-cashback { background: linear-gradient(135deg, #0e200e 0%, #0a1a14 100%); }
    .bonus-card.type-freespin { background: linear-gradient(135deg, #2a1400 0%, #1a0e00 100%); }
    .bonus-card.type-vip      { background: linear-gradient(135deg, #1a1000 0%, #2e1a00 100%); }
    .bonus-card.type-reload   { background: linear-gradient(135deg, #0e0e2e 0%, #160e2e 100%); }
    .bonus-card.type-promo    { background: linear-gradient(135deg, #1a001a 0%, #260026 100%); }

    .bonus-card-inner {
      padding: 22px 20px 18px;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 140px;
      position: relative;
      z-index: 1;
    }

    /* Decorative background emoji */
    .bonus-card::after {
      content: attr(data-icon);
      position: absolute;
      right: 14px;
      bottom: 10px;
      font-size: 56px;
      opacity: 0.08;
      pointer-events: none;
      z-index: 0;
      line-height: 1;
    }

    .bonus-card-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 10px;
      width: fit-content;
    }

    .tag-new     { background: var(--accent); color: #fff; }
    .tag-popular { background: var(--red); color: #fff; }
    .tag-vip     { background: var(--gold); color: #0A0A0F; }
    .tag-reload  { background: #1d4ed8; color: #fff; }
    .tag-promo   { background: var(--green); color: #fff; }
    .tag-daily   { background: #0891b2; color: #fff; }

    .bonus-card-title {
      font-family: 'Cinzel', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .bonus-card-value {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .bonus-card-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-top: auto;
      padding-top: 8px;
    }

    .bonus-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.04em;
    }

    .bonus-card-cta::after { content: '→'; transition: margin 0.2s; }
    .bonus-card:hover .bonus-card-cta::after { margin-left: 4px; }

    /* ── Bonus detail table ── */
    .bonus-table-wrap {
      overflow-x: auto;
      margin: 20px 0 28px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }

    .bonus-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    .bonus-table thead tr {
      background: var(--dark-4);
    }

    .bonus-table thead th {
      padding: 13px 16px;
      text-align: left;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
      border-bottom: 1px solid var(--border);
    }

    .bonus-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.15s;
    }

    .bonus-table tbody tr:hover { background: rgba(212,175,55,0.04); }
    .bonus-table tbody tr:last-child { border-bottom: none; }

    .bonus-table td {
      padding: 12px 16px;
      color: var(--text-muted);
      vertical-align: middle;
      line-height: 1.5;
    }

    .bonus-table td:first-child { color: var(--text); font-weight: 600; }

    .td-gold { color: var(--gold) !important; font-weight: 700 !important; }
    .td-green { color: #4ade80 !important; font-weight: 700 !important; }
    .td-muted { color: var(--text-muted) !important; font-style: italic; }

    /* VIP table */
    .vip-table tbody td:nth-child(1) { color: var(--gold); font-weight: 700; }
    .vip-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.015); }

    /* Highlight box */
    .highlight-box {
      background: var(--dark-3);
      border: 1px solid var(--border);
      border-left: 4px solid var(--gold);
      border-radius: var(--radius);
      padding: 18px 20px;
      margin: 20px 0;
    }

    .highlight-box p {
      margin-bottom: 0 !important;
      font-size: 14px !important;
    }

    .highlight-box strong { color: var(--gold); }

    /* Info box */
    .info-box {
      background: rgba(124,58,237,0.08);
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: var(--radius);
      padding: 16px 20px;
      margin: 20px 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .info-box strong { color: #c4b5fd; }

    /* Warning box */
    .warning-box {
      background: rgba(230,57,70,0.07);
      border: 1px solid rgba(230,57,70,0.22);
      border-radius: var(--radius);
      padding: 16px 20px;
      margin: 20px 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .warning-box strong { color: #fca5a5; }

    /* Step list */
    .step-list {
      list-style: none;
      padding: 0;
      margin-bottom: 24px;
      counter-reset: steps;
    }

    .step-list li {
      counter-increment: steps;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .step-list li:last-child { border-bottom: none; }

    .step-list li::before {
      content: counter(steps);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #0A0A0F;
      font-weight: 800;
      font-size: 12px;
      margin-top: 1px;
    }

    /* Contacts block */
    .contact-block {
      background: var(--dark-3);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      margin-top: 40px;
    }

    .contact-block h3 {
      font-family: 'Cinzel', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .contact-block p {
      font-size: 14px !important;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 6px !important;
    }

    .contact-block a { color: var(--gold); }
    .contact-block a:hover { text-decoration: underline; }