    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #0F172A; --bg2: #111827;
      --surface: #1E293B; --surface2: #162032;
      --violet: #8B5CF6; --violet-dim: #7C3AED;
      --violet-glow: rgba(139,92,246,0.15);
      --violet-glow2: rgba(139,92,246,0.07);
      --cyan: #22D3EE;
      --emerald: #10B981;
      --amber: #F59E0B;
      --white: #F8FAFC; --muted: #94A3B8;
      --border: rgba(139,92,246,0.18);
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg); color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px; line-height: 1.7; overflow-x: hidden;
    }
    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0; opacity: 0.4;
    }
    section { position: relative; z-index: 1; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.25rem 5%;
      background: rgba(15,23,42,0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 1.05rem; letter-spacing: 0.04em;
      color: var(--white); display: flex; align-items: center; gap: 0.5rem;
      text-decoration: none;
    }
    .nav-logo span { color: var(--violet); }
    .nav-right { display: flex; align-items: center; gap: 2rem; }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      font-family: 'DM Mono', monospace; font-size: 0.75rem;
      color: var(--muted); text-decoration: none;
      letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--violet); }
    .nav-platform {
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      color: var(--muted); text-decoration: none;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: 1px solid var(--border); padding: 0.35rem 0.8rem;
      border-radius: 6px; transition: all 0.2s;
    }
    .nav-platform:hover { color: var(--cyan); border-color: rgba(34,211,238,0.3); }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }
    .nav-mobile { display: none; flex-direction: column; background: rgba(15,23,42,0.97); border-top: 1px solid var(--border); padding: 1rem 5%; position: fixed; top: 62px; left: 0; right: 0; z-index: 99; }
    .nav-mobile a { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover { color: var(--violet); }
    .nav-mobile.open { display: flex; }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 10rem 5% 6rem; overflow: hidden;
    }
    .hero-glow {
      position: absolute; width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(139,92,246,0.11) 0%, transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      pointer-events: none; animation: pulse-glow 6s ease-in-out infinite;
    }
    @keyframes pulse-glow {
      0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--violet); background: var(--violet-glow2);
      border: 1px solid var(--border);
      padding: 0.4rem 1rem; border-radius: 999px;
      margin-bottom: 2rem; animation: fadeUp 0.6s ease both;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--violet); animation: blink 2s ease infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    h1 {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(2rem, 5vw, 4rem);
      line-height: 1.15; letter-spacing: -0.02em;
      margin-bottom: 1.5rem; animation: fadeUp 0.7s 0.1s ease both;
    }
    h1 .accent { color: var(--violet); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted);
      max-width: 520px; margin: 0 auto 2.8rem; font-weight: 300;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .btn-group {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.85rem 1.8rem; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
      font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary { background: var(--violet); color: #fff; border: none; }
    .btn-primary:hover { background: var(--violet-dim); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,92,246,0.4); }
    .btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
    .btn-secondary:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
    .hero-stat-bar {
      display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
      margin-top: 5rem; padding-top: 3rem;
      border-top: 1px solid var(--border);
      animation: fadeUp 0.7s 0.5s ease both;
    }
    .stat { text-align: center; }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--violet); }
    .stat-label { font-size: 0.75rem; color: var(--muted); font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* SECTION COMMON */
    .section-label {
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--violet); margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700; line-height: 1.2; margin-bottom: 1rem;
    }

    /* GAMES */
    #games {
      padding: 7rem 5%;
      background: var(--surface2);
      border-top: 1px solid var(--border);
    }
    .games-header { text-align: center; margin-bottom: 4rem; }
    .games-header p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

    .game-block {
      max-width: 1100px; margin: 0 auto 5rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
    }
    .game-block:last-child { margin-bottom: 0; }
    .game-block.reverse { direction: rtl; }
    .game-block.reverse > * { direction: ltr; }

    .game-info {}
    .game-tag {
      display: inline-block; font-size: 0.65rem; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.22rem 0.7rem;
      border-radius: 4px; margin-bottom: 1rem; font-weight: 500;
      background: rgba(139,92,246,0.12); color: var(--violet); border: 1px solid rgba(139,92,246,0.28);
    }
    .game-tag.amber {
      background: rgba(245,158,11,0.12); color: var(--amber); border: 1px solid rgba(245,158,11,0.28);
    }
    .game-name {
      font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800; margin-bottom: 0.5rem; line-height: 1.1;
    }
    .game-engine {
      font-family: 'DM Mono', monospace; font-size: 0.75rem;
      color: var(--muted); letter-spacing: 0.06em; margin-bottom: 1.2rem;
    }
    .game-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.75; }

    .feature-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
    .feature-item {
      display: flex; align-items: flex-start; gap: 0.7rem;
      font-size: 0.88rem; color: var(--muted);
    }
    .feature-check { color: var(--violet); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
    .feature-check.amber { color: var(--amber); }

    .store-badges { display: flex; gap: 0.7rem; flex-wrap: wrap; }
    .store-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      padding: 0.4rem 0.9rem; border-radius: 6px;
      border: 1px solid var(--border); color: var(--muted);
      letter-spacing: 0.06em; opacity: 0.7;
    }

    /* GAME VISUAL CARD */
    .game-visual {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
    }
    .game-visual::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--violet), transparent);
    }
    .game-visual.amber-card { border-color: rgba(245,158,11,0.22); }
    .game-visual.amber-card::before {
      background: linear-gradient(90deg, transparent, var(--amber), transparent);
    }

    .vis-header {
      display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem;
      padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .vis-icon { display: flex; align-items: center; justify-content: center; }
    .vis-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; }
    .vis-sub { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }

    .vis-row {
      display: flex; align-items: center; gap: 0.8rem;
      padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .vis-row:last-child { border-bottom: none; }
    .vis-label { font-size: 0.82rem; color: var(--muted); flex: 1; }
    .vis-val {
      font-family: 'DM Mono', monospace; font-size: 0.78rem;
      padding: 0.18rem 0.55rem; border-radius: 4px;
      background: var(--violet-glow2); border: 1px solid rgba(139,92,246,0.22);
      color: var(--violet); letter-spacing: 0.04em; white-space: nowrap;
    }
    .vis-val.amber {
      background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.22); color: var(--amber);
    }
    .vis-val.emerald {
      background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.22); color: var(--emerald);
    }

    .progress-bar {
      margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.05);
    }
    .progress-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
    .progress-label { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
    .progress-pct { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--violet); }
    .progress-pct.amber { color: var(--amber); }
    .bar-track { width: 100%; height: 5px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
    .bar-fill { height: 100%; border-radius: 4px; background: var(--violet); width: 40%; }
    .bar-fill.amber { background: var(--amber); width: 70%; }

    /* TIMELINE */
    #timeline {
      padding: 7rem 5%;
    }
    .timeline-inner { max-width: 800px; margin: 0 auto; }
    .timeline-header { text-align: center; margin-bottom: 3.5rem; }
    .timeline-header p { color: var(--muted); font-size: 1rem; margin-top: 0.5rem; }
    .tl-items { display: flex; flex-direction: column; }
    .tl-item {
      display: grid; grid-template-columns: 60px 1fr;
      gap: 1.5rem; padding: 1.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04); align-items: start;
    }
    .tl-item:last-child { border-bottom: none; }
    .tl-dot {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Mono', monospace; font-size: 0.85rem; flex-shrink: 0;
    }
    .tl-dot.done { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--emerald); }
    .tl-dot.active { background: var(--violet-glow); border: 1px solid rgba(139,92,246,0.35); color: var(--violet); }
    .tl-dot.next { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }
    .tl-game { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
    .tl-phase { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
    .tl-desc { font-size: 0.88rem; color: var(--muted); }

    /* CONTACT */
    #contact {
      padding: 6rem 5%;
      background: var(--surface2);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .contact-box {
      max-width: 520px; margin: 2rem auto 0;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 12px; padding: 2.5rem;
    }
    .contact-box p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
    .contact-email {
      display: inline-block;
      font-family: 'DM Mono', monospace; font-size: 0.95rem;
      color: var(--violet); text-decoration: none;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border); border-radius: 6px;
      transition: border-color 0.2s;
    }
    .contact-email:hover { border-color: var(--violet); }

    /* FOOTER */
    footer {
      padding: 2.5rem 5%; border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1;
    }
    .footer-logo {
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
      text-decoration: none; color: var(--white);
    }
    .footer-logo span { color: var(--violet); }
    .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
    .footer-links a {
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--violet); }
    .footer-copy { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); opacity: 0.5; }

    /* NOTIFY FORM */
    .notify-strip {
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
      background: var(--violet-glow2); border: 1px solid var(--border);
      border-radius: 10px; padding: 1rem 1.4rem; margin-top: 1.8rem;
      animation: fadeUp 0.7s 0.45s ease both; max-width: 500px;
    }
    .notify-strip p { font-size: 0.85rem; color: var(--muted); margin: 0; white-space: nowrap; }
    .notify-form { display: flex; gap: 0.5rem; flex: 1; min-width: 200px; }
    .notify-form input[type="email"] {
      flex: 1; background: var(--bg); border: 1px solid var(--border);
      border-radius: 6px; padding: 0.55rem 0.85rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--white);
      outline: none; transition: border-color 0.2s;
    }
    .notify-form input[type="email"]::placeholder { color: var(--muted); opacity: 0.55; }
    .notify-form input[type="email"]:focus { border-color: var(--violet); }
    .notify-form button {
      background: var(--violet); color: #fff; border: none; border-radius: 6px;
      padding: 0.55rem 1.1rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
      font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap;
    }
    .notify-form button:hover { background: var(--violet-dim); }

    /* SCROLL REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 900px) {
      .game-block { grid-template-columns: 1fr; gap: 2.5rem; }
      .game-block.reverse { direction: ltr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-right { gap: 1rem; }
      #hero { padding: 7rem 5% 4rem; }
      h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
      .hero-stat-bar { gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; }
      .stat-num { font-size: 1.3rem; }
      #games { padding: 4rem 5%; }
      #timeline { padding: 4rem 5%; }
      #contact { padding: 4rem 5%; }
      footer { flex-direction: column; text-align: center; align-items: center; }
      .footer-links { justify-content: center; gap: 1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; }
    }
    .footer-links .footer-platform { color: var(--cyan); }
  
/* Hint text under notify forms */
.notify-sub { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); opacity: 0.7; }

/* Skip-to-content — WCAG 2.4.1 Level A */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: #10B981;
  color: #0F172A;
  padding: 0.5rem 1.1rem;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #0F172A; outline-offset: 2px; }
