    :root {
      --gold: #D4A017;
      --gold-light: #F5C842;
      --gold-dark: #A07810;
      --crimson: #9B0000;
      --crimson-light: #C0392B;
      --bg-deep: #0A0400;
      --bg-dark: #100800;
      --bg-card: #1A0E02;
      --bg-card2: #140B01;
      --text-main: #F0E6CC;
      --text-muted: #9A8060;
      --border: #3A2A0A;
      --accent: #FF6B00;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: 'Barlow', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: .6;
    }

    /* ── TOPBAR ── */
    .topbar {
      background: linear-gradient(90deg, #0D0600, #1C0E00, #0D0600);
      border-bottom: 1px solid var(--border);
      padding: 8px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: .04em;
    }

    .topbar span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .topbar .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22C55E;
      box-shadow: 0 0 8px #22C55E;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .4
      }
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 4, 0, .96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(212, 160, 23, .18);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .logo {
      font-family: 'Cinzel Decorative', serif;
      font-size: 22px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: .03em;
      text-shadow: none;
      filter: drop-shadow(0 0 10px rgba(212, 160, 23, .4));
    }

    .logo span {
      color: var(--accent);
      -webkit-text-fill-color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform .2s;
    }

    .nav-links a:hover {
      color: var(--gold-light);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .btn-nav {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 10px 28px;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #0A0400;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: filter .2s, transform .15s;
      text-decoration: none;
    }

    .btn-nav:hover {
      filter: brightness(1.15);
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 80px 5% 60px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(155, 0, 0, .18) 0%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(212, 160, 23, .08) 0%, transparent 55%),
        linear-gradient(160deg, #0F0600 0%, #140800 40%, #0A0400 100%);
    }

    /* Decorative grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      opacity: .06;
      background-image:
        linear-gradient(var(--gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 160, 23, .1);
      border: 1px solid rgba(212, 160, 23, .3);
      padding: 6px 16px;
      border-radius: 2px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .hero h1 {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(36px, 6vw, 72px);
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero h1 .line1 {
      background: linear-gradient(135deg, #fff 30%, var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero h1 .line2 {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 17px;
      line-height: 1.7;
      color: rgba(240, 230, 204, .7);
      max-width: 500px;
      margin-bottom: 36px;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 16px 40px;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
      color: #0A0400;
      position: relative;
      overflow: hidden;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: filter .25s, transform .2s;
      box-shadow: 0 8px 32px rgba(212, 160, 23, .4);
      text-decoration: none;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 40%;
      height: 200%;
      background: rgba(255, 255, 255, .25);
      transform: skewX(-20deg);
      transition: left .5s;
    }

    .btn-primary:hover::after {
      left: 120%;
    }

    .btn-primary:hover {
      filter: brightness(1.1);
      transform: translateY(-2px);
    }

    .games-grid a {
      text-decoration: none;
    }

    .btn-secondary {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 15px 36px;
      background: transparent;
      border: 1px solid rgba(212, 160, 23, .4);
      color: var(--gold);
      cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: background .2s, border-color .2s, transform .2s;
      text-decoration: none;
    }

    .btn-secondary:hover {
      background: rgba(212, 160, 23, .1);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    /* Hero image placeholder */
    .hero-visual {
      position: absolute;
      right: 5%;
      /* top: 50%; */
      transform: translateY(-50%);
      width: clamp(280px, 40vw, 560px);
      aspect-ratio: 9/10;
      z-index: 2;
    }

    .img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1A0E02 0%, #221200 60%, #1A0A00 100%);
      border: 1px solid rgba(212, 160, 23, .2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--text-muted);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }

    .img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(212, 160, 23, .07), transparent);
    }

    .img-placeholder svg {
      width: 48px;
      height: 48px;
      opacity: .4;
    }

    .img-placeholder span {
      opacity: .5;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: linear-gradient(90deg, #0F0800, #1C1000, #0F0800);
      border-top: 1px solid rgba(212, 160, 23, .15);
      border-bottom: 1px solid rgba(212, 160, 23, .15);
      padding: 28px 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
    }

    .stat {
      text-align: center;
      padding: 8px 20px;
      border-right: 1px solid rgba(212, 160, 23, .12);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-number {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(22px, 3vw, 36px);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 4px;
    }

    .stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── SECTION COMMONS ── */
    section {
      padding: 90px 5%;
    }

    .section-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }

    .section-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(24px, 4vw, 46px);
      line-height: 1.15;
      margin-bottom: 18px;
      background: linear-gradient(135deg, #fff 40%, var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-sub {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(240, 230, 204, .6);
      max-width: 560px;
      margin-bottom: 50px;
    }

    .divider {
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 20px 0 40px;
    }

    /* ── GAMES GRID ── */
    .games-section {
      background: var(--bg-dark);
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }

    .game-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
    }

    .game-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .6), 0 0 24px rgba(212, 160, 23, .12);
      border-color: rgba(212, 160, 23, .35);
    }

    .game-thumb {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #1A0E02, #221200);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--text-muted);
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-family: 'Barlow Condensed', sans-serif;
      position: relative;
      overflow: hidden;
    }

    .game-thumb::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(transparent, rgba(10, 4, 0, .8));
    }

    .game-thumb-icon {
      font-size: 38px;
    }

    .game-info {
      padding: 14px 16px;
    }

    .game-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .04em;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .game-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
    }

    .game-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 3px 8px;
      background: var(--crimson);
      color: #fff;
      z-index: 2;
    }

    .game-badge.hot {
      background: var(--accent);
    }

    .game-badge.new {
      background: #16A34A;
    }

    /* ── FEATURES ── */
    .features-section {
      background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(155, 0, 0, .1), transparent),
        var(--bg-deep);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      border: 1px solid var(--border);
    }

    .feature {
      padding: 40px 32px;
      background: var(--bg-card2);
      border-right: 1px solid var(--border);
      transition: background .25s;
    }

    .feature:last-child {
      border-right: none;
    }

    .feature:hover {
      background: var(--bg-card);
    }

    .feature-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
    }

    .feature h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 12px;
    }

    .feature p {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(240, 230, 204, .6);
    }

    /* ── PROMO BANNER ── */
    .promo {
      background: linear-gradient(135deg, #1A0800 0%, #2A1000 50%, #1A0800 100%);
      border: 1px solid rgba(212, 160, 23, .25);
      margin: 0 5%;
      padding: 60px 5%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .promo::before {
      content: '🎰';
      position: absolute;
      right: -20px;
      top: -30px;
      font-size: 180px;
      opacity: .06;
      transform: rotate(-15deg);
    }

    .promo-text h2 {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(22px, 4vw, 42px);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }

    .promo-text p {
      font-size: 16px;
      color: rgba(240, 230, 204, .65);
      max-width: 480px;
      line-height: 1.6;
    }

    /* ── SEO CONTENT ── */
    .seo-section {
      background: var(--bg-dark);
    }

    .seo-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
    }

    .seo-body h2 {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(18px, 2.5vw, 28px);
      color: var(--gold-light);
      margin: 36px 0 14px;
    }

    .seo-body h2:first-child {
      margin-top: 0;
    }

    .seo-body p {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(240, 230, 204, .65);
      margin-bottom: 16px;
    }

    .seo-body ul {
      list-style: none;
      margin-bottom: 20px;
    }

    .seo-body ul li {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(240, 230, 204, .65);
      padding: 6px 0 6px 22px;
      position: relative;
      border-bottom: 1px solid rgba(212, 160, 23, .07);
    }

    .seo-body ul li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 8px;
      top: 11px;
    }

    .seo-sidebar {
      position: relative;
    }

    .sidebar-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 28px;
      margin-bottom: 20px;
    }

    .sidebar-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .sidebar-card ul {
      list-style: none;
    }

    .sidebar-card ul li {
      font-size: 14px;
      color: rgba(240, 230, 204, .7);
      padding: 8px 0;
      border-bottom: 1px solid rgba(212, 160, 23, .07);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sidebar-card ul li:last-child {
      border-bottom: none;
    }

    .tag-gold {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      padding: 2px 8px;
      background: rgba(212, 160, 23, .15);
      color: var(--gold);
      border: 1px solid rgba(212, 160, 23, .3);
    }

    .sidebar-img-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--text-muted);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .sidebar-img-placeholder svg {
      width: 32px;
      opacity: .4;
    }
    
    @media screen and (max-width: 699px) {
        .jk8-logo {
          max-width: 36%;
        }
    }
    
    .jk8-logo {
          max-width: 15%;
        }

    /* ── PAYMENT ── */
    .payment-section {
      background: var(--bg-deep);
    }

    .payment-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    .payment-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 16px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .08em;
      color: var(--text-muted);
      transition: border-color .2s, color .2s;
    }

    .payment-item:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── FOOTER ── */
    footer {
      background: #070300;
      border-top: 1px solid var(--border);
      padding: 60px 5% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-brand .logo {
      font-size: 18px;
      display: block;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--gold-light);
    }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 12px;
      color: rgba(154, 128, 96, .5);
    }

    .age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid rgba(154, 128, 96, .4);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: -.02em;
      color: rgba(154, 128, 96, .6);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content>* {
      animation: fadeUp .7s ease both;
    }

    .hero-content>*:nth-child(1) {
      animation-delay: .1s;
    }

    .hero-content>*:nth-child(2) {
      animation-delay: .25s;
    }

    .hero-content>*:nth-child(3) {
      animation-delay: .4s;
    }

    .hero-content>*:nth-child(4) {
      animation-delay: .55s;
    }

    .hero-visual {
      animation: fadeUp .8s ease .3s both;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-visual {
        display: none;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .feature {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .seo-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .nav-links {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr;
      }
    }