/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:      #3EBE3E;
  --green-dark: #2a9e2a;
  --night:      #0c0c18;
  --navy:       #13132a;
  --card:       #181830;
  --pink:       #FF3E6C;
  --off-white:  #efefef;
  --muted:      #8a8aa8;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
  background: var(--night);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

    /* ── SCANLINES ────────────────────────────────────── */
    .scanlines::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom,
        transparent 0px, transparent 3px,
        rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
      );
      pointer-events: none;
      z-index: 1;
    }

    /* ── NAV ──────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 64px;
      background: rgba(12,12,24,0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(62,190,62,0.13);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .nav-logo img {
      height: 34px;
      width: 34px;
      object-fit: contain;
      border-radius: 6px;
    }
    .nav-brand {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--green);
      letter-spacing: 0.06em;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--muted);
      transition: color 0.2s;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .nav-links a:hover { color: var(--off-white); }

    /* ── LANGUAGE TOGGLE ──────────────────────────────── */
    .lang-toggle {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(62,190,62,0.18);
      border-radius: 6px;
      padding: 0.2rem;
      gap: 0.1rem;
      flex-shrink: 0;
    }
    .lang-btn {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.3rem 0.65rem;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      background: transparent;
      color: var(--muted);
      transition: background 0.15s, color 0.15s;
    }
    .lang-btn.active { background: var(--green); color: #fff; }
    .lang-btn:hover:not(.active) { color: var(--off-white); }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 2rem 5rem;
      overflow: hidden;
      background: var(--night);
    }
    .hero-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(62,190,62,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62,190,62,0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      z-index: 0;
    }
    .hero-glow {
      position: absolute;
      top: 28%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(62,190,62,0.1) 0%, transparent 68%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }
    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--green);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
      opacity: 0.85;
      display: block;
    }
    .hero-title {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: 1.02;
      color: var(--off-white);
      margin-bottom: 1.4rem;
      letter-spacing: -0.02em;
    }
    .hero-title .accent { color: var(--green); }
    .hero-sub {
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto 2.8rem;
      line-height: 1.75;
    }
    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--green);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
    .btn-secondary {
      border: 2px solid rgba(62,190,62,0.35);
      color: var(--off-white);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

    /* ── SECTION BASE ─────────────────────────────────── */
    section { padding: 6rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--green);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
      display: block;
    }
    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--off-white);
      margin-bottom: 1rem;
      line-height: 1.08;
      letter-spacing: -0.01em;
    }
    .section-lead {
      font-size: 1rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.75;
    }

    /* ── GAMES SECTION ────────────────────────────────── */
    #games { background: var(--night); }
    .games-header { margin-bottom: 3rem; }
    .game-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--card);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,62,108,0.18);
      box-shadow: 0 0 80px rgba(255,62,108,0.07);
    }
    .game-card-visual {
      background: #14080e;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 440px;
      overflow: hidden;
    }
    .game-card-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .game-card-info {
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .game-badge {
      display: inline-block;
      background: rgba(255,62,108,0.12);
      border: 1px solid rgba(255,62,108,0.35);
      color: var(--pink);
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      padding: 0.3rem 0.85rem;
      border-radius: 4px;
      margin-bottom: 1.1rem;
      width: fit-content;
      text-transform: uppercase;
    }
    .game-title {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      line-height: 0.95;
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
    }
    .game-title .drift { color: var(--off-white); }
    .game-title .af    { color: var(--pink); }
    .game-desc {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .game-platforms {
      display: flex;
      gap: 0.65rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .platform-chip {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      padding: 0.3rem 0.75rem;
      border-radius: 4px;
      background: rgba(62,190,62,0.08);
      border: 1px solid rgba(62,190,62,0.22);
      color: var(--green);
      letter-spacing: 0.08em;
    }
    .btn-soon {
      display: inline-block;
      width: fit-content;
      background: rgba(62,190,62,0.1);
      border: 1px solid rgba(62,190,62,0.25);
      color: rgba(239,239,239,0.4);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 0.75rem 1.8rem;
      border-radius: 50px;
      cursor: default;
      letter-spacing: 0.02em;
    }

    /* ── ABOUT STRIP ──────────────────────────────────── */
    .about-strip {
      background: var(--navy);
      border-top: 1px solid rgba(62,190,62,0.09);
      border-bottom: 1px solid rgba(62,190,62,0.09);
      padding: 5.5rem 2rem;
      text-align: center;
    }
    .about-tagline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.9rem, 4.5vw, 3rem);
      color: var(--off-white);
      margin-bottom: 1.4rem;
      line-height: 1.12;
      letter-spacing: -0.01em;
    }
    .about-tagline .accent { color: var(--green); }
    .about-body {
      color: var(--muted);
      font-size: 1rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* ── SERVICES ─────────────────────────────────────── */
    #services { background: var(--night); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.25rem;
      margin-top: 3rem;
    }
    .service-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      padding: 2rem 1.75rem;
      transition: border-color 0.2s, transform 0.2s;
    }
    .service-card:hover { border-color: rgba(62,190,62,0.35); transform: translateY(-4px); }
    .service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
    .service-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--off-white);
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }
    .service-desc {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }
    .service-tag {
      display: inline-block;
      margin-top: 1.2rem;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      color: var(--green);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid rgba(62,190,62,0.28);
      padding: 0.2rem 0.6rem;
      border-radius: 3px;
    }

    /* ── CONTACT STRIP ────────────────────────────────── */
    .contact-strip {
      background: var(--navy);
      border-top: 1px solid rgba(62,190,62,0.09);
      padding: 5rem 2rem;
      text-align: center;
    }
    .contact-strip h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 2.2rem;
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }
    .contact-strip p { color: var(--muted); margin-bottom: 2rem; font-size: 0.98rem; }
    .contact-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .contact-email {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--green);
      border: 1.5px solid rgba(62,190,62,0.35);
      padding: 0.65rem 1.4rem;
      border-radius: 8px;
      transition: background 0.2s, border-color 0.2s;
    }
    .contact-email:hover { background: rgba(62,190,62,0.08); border-color: var(--green); }
    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--muted);
      border: 1.5px solid rgba(255,255,255,0.08);
      padding: 0.65rem 1.4rem;
      border-radius: 8px;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .social-link:hover { color: var(--off-white); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
    .social-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

    /* ── FOOTER ───────────────────────────────────────── */
    footer {
      background: var(--night);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 2.5rem 2.5rem;
    }
    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .footer-brand {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--green);
      letter-spacing: 0.06em;
      display: block;
      margin-bottom: 0.4rem;
    }
    .footer-enk {
      font-size: 0.75rem;
      color: rgba(138,138,168,0.6);
      line-height: 1.6;
      font-family: var(--font-mono);
    }
    .footer-nav { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; align-items: center; }
    .footer-nav a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; font-weight: 500; }
    .footer-nav a:hover { color: var(--green); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal { font-size: 0.75rem; color: rgba(138,138,168,0.55); }
    .footer-socials { display: flex; gap: 1rem; }
    .footer-social-icon {
      color: var(--muted);
      transition: color 0.2s;
      display: flex;
      align-items: center;
    }
    .footer-social-icon:hover { color: var(--off-white); }
    .footer-social-icon svg { width: 18px; height: 18px; fill: currentColor; }

    /* ── SCROLL REVEAL ────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ───────────────────────────────────── */
    @media (max-width: 768px) {
      .game-card { grid-template-columns: 1fr; }
      .game-card-visual { min-height: 260px; }
      .nav-links { display: none; }
      .footer-top { flex-direction: column; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    }