
    :root {
      --bg: #0d1f1a;
      --bg2: #112820;
      --bg3: #163322;
      --card: #1a3d2b;
      --card2: #1f4a33;
      --accent: #f5c518;
      --accent2: #e0a800;
      --green: #2ecc71;
      --green2: #27ae60;
      --text: #e8f5e9;
      --muted: #8ab09a;
      --border: #2a5040;
      --red: #e74c3c;
      --radius: 10px;
      --font-head: 'Exo 2', sans-serif;
      --font-body: 'Noto Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; height: auto; }

    /* ── HEADER ── */
    header {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      position: sticky; top: 0; z-index: 100;
    }
    .header-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 20px; height: 60px;
      gap: 12px;
    }
    .logo {
      display: flex; align-items: center; gap: 8px;
      font-family: var(--font-head); font-weight: 900; font-size: 20px;
      color: var(--accent); white-space: nowrap;
    }
    .logo img { height: 32px; width: auto; }
    nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
    nav a {
      font-family: var(--font-head); font-size: 13px; font-weight: 600;
      color: var(--muted); padding: 6px 10px; border-radius: 6px;
      transition: color .2s, background .2s;
    }
    nav a:hover { color: var(--text); background: var(--card); }
    .header-actions { display: flex; align-items: center; gap: 8px; }
    .btn-outline {
      border: 1.5px solid var(--border); color: var(--text);
      padding: 7px 18px; border-radius: 8px;
      font-family: var(--font-head); font-size: 13px; font-weight: 600;
      cursor: pointer; transition: border-color .2s, color .2s;
      background: transparent;
    }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
    .btn-primary {
      background: var(--accent); color: #1a1a00;
      padding: 8px 20px; border-radius: 8px;
      font-family: var(--font-head); font-size: 13px; font-weight: 800;
      cursor: pointer; border: none; transition: background .2s;
      white-space: nowrap;
    }
    .btn-primary:hover { background: var(--accent2); }
    .burger { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

    /* ── HERO ── */
    .hero {
      background: url('/images/banner-1.webp') center/cover no-repeat;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--bg) 0%, rgba(13,31,26,0.8) 50%, transparent 100%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 40px;
      padding: 60px 20px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.3);
      border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 600;
      color: var(--accent); margin-bottom: 16px; width: fit-content;
    }
    .hero h1 {
      font-family: var(--font-head); font-size: clamp(28px, 4vw, 52px);
      font-weight: 900; line-height: 1.1; margin-bottom: 12px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .hero h1 span { color: var(--accent); display: block; }
    .hero-sub {
      font-size: 16px; color: var(--text); margin-bottom: 28px; max-width: 440px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-hero {
      background: var(--accent); color: #1a1a00;
      padding: 14px 32px; border-radius: 10px;
      font-family: var(--font-head); font-size: 15px; font-weight: 800;
      transition: background .2s, transform .15s; display: inline-block;
    }
    .btn-hero:hover { background: var(--accent2); transform: translateY(-2px); }
    .btn-hero-sec {
      border: 2px solid var(--border); color: var(--text); background: rgba(0,0,0,0.3);
      padding: 13px 28px; border-radius: 10px; backdrop-filter: blur(5px);
      font-family: var(--font-head); font-size: 15px; font-weight: 700;
      transition: border-color .2s, background .2s; display: inline-block;
    }
    .btn-hero-sec:hover { border-color: var(--green); background: rgba(46,204,113,.2); }
    .hero-img-wrap {
      display: flex; justify-content: center; align-items: center;
    }
    .hero-promo-card {
      background: rgba(26,61,43,0.95); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px 32px; text-align: center;
      max-width: 320px; width: 100%;
      box-shadow: 0 8px 32px rgba(0,0,0,.6); backdrop-filter: blur(8px);
    }
    .hero-promo-card .amount {
      font-family: var(--font-head); font-size: 42px; font-weight: 900;
      color: var(--accent); line-height: 1; margin-bottom: 8px;
    }
    .hero-promo-card .desc { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
    .trust-icons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; align-items: center;}
    .trust-icon img { height: 22px; width: auto; object-fit: contain; }

    /* ── SECTION COMMON ── */
    section { padding: 48px 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
    .section-head {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 20px;
    }
    .section-title {
      font-family: var(--font-head); font-size: 22px; font-weight: 800;
    }
    .see-more {
      font-family: var(--font-head); font-size: 13px; color: var(--accent);
      font-weight: 600; transition: opacity .2s;
    }
    .see-more:hover { opacity: .75; }

    /* ── QUICKLINKS ── */
    .quicklinks { background: var(--bg2); padding: 16px 0; border-bottom: 1px solid var(--border); }
    .quicklinks-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 20px;
      display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
    }
    .quicklinks-inner::-webkit-scrollbar { display: none; }
    .ql-btn {
      display: flex; align-items: center; gap: 8px; white-space: nowrap;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 7px 16px;
      font-family: var(--font-head); font-size: 13px; font-weight: 600;
      color: var(--text); transition: background .2s, border-color .2s;
      cursor: pointer;
    }
    .ql-btn:hover { background: var(--card2); border-color: var(--accent); }
    .ql-btn img { width: 20px; height: 20px; object-fit: contain; }

    /* ── SLOTS GRID ── */
    .slots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }
    .slot-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
    }
    .slot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
    .slot-thumb {
      aspect-ratio: 1; background: var(--bg3);
      position: relative; overflow: hidden;
    }
    .slot-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .slot-thumb::after {
      content: 'ИГРАТЬ';
      position: absolute; inset: 0; background: rgba(0,0,0,.7);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-size: 13px; font-weight: 800;
      color: var(--accent); opacity: 0; transition: opacity .2s;
    }
    .slot-card:hover .slot-thumb::after { opacity: 1; }
    .slot-name {
      padding: 8px 10px; font-size: 12px; font-weight: 600;
      color: var(--muted); text-align: center; white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
    }

    /* ── WINS ── */
    .wins-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
    }
    .win-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .win-icon { width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0; overflow: hidden; background: var(--bg3); }
    .win-icon img { width: 100%; height: 100%; object-fit: cover; }
    .win-info .name { font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .win-info .id { font-size: 11px; color: var(--muted); }
    .win-amount { font-family: var(--font-head); font-weight: 900; font-size: 15px; color: var(--accent); margin-top: 4px; }

    /* ── PROVIDERS ── */
    .providers-row {
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .provider-chip {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 8px; padding: 8px 18px; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-size: 13px; font-weight: 700;
      color: var(--muted); transition: background .2s, color .2s, border-color .2s;
      cursor: pointer; min-height: 40px;
    }
    .provider-chip:hover { background: var(--card2); color: var(--text); border-color: var(--accent); }
    .provider-chip img { height: 20px; object-fit: contain; filter: grayscale(1) brightness(1.5); transition: filter .2s; }
    .provider-chip:hover img { filter: grayscale(0) brightness(1); }

    /* ── SPORTS ── */
    .sports-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 12px;
    }
    .match-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 14px;
    }
    .match-league { font-size: 11px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
    .match-teams {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 10px; gap: 8px;
    }
    .team { font-weight: 700; font-size: 13px; text-align: center; flex: 1; }
    .match-time { text-align: center; font-size: 11px; color: var(--accent); font-weight: 700; }
    .odds-row { display: flex; gap: 8px; }
    .odd-btn {
      flex: 1; background: var(--bg3); border: 1px solid var(--border);
      border-radius: 6px; padding: 7px 4px; text-align: center;
      cursor: pointer; transition: background .2s;
    }
    .odd-btn:hover { background: rgba(245,197,24,.15); border-color: var(--accent); }
    .odd-btn .odd-val { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--accent); }
    .odd-btn .odd-label { font-size: 10px; color: var(--muted); }

    /* ── BONUSES ── */
    .bonuses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    .bonus-card {
      background: linear-gradient(135deg, var(--card) 0%, var(--bg3) 100%);
      border: 1px solid var(--border); border-radius: 14px;
      padding: 24px; position: relative; overflow: hidden;
    }
    .bonus-card::before {
      content: '';
      position: absolute; top: -30px; right: -30px;
      width: 100px; height: 100px;
      background: radial-gradient(circle, rgba(245,197,24,.12) 0%, transparent 70%);
    }
    .bonus-tag {
      display: inline-block; background: var(--accent); color: #1a1a00;
      border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 800;
      margin-bottom: 10px;
    }
    .bonus-title { font-family: var(--font-head); font-weight: 800; font-size: 17px; margin-bottom: 6px; }
    .bonus-amount { font-family: var(--font-head); font-weight: 900; font-size: 28px; color: var(--accent); margin-bottom: 8px; }
    .bonus-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
    .btn-bonus {
      display: inline-block; background: var(--accent); color: #1a1a00;
      padding: 10px 24px; border-radius: 8px;
      font-family: var(--font-head); font-size: 13px; font-weight: 800;
      transition: background .2s;
    }
    .btn-bonus:hover { background: var(--accent2); }

    /* ── TEXT CONTENT ── */
    .text-content {
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 48px 0;
    }
    .text-content .container { max-width: 900px; }
    .text-content h2 {
      font-family: var(--font-head); font-size: 24px; font-weight: 800;
      margin-bottom: 16px; color: var(--text);
    }
    .text-content h3 {
      font-family: var(--font-head); font-size: 18px; font-weight: 700;
      margin: 28px 0 10px; color: var(--accent);
    }
    .text-content p {
      color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: 14px;
    }
    .text-content ul {
      list-style: none; padding: 0; margin-bottom: 14px;
    }
    .text-content ul li {
      color: var(--muted); font-size: 14px; line-height: 1.8;
      padding-left: 20px; position: relative;
    }
    .text-content ul li::before {
      content: '✓'; position: absolute; left: 0;
      color: var(--green); font-weight: 700;
    }
    .text-toc {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 18px 22px; margin-bottom: 28px;
    }
    .text-toc p { font-weight: 700; color: var(--text); margin-bottom: 10px; }
    .text-toc ol { padding-left: 18px; }
    .text-toc ol li { color: var(--muted); font-size: 13px; margin-bottom: 5px; }
    .text-toc ol li a { color: var(--accent); transition: opacity .2s; }
    .text-toc ol li a:hover { opacity: .7; }

    /* ── FOOTER ── */
    footer {
      background: #0a1a12; border-top: 1px solid var(--border);
      padding: 40px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 32px; margin-bottom: 32px;
    }
    .footer-brand .logo { margin-bottom: 12px; font-size: 22px; }
    .footer-brand p { font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 280px; }
    .footer-col h4 {
      font-family: var(--font-head); font-weight: 700; font-size: 14px;
      margin-bottom: 14px; color: var(--text);
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      font-size: 13px; color: var(--muted);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 20px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 12px; color: var(--muted); }
    .footer-badges { display: flex; gap: 10px; align-items: center; }
    .footer-payments { display: flex; gap: 10px; align-items: center; margin-bottom: 15px; flex-wrap: wrap; }
    .footer-payments img { height: 20px; object-fit: contain; }
    .android-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: #1a3a2a; border: 1px solid var(--border);
      border-radius: 8px; padding: 8px 14px;
      font-size: 12px; color: var(--text); font-weight: 600;
      transition: background .2s; cursor: pointer;
    }
    .android-btn:hover { background: var(--card); }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--card); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; overflow: hidden;
    }
    .social-link img { width: 20px; height: 20px; object-fit: contain; }
    .social-link:hover { background: var(--card2); }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--bg2); border-top: 1px solid var(--border);
      z-index: 200;
    }
    .mobile-nav-inner {
      display: flex; justify-content: space-around; padding: 8px 0 12px;
    }
    .mnav-item {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      font-size: 10px; font-weight: 600; color: var(--muted);
      padding: 4px 12px; border-radius: 8px; transition: color .2s;
      cursor: pointer;
    }
    .mnav-item.active { color: var(--accent); }
    .mnav-item img { width: 20px; height: 20px; filter: grayscale(1); }
    .mnav-item.active img { filter: grayscale(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav, .header-actions .btn-outline { display: none; }
      .burger { display: block; }
      .hero { background: url('/images/mobile_banner.avif') center/cover no-repeat; }
      .hero::before { background: rgba(13,31,26,0.6); }
      .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 36px 20px; }
      .hero-sub { margin: 0 auto 24px; }
      .hero-btns { justify-content: center; }
      .hero-img-wrap { order: -1; }
      .hero-promo-card { margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1/-1; }
      .mobile-nav { display: block; }
      body { padding-bottom: 70px; }
      .slots-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
      .wins-grid { grid-template-columns: 1fr; }
      .bonuses-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 26px; }
    }
  