
    /* ── VARIABLES ────────────────────────────────── */
    :root {
      --gold: #f5c518;
      --gold2: #e8a200;
      --crimson: #c0392b;
      --red: #e74c3c;
      --dark: #0a0a12;
      --dark2: #10101e;
      --dark3: #16162a;
      --card-bg: rgba(255, 255, 255, 0.04);
      --glass: rgba(255, 255, 255, 0.07);
      --border: rgba(245, 197, 24, 0.25);
      --text: #f0e6cc;
      --muted: rgba(240, 230, 204, 0.55);
      --grad-main: linear-gradient(135deg, #c0392b 0%, #8e1c10 40%, #f5c518 100%);
      --grad-btn: linear-gradient(135deg, #f5c518, #e8a200, #c0392b);
      --grad-card: linear-gradient(145deg, rgba(245, 197, 24, .12), rgba(192, 57, 43, .10));
      --grad-hero: linear-gradient(160deg, #0a0a12 0%, #1a0a05 35%, #200b0b 65%, #0a0a12 100%);
      --shadow-glow: 0 0 40px rgba(245, 197, 24, .20);
      --radius: 16px;
      --radius-lg: 24px;
      --font-head: 'Orbitron', sans-serif;
      --font-body: 'Rajdhani', sans-serif;
      --font-para: 'Poppins', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
    }

    /* ── SCROLLBAR ───────────────────────────────── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark2);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--grad-btn);
      border-radius: 3px;
    }

    /* ── UTILITY ─────────────────────────────────── */
    .container {
      width: min(1200px, 92%);
      margin-inline: auto;
    }

    .gradient-text {
      background: var(--grad-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      background: var(--grad-btn);
      color: #0a0a12;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 4px 24px rgba(245, 197, 24, .35);
      transition: transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .25), transparent);
      opacity: 0;
      transition: opacity .25s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 36px rgba(245, 197, 24, .5);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .section-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 18px;
      margin-bottom: 14px;
      background: rgba(245, 197, 24, .06);
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .divider {
      width: 60px;
      height: 3px;
      margin: 0 auto 40px;
      background: var(--grad-btn);
      border-radius: 2px;
    }

    /* ── PARTICLES BG ────────────────────────────── */
    #particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .p-dot {
      position: absolute;
      border-radius: 50%;
      animation: float-dot linear infinite;
      opacity: 0;
    }

    @keyframes float-dot {
      0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
      }

      10% {
        opacity: .6;
      }

      90% {
        opacity: .4;
      }

      100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
      }
    }

    /* ── HEADER ──────────────────────────────────── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 14px 0;
      background: rgba(10, 10, 18, .82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: padding .3s, background .3s;
    }

    header.scrolled {
      padding: 10px 0;
      background: rgba(10, 10, 18, .97);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo img {
      height: 46px;
      width: auto;
      object-fit: contain;
    }

    .logo-text {
      font-family: var(--font-head);
      font-size: 1.15rem;
      font-weight: 900;
      background: var(--grad-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    nav a {
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .5px;
      padding: 8px 14px;
      border-radius: 8px;
      color: var(--text);
      transition: color .2s, background .2s;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      right: 50%;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: left .2s, right .2s;
    }

    nav a:hover {
      color: var(--gold);
    }

    nav a:hover::after {
      left: 14px;
      right: 14px;
    }

    .header-cta .btn-primary {
      padding: 10px 22px;
      font-size: .85rem;
    }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: rgba(10, 10, 18, .98);
      backdrop-filter: blur(20px);
      padding: 100px 40px 40px;
      transform: translateX(-100%);
      transition: transform .35s ease;
    }

    .mobile-nav.open {
      transform: translateX(0);
    }

    .mobile-nav a {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }

    .mobile-nav a:hover {
      color: var(--gold);
    }

    .mobile-nav .btn-primary {
      margin-top: 24px;
      justify-content: center;
    }

    /* ── HERO ────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--grad-hero);
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192, 57, 43, .35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 197, 24, .15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(192, 57, 43, .15) 0%, transparent 60%);
    }

    /* card suit decorations */
    .hero-bg::after {
      content: '♠ ♥ ♦ ♣';
      position: absolute;
      bottom: 60px;
      right: 8%;
      font-size: clamp(4rem, 10vw, 9rem);
      color: rgba(245, 197, 24, .06);
      letter-spacing: .3em;
      font-family: serif;
      user-select: none;
    }

    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(245, 197, 24, .12);
      animation: ring-pulse 4s ease-in-out infinite;
    }

    .hero-ring:nth-child(1) {
      width: 400px;
      height: 400px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .hero-ring:nth-child(2) {
      width: 650px;
      height: 650px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation-delay: .8s;
      border-color: rgba(192, 57, 43, .10);
    }

    .hero-ring:nth-child(3) {
      width: 900px;
      height: 900px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation-delay: 1.6s;
      border-color: rgba(245, 197, 24, .06);
    }

    @keyframes ring-pulse {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7;
      }

      50% {
        transform: translate(-50%, -50%) scale(1.06);
        opacity: .3;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 40px 20px;
      animation: fade-up .9s ease both;
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 197, 24, .10);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 8px 20px;
      margin-bottom: 28px;
      font-family: var(--font-body);
      font-size: .85rem;
      letter-spacing: 1px;
      color: var(--gold);
      animation: fade-up .9s .2s ease both;
    }

    .hero-badge i {
      color: var(--crimson);
    }

    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.8rem, 10vw, 7rem);
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, #fff 0%, #f5c518 40%, #e74c3c 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
      animation: fade-up .9s .35s ease both;
      text-shadow: none;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 36px;
      font-weight: 300;
      animation: fade-up .9s .5s ease both;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      animation: fade-up .9s .65s ease both;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 30px;
      border-radius: 50px;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: rgba(255, 255, 255, .05);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      transition: border-color .25s, background .25s, transform .25s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(245, 197, 24, .10);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin-top: 56px;
      animation: fade-up .9s .8s ease both;
    }

    .stat {
      text-align: center;
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px 24px;
      backdrop-filter: blur(12px);
      min-width: 120px;
    }

    .stat-num {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 900;
      background: var(--grad-btn);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }

    .stat-label {
      font-size: .75rem;
      color: var(--muted);
      letter-spacing: 1px;
      font-family: var(--font-body);
    }

    /* ── WHAT IS ─────────────────────────────────── */
    .what-is {
      position: relative;
      padding: 100px 0;
      background: var(--dark2);
      z-index: 1;
    }

    .what-is::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .what-is-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .what-is-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .card-stack {
      position: relative;
      width: 280px;
      height: 360px;
    }

    .card-item {
      position: absolute;
      width: 200px;
      height: 280px;
      background: var(--grad-card);
      border: 1px solid var(--border);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: var(--gold);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
      transition: transform .4s;
    }

    .card-item:nth-child(1) {
      top: 0;
      left: 60px;
      transform: rotate(-12deg);
    }

    .card-item:nth-child(2) {
      top: 20px;
      left: 30px;
      transform: rotate(-5deg);
    }

    .card-item:nth-child(3) {
      top: 35px;
      left: 0;
      transform: rotate(3deg);
    }

    .card-stack:hover .card-item:nth-child(1) {
      transform: rotate(-18deg) translateY(-10px);
    }

    .card-stack:hover .card-item:nth-child(2) {
      transform: rotate(-6deg) translateY(-4px);
    }

    .card-stack:hover .card-item:nth-child(3) {
      transform: rotate(6deg);
    }

    .what-is-text .section-label {
      margin-bottom: 10px;
    }

    .what-is-text p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 24px;
    }

    .feature-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(245, 197, 24, .08);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 7px 16px;
      font-family: var(--font-body);
      font-size: .85rem;
      color: var(--gold);
      letter-spacing: .5px;
    }

    .pill i {
      font-size: .75rem;
    }

    /* ── GAMES ───────────────────────────────────── */
    .games {
      padding: 100px 0;
      background: var(--dark3);
      position: relative;
    }

    .games-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .game-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      cursor: default;
    }

    .game-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad-card);
      opacity: 0;
      transition: opacity .3s;
    }

    .game-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
      box-shadow: var(--shadow-glow);
    }

    .game-card:hover::before {
      opacity: 1;
    }

    .game-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
      background: var(--grad-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .game-name {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text);
      letter-spacing: .5px;
      position: relative;
    }

    .game-tag {
      display: inline-block;
      margin-top: 8px;
      font-size: .7rem;
      color: var(--gold);
      background: rgba(245, 197, 24, .10);
      border-radius: 50px;
      padding: 2px 10px;
      font-family: var(--font-body);
      letter-spacing: .5px;
      position: relative;
    }

    /* ── FEATURES ────────────────────────────────── */
    .features {
      padding: 100px 0;
      background: var(--dark2);
      position: relative;
    }

    .features::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    }

    .features-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .feat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }

    .feat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--grad-btn);
    }

    .feat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-glow);
    }

    .feat-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--grad-card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .feat-title {
      font-family: var(--font-body);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      letter-spacing: .5px;
    }

    .feat-desc {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.75;
    }

    /* ── INSTALL ─────────────────────────────────── */
    .install {
      padding: 100px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .install::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(192, 57, 43, .15), transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .install-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .install-text .section-title {
      margin-bottom: 20px;
    }

    .install-text p {
      color: var(--muted);
      margin-bottom: 36px;
      font-size: 1rem;
      line-height: 1.85;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .step {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      transition: border-color .3s;
    }

    .step:hover {
      border-color: var(--gold);
    }

    .step-num {
      min-width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--grad-btn);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 900;
      color: #0a0a12;
      flex-shrink: 0;
    }

    .step-text strong {
      display: block;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: .3px;
    }

    .step-text span {
      color: var(--muted);
      font-size: .9rem;
    }

    .install-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-mockup {
      width: 240px;
      background: linear-gradient(145deg, #1e1e30, #12121f);
      border: 2px solid var(--border);
      border-radius: 40px;
      padding: 18px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .6), var(--shadow-glow);
      position: relative;
    }

    .phone-screen {
      background: var(--grad-card);
      border-radius: 28px;
      padding: 24px 16px;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
      border: 1px solid var(--border);
    }

    .phone-logo {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      object-fit: contain;
      background: #fff;
      padding: 6px;
    }

    .phone-title {
      font-family: var(--font-head);
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 900;
    }

    .phone-sub {
      font-size: .75rem;
      color: var(--muted);
    }

    .phone-btn {
      width: 100%;
      padding: 12px;
      border-radius: 50px;
      background: var(--grad-btn);
      color: #0a0a12;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 1px;
      text-align: center;
      margin-top: 8px;
      cursor: pointer;
    }

    .phone-notch {
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 6px;
      background: rgba(255, 255, 255, .15);
      border-radius: 3px;
    }

    /* ── FAQ ─────────────────────────────────────── */
    .faq {
      padding: 100px 0;
      background: var(--dark3);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .3s;
    }

    .faq-item.open {
      border-color: rgba(245, 197, 24, .5);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px;
      cursor: pointer;
      gap: 12px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: .3px;
      color: var(--text);
    }

    .faq-q span {
      flex: 1;
    }

    .faq-q i {
      color: var(--gold);
      font-size: .85rem;
      flex-shrink: 0;
      transition: transform .3s;
    }

    .faq-item.open .faq-q i {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      padding: 0 24px;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.75;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 22px;
    }

    /* ── BLOG ────────────────────────────────────── */
    .blog {
      padding: 100px 0;
      background: var(--dark2);
    }

    .blog-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 22px;
    }

    /* card — vertical glass */
    .blog-card {
      background: linear-gradient(160deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform .35s, box-shadow .35s, border-color .35s;
    }

    .blog-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(245, 197, 24, .07) 0%, rgba(192, 57, 43, .05) 100%);
      opacity: 0;
      transition: opacity .35s;
      pointer-events: none;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 56px rgba(0, 0, 0, .45), 0 0 0 1px rgba(245, 197, 24, .35), var(--shadow-glow);
      border-color: rgba(245, 197, 24, .45);
    }

    .blog-card:hover::after {
      opacity: 1;
    }

    /* ── image zone ── */
    .blog-img-wrap {
      position: relative;
      width: 100%;
      height: 155px;
      background: linear-gradient(145deg, #13132200, #0e0e1a);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .blog-img-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 70% at 50% 40%, rgba(245, 197, 24, .12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(192, 57, 43, .10) 0%, transparent 60%);
    }

    .blog-img-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 48px;
      background: linear-gradient(to top, rgba(12, 12, 22, .9), transparent);
    }

    .blog-img {
      position: relative;
      z-index: 1;
      width: 100px;
      height: 100px;
      object-fit: contain;
      border-radius: 16px;
      filter: drop-shadow(0 4px 20px rgba(245, 197, 24, .30)) brightness(1.02);
      transition: filter .35s, transform .35s;
    }

    .blog-card:hover .blog-img {
      filter: drop-shadow(0 6px 28px rgba(245, 197, 24, .50)) brightness(1.08);
      transform: scale(1.07) translateY(-3px);
    }

    /* ── body ── */
    .blog-body {
      padding: 18px 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid rgba(245, 197, 24, .10);
    }

    .blog-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(245, 197, 24, .09);
      border: 1px solid rgba(245, 197, 24, .20);
      border-radius: 50px;
      padding: 4px 12px;
      width: fit-content;
      font-size: .72rem;
      color: var(--gold);
      font-family: var(--font-body);
      letter-spacing: .5px;
      font-weight: 600;
    }

    .blog-title {
      font-family: var(--font-body);
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: .3px;
      line-height: 1.3;
    }

    .blog-para {
      color: var(--muted);
      font-size: .83rem;
      line-height: 1.6;
      flex: 1;
    }

    .blog-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 11px 16px;
      border-radius: 50px;
      width: 100%;
      background: var(--grad-btn);
      color: #0a0a12;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .8px;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      margin-top: auto;
      box-shadow: 0 3px 14px rgba(245, 197, 24, .25);
      transition: transform .22s, box-shadow .22s;
    }

    .blog-btn:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 22px rgba(245, 197, 24, .42);
    }

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

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }

    .footer-brand .logo {
      margin-bottom: 16px;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: .95rem;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
    }

    .social-btn:hover {
      background: var(--grad-btn);
      color: #0a0a12;
      border-color: transparent;
    }

    .footer-col h4 {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      color: var(--muted);
      font-size: .9rem;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-col ul li a:hover {
      color: var(--gold);
    }

    .footer-col ul li a i {
      font-size: .65rem;
      color: var(--crimson);
    }

    .disclaimer {
      background: rgba(192, 57, 43, .06);
      border: 1px solid rgba(192, 57, 43, .25);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin: 40px 0;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .disclaimer-icon {
      font-size: 1.3rem;
      color: var(--crimson);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .disclaimer-text {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .disclaimer-text strong {
      color: var(--red);
      display: block;
      margin-bottom: 6px;
      font-family: var(--font-body);
      letter-spacing: .5px;
    }

    .age-banner {
      background: linear-gradient(135deg, rgba(192, 57, 43, .15), rgba(245, 197, 24, .08));
      border: 1px solid rgba(192, 57, 43, .3);
      border-radius: var(--radius);
      padding: 14px 20px;
      margin: 24px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: .5px;
    }

    .age-banner i {
      font-size: 1.3rem;
    }

    .copyright {
      background: rgba(0, 0, 0, .4);
      padding: 18px 0;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .copyright p {
      color: var(--muted);
      font-size: .82rem;
      font-family: var(--font-body);
      letter-spacing: .5px;
    }

    .copyright span {
      color: var(--gold);
    }

    /* ── REVEAL ANIMATIONS ───────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ── RESPONSIVE ──────────────────────────────── */

    /* ── TABLET LANDSCAPE 1024px ─ */
    @media(max-width:1024px) {
      .what-is-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .what-is-visual {
        order: -1;
      }

      .install-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .install-visual {
        display: none;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1/-1;
      }

      .what-is {
        padding: 70px 0;
      }

      .games {
        padding: 70px 0;
      }

      .features {
        padding: 70px 0;
      }

      .install {
        padding: 70px 0;
      }

      .faq {
        padding: 70px 0;
      }

      .blog {
        padding: 70px 0;
      }
    }

    /* ── TABLET PORTRAIT 768px ─ */
    @media(max-width:768px) {

      nav,
      .header-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-nav {
        display: flex;
      }

      /* hero */
      .hero {
        padding-top: 70px;
      }

      .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
      }

      .hero-sub {
        font-size: .95rem;
        margin-bottom: 28px;
      }

      .hero-badge {
        font-size: .78rem;
        padding: 6px 16px;
        margin-bottom: 20px;
      }

      .hero-stats {
        gap: 12px;
        margin-top: 40px;
      }

      .stat {
        padding: 10px 14px;
        min-width: 90px;
      }

      .stat-num {
        font-size: 1.2rem;
      }

      .stat-label {
        font-size: .68rem;
      }

      /* sections spacing */
      .what-is,
      .games,
      .features,
      .install,
      .faq,
      .blog {
        padding: 60px 0;
      }

      .games-header,
      .features-header,
      .faq-header,
      .blog-header {
        margin-bottom: 40px;
      }

      .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
      }

      /* games */
      .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 14px;
      }

      .game-card {
        padding: 20px 14px;
      }

      .game-icon {
        font-size: 1.9rem;
        margin-bottom: 10px;
      }

      .game-name {
        font-size: .92rem;
      }

      /* features */
      .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
      }

      .feat-card {
        padding: 26px 20px;
      }

      .feat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 14px;
      }

      /* steps */
      .steps {
        gap: 14px;
      }

      .step {
        padding: 16px;
      }

      .step-num {
        min-width: 36px;
        height: 36px;
        font-size: .85rem;
      }

      /* blog */
      .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
      }

      .blog-img-wrap {
        height: 130px;
      }

      .blog-img {
        width: 84px;
        height: 84px;
      }

      .blog-body {
        padding: 14px 14px 16px;
        gap: 8px;
      }

      .blog-title {
        font-size: .97rem;
      }

      .blog-para {
        font-size: .78rem;
      }

      .blog-badge {
        font-size: .67rem;
        padding: 3px 10px;
      }

      .blog-btn {
        padding: 9px 14px;
        font-size: .78rem;
      }

      /* faq */
      .faq-q {
        padding: 18px 18px;
        font-size: .95rem;
      }

      .faq-a {
        font-size: .88rem;
      }

      /* footer */
      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
      }

      .footer-brand {
        grid-column: auto;
      }

      .card-stack {
        width: 200px;
        height: 260px;
      }

      .card-item {
        width: 150px;
        height: 210px;
      }

      footer {
        padding: 44px 0 0;
      }
    }

    /* ── MOBILE 480px ─ */
    @media(max-width:480px) {

      /* header */
      header {
        padding: 10px 0;
      }

      .logo img {
        height: 36px;
      }

      .logo-text {
        font-size: .9rem;
      }

      /* hero */
      .hero {
        padding-top: 64px;
        min-height: auto;
      }

      .hero-content {
        padding: 32px 12px;
      }

      .hero-title {
        font-size: clamp(1.8rem, 11vw, 3rem);
      }

      .hero-sub {
        font-size: .88rem;
        margin-bottom: 22px;
        padding: 0 8px;
      }

      .hero-badge {
        font-size: .72rem;
        padding: 5px 14px;
        gap: 6px;
        margin-bottom: 16px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 12px 20px;
        font-size: .88rem !important;
      }

      .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
      }

      .stat {
        flex: 1;
        min-width: calc(50% - 10px);
        padding: 10px 10px;
      }

      .stat-num {
        font-size: 1.1rem;
      }

      .stat-label {
        font-size: .62rem;
      }

      /* section common */
      .what-is,
      .games,
      .features,
      .install,
      .faq,
      .blog {
        padding: 48px 0;
      }

      .section-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin-bottom: 12px;
      }

      .section-label {
        font-size: .68rem;
        padding: 5px 14px;
        margin-bottom: 10px;
      }

      .divider {
        margin-bottom: 24px;
      }

      .games-header,
      .features-header,
      .faq-header,
      .blog-header {
        margin-bottom: 28px;
      }

      /* what is */
      .what-is-inner {
        gap: 24px;
      }

      .what-is-text p {
        font-size: .88rem;
        margin-bottom: 16px;
      }

      .feature-pills {
        gap: 7px;
      }

      .pill {
        font-size: .75rem;
        padding: 5px 12px;
      }

      .card-stack {
        width: 160px;
        height: 200px;
      }

      .card-item {
        width: 120px;
        height: 165px;
        font-size: 3.5rem;
        border-radius: 12px;
      }

      /* games */
      .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }

      .game-card {
        padding: 14px 8px;
      }

      .game-icon {
        font-size: 1.5rem;
        margin-bottom: 7px;
      }

      .game-name {
        font-size: .78rem;
        letter-spacing: 0;
      }

      .game-tag {
        font-size: .6rem;
        padding: 2px 7px;
        margin-top: 4px;
      }

      /* features */
      .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .feat-card {
        padding: 22px 18px;
      }

      .feat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        border-radius: 10px;
        margin-bottom: 12px;
      }

      .feat-title {
        font-size: 1rem;
        margin-bottom: 6px;
      }

      .feat-desc {
        font-size: .83rem;
      }

      /* install */
      .install-inner {
        gap: 28px;
      }

      .install-text p {
        font-size: .88rem;
        margin-bottom: 20px;
      }

      .steps {
        gap: 10px;
      }

      .step {
        padding: 13px;
        gap: 12px;
      }

      .step-num {
        min-width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: .78rem;
      }

      .step-text strong {
        font-size: .9rem;
      }

      .step-text span {
        font-size: .8rem;
      }

      /* faq */
      .faq-grid {
        gap: 10px;
      }

      .faq-q {
        padding: 14px 16px;
        font-size: .88rem;
        gap: 10px;
      }

      .faq-a {
        font-size: .82rem;
        padding: 0 16px;
      }

      .faq-item.open .faq-a {
        padding: 0 16px 16px;
      }

      /* blog */
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .blog-img-wrap {
        height: 110px;
      }

      .blog-img {
        width: 72px;
        height: 72px;
      }

      .blog-body {
        padding: 12px 12px 14px;
        gap: 7px;
      }

      .blog-title {
        font-size: .88rem;
      }

      .blog-para {
        font-size: .75rem;
      }

      .blog-badge {
        font-size: .63rem;
        padding: 3px 9px;
      }

      .blog-btn {
        padding: 9px 12px;
        font-size: .75rem;
      }

      /* footer */
      footer {
        padding: 36px 0 0;
      }

      .footer-top {
        gap: 24px;
        padding-bottom: 24px;
      }

      .footer-brand p {
        font-size: .82rem;
      }

      .footer-col h4 {
        font-size: .88rem;
        margin-bottom: 14px;
      }

      .footer-col ul {
        gap: 8px;
      }

      .footer-col ul li a {
        font-size: .82rem;
      }

      .social-btn {
        width: 36px;
        height: 36px;
        font-size: .85rem;
      }

      .age-banner {
        padding: 12px 16px;
        font-size: .82rem;
        gap: 10px;
      }

      .age-banner i {
        font-size: 1.1rem;
      }

      .disclaimer {
        padding: 16px;
        gap: 10px;
      }

      .disclaimer-text {
        font-size: .76rem;
      }

      .copyright p {
        font-size: .74rem;
      }

      .disclaimer {
        flex-direction: column;
      }
    }

    /* ── SMALL MOBILE 360px ─ */
    @media(max-width:380px) {
      .hero-title {
        font-size: clamp(1.6rem, 10vw, 2.4rem);
      }

      .hero-sub {
        font-size: .82rem;
      }

      .btn-primary,
      .btn-outline {
        font-size: .82rem;
        padding: 11px 16px;
      }

      .stat {
        padding: 8px 6px;
      }

      .stat-num {
        font-size: 1rem;
      }

      .stat-label {
        font-size: .58rem;
      }

      .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
      }

      .game-card {
        padding: 14px 10px;
      }

      .game-icon {
        font-size: 1.4rem;
      }

      .game-name {
        font-size: .8rem;
      }

      .section-title {
        font-size: clamp(1.1rem, 6vw, 1.4rem);
      }

      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
      }

      .blog-img-wrap {
        height: 96px;
      }

      .blog-img {
        width: 62px;
        height: 62px;
      }

      .blog-body {
        padding: 10px 10px 12px;
        gap: 6px;
      }

      .blog-title {
        font-size: .8rem;
      }

      .blog-para {
        font-size: .68rem;
      }

      .blog-btn {
        padding: 7px 10px;
        font-size: .68rem;
      }

      .feat-card {
        padding: 18px 14px;
      }

      .faq-q {
        font-size: .82rem;
        padding: 12px 14px;
      }

      .logo-text {
        display: none;
      }
    }
  