*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #c8a84b;
    --gold-light: #e5c96a;
    --dark: #0a0a0f;
    --dark2: #111118;
    --dark3: #1a1a24;
    --dark4: #22222e;
    --text: #d4d4e0;
    --text-muted: #888899;
    --red: #e03030;
    --blue: #1a6fff;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--dark); color: var(--text); font-family: 'Segoe UI', Arial, sans-serif; font-size: 15px; line-height: 1.7; }
  a { color: var(--gold); text-decoration: none; }
  a:hover { color: var(--gold-light); }
  img { display: block; max-width: 100%; height: auto; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

  /* HEADER */
  header {
    background: linear-gradient(180deg, #080810 0%, #10101a 100%);
    border-bottom: 2px solid var(--gold);
    position: sticky; top: 0; z-index: 1000;
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
  .logo { font-size: 26px; font-weight: 900; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
  .logo span { color: #fff; }
  nav { display: flex; align-items: center; gap: 4px; }
  nav a { color: var(--text); padding: 6px 12px; border-radius: 4px; font-size: 14px; font-weight: 500; transition: background .2s, color .2s; white-space: nowrap; }
  nav a:hover, nav a.active { background: var(--gold); color: #000; }
  .nav-btns { display: flex; gap: 8px; align-items: center; }
  .btn { display: inline-block; padding: 8px 18px; border-radius: 5px; font-weight: 700; font-size: 14px; cursor: pointer; transition: opacity .2s; white-space: nowrap; }
  .btn-login { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
  .btn-login:hover { background: var(--gold); color: #000; }
  .btn-reg { background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%); color: #000; border: none; }
  .btn-reg:hover { opacity: .88; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
  .mobile-nav { display: none; background: var(--dark2); border-top: 1px solid var(--dark4); }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--dark4); color: var(--text); font-size: 15px; }
  .mobile-nav a.active, .mobile-nav a:hover { color: var(--gold); background: var(--dark3); }
  .mobile-nav .nav-btns { padding: 12px 20px; gap: 10px; }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, #070710 0%, #0e0e20 40%, #15101a 100%);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--dark4);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,168,75,.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .hero-text h1 { font-size: 38px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
  .hero-text h1 em { color: var(--gold); font-style: normal; }
  .hero-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
  .hero-stats { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
  .hero-stat strong { display: block; font-size: 22px; font-weight: 900; color: var(--gold); }
  .hero-stat span { font-size: 12px; color: var(--text-muted); }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-hero-reg { background: linear-gradient(135deg, var(--gold) 0%, #b8902a 100%); color: #000; padding: 14px 32px; border-radius: 6px; font-size: 16px; font-weight: 800; }
  .btn-hero-login { background: transparent; border: 2px solid var(--gold); color: var(--gold); padding: 12px 28px; border-radius: 6px; font-size: 16px; font-weight: 700; }
  .btn-hero-login:hover { background: var(--gold); color: #000; }
  .hero-img-wrap { display: flex; flex-direction: column; gap: 12px; }
  .hero-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-grid img { border-radius: 8px; width: 100%; object-fit: cover; border: 1px solid var(--dark4); }

  /* MARQUEE */
  .marquee-bar { background: var(--dark3); border-top: 1px solid var(--dark4); border-bottom: 1px solid var(--dark4); padding: 10px 0; overflow: hidden; }
  .marquee-inner { display: flex; gap: 48px; animation: marquee 30s linear infinite; white-space: nowrap; width: max-content; }
  .marquee-inner span { color: var(--gold); font-size: 13px; font-weight: 600; }
  .marquee-inner span::before { content: '🎰 '; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* SECTION COMMON */
  section { padding: 56px 0; }
  .section-title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; position: relative; padding-bottom: 12px; }
  .section-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--gold); border-radius: 2px; }
  .section-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

  /* GAME GRID */
  .games-section { background: var(--dark2); }
  .game-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
  .game-tab { padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid var(--dark4); color: var(--text-muted); cursor: pointer; transition: all .2s; background: var(--dark3); }
  .game-tab.active, .game-tab:hover { background: var(--gold); color: #000; border-color: var(--gold); }
  .game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .game-card { background: var(--dark3); border-radius: 10px; overflow: hidden; border: 1px solid var(--dark4); transition: transform .2s, border-color .2s; }
  .game-card:hover { transform: translateY(-4px); border-color: var(--gold); }
  .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
  .game-card-info { padding: 10px 10px 12px; }
  .game-card-info h3 { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .game-card-info span { font-size: 11px; color: var(--text-muted); }
  .game-card-badge { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-bottom: 4px; }
  .game-card-badge.hot { background: var(--gold); color: #000; }

  /* LIVE BANNER */
  .live-section { background: var(--dark); }
  .live-banner-wrap { border-radius: 12px; overflow: hidden; border: 2px solid var(--gold); position: relative; }
  .live-banner-wrap img { width: 100%; object-fit: cover; }
  .live-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, transparent 60%); display: flex; align-items: center; padding: 32px; }
  .live-overlay-text h2 { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }
  .live-overlay-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; max-width: 360px; }

  /* PROVIDERS */
  .providers-section { background: var(--dark3); }
  .provider-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .provider-card { background: var(--dark4); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 16px 12px; border: 1px solid #2a2a38; transition: border-color .2s; }
  .provider-card:hover { border-color: var(--gold); }
  .provider-card img { max-width: 80px; max-height: 60px; object-fit: contain; filter: grayscale(.4); transition: filter .2s; }
  .provider-card:hover img { filter: none; }

  /* WHY US */
  .why-section { background: var(--dark2); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-card { background: var(--dark3); border-radius: 12px; padding: 28px 24px; border: 1px solid var(--dark4); border-top: 3px solid var(--gold); }
  .why-icon { font-size: 36px; margin-bottom: 14px; }
  .why-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* ARTICLE / BRAND STORY */
  .brand-section { background: var(--dark); }
  .brand-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
  .brand-text h2 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 20px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
  .brand-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; line-height: 1.8; }
  .brand-text p strong { color: var(--gold); }
  .brand-sidebar { background: var(--dark3); border-radius: 12px; padding: 24px; border: 1px solid var(--dark4); }
  .brand-sidebar h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 16px; }
  .stat-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--dark4); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item strong { font-size: 20px; font-weight: 900; color: var(--gold); }
  .stat-item span { font-size: 13px; color: var(--text-muted); text-align: right; max-width: 60%; }

  /* TESTIMONIAL */
  .testimonial-section { background: var(--dark3); }
  .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial-card { background: var(--dark4); border-radius: 10px; padding: 22px; border: 1px solid #2a2a38; }
  .testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
  .testimonial-card p { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
  .testimonial-author { font-size: 13px; font-weight: 700; color: #fff; }
  .testimonial-loc { font-size: 12px; color: var(--text-muted); }

  /* FAQ */
  .faq-section { background: var(--dark2); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .faq-item { background: var(--dark3); border-radius: 10px; padding: 22px 24px; border: 1px solid var(--dark4); border-left: 4px solid var(--gold); }
  .faq-item h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 10px; }
  .faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
  .faq-item ul { margin: 8px 0 0 18px; }
  .faq-item ul li { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }

  /* PROMO BANNER */
  .promo-section { background: linear-gradient(135deg, #0d0d18 0%, #1a1228 100%); border-top: 1px solid var(--dark4); border-bottom: 1px solid var(--dark4); }
  .promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .promo-text h2 { font-size: 28px; font-weight: 900; color: #fff; }
  .promo-text h2 em { color: var(--gold); font-style: normal; }
  .promo-text p { color: var(--text-muted); font-size: 15px; margin-top: 6px; }
  .promo-badge { background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%); color: #000; font-size: 42px; font-weight: 900; padding: 20px 36px; border-radius: 12px; text-align: center; line-height: 1.1; }
  .promo-badge small { display: block; font-size: 14px; font-weight: 700; }

  /* FOOTER */
  footer { background: #06060e; border-top: 2px solid var(--dark4); padding: 48px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-brand .logo { font-size: 24px; margin-bottom: 14px; display: inline-block; }
  .footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
  .footer-col h4 { font-size: 14px; font-weight: 800; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid var(--dark4); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: var(--text-muted); }
  .footer-badges { display: flex; gap: 10px; align-items: center; }
  .badge-item { background: var(--dark3); border: 1px solid var(--dark4); border-radius: 4px; padding: 4px 10px; font-size: 11px; color: var(--text-muted); font-weight: 600; }
  .age-badge { background: var(--red); color: #fff; border-color: var(--red); font-weight: 800; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, 1fr); }
    .provider-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav, .nav-btns { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 26px; }
    .hero-grid { grid-template-columns: repeat(3, 1fr); }
    .game-grid { grid-template-columns: repeat(3, 1fr); }
    .provider-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .brand-inner { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .promo-inner { flex-direction: column; text-align: center; }
    .section-title { font-size: 20px; }
  }@media (max-width: 480px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .provider-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .hero-stat strong { font-size: 18px; }
  }