  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --pink: #FF2D7A; --cyan: #00F0FF; --yellow: #FFE033;
    --purple: #8B2FFF; --dark: #0D0B1A; --dark2: #13102B;
    --card-bg: #1A1635; --text: #F0EEFF; --muted: #9B91C8;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; padding: 0 2.5rem;
    background: rgba(13,11,26,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,240,255,0.12);
    overflow: visible;
  }
  .nav-logo {
    font-family: 'Righteous', sans-serif; font-size: 1.5rem;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 0rem;
  }
  .nav-logo-img {
    width: 128px; height: 128px; object-fit: contain; flex-shrink: 0;
  }
  .nav-right { display: flex; align-items: center; gap: 2rem; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 0.9rem;
    font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--cyan); }
  .lang-switch {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px; overflow: hidden;
  }
  .lang-btn {
    padding: 0.3rem 0.75rem; cursor: pointer; color: var(--muted);
    background: transparent; border: none; font-family: 'Nunito', sans-serif;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; transition: background 0.2s, color 0.2s;
  }
  .lang-btn.active { background: rgba(0,240,255,0.15); color: var(--cyan); }
  .lang-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

  #hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 6rem 2rem 4rem; position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(139,47,255,0.25) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0,240,255,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 35% at 50% 10%, rgba(255,45,122,0.15) 0%, transparent 70%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; margin-bottom: 1.5rem;
  }
  .hero-logo {
    width: 300px; object-fit: contain;
  }
  .pill {
    display: inline-block; background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3);
    color: var(--cyan); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 99px; margin-bottom: 0;
  }
  h1 { font-family: 'Righteous', sans-serif; font-size: clamp(3rem, 10vw, 7rem); line-height: 1; margin-bottom: 0.3em; }
  h1 .line1 { display: block; color: #fff; }
  h1 .line2 { display: block; background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--muted); max-width: 540px; margin: 1.5rem auto 2.5rem; line-height: 1.7; }
  .cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 99px;
    font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 800; text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; border: none;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; box-shadow: 0 4px 24px rgba(255,45,122,0.35); }
  .btn-primary:hover { box-shadow: 0 8px 32px rgba(255,45,122,0.5); }
  .btn-secondary { background: transparent; color: var(--cyan); border: 2px solid rgba(0,240,255,0.4); }
  .btn-secondary:hover { background: rgba(0,240,255,0.08); }
  .scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 1;
  }
  .scroll-arrow {
    width: 20px; height: 20px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: rotate(45deg); animation: bounce 1.5s infinite;
  }
  @keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

  section { padding: 6rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-tag { display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
  .tag-pink { color: var(--pink); } .tag-cyan { color: var(--cyan); } .tag-yellow { color: var(--yellow); }
  .section-title { font-family: 'Righteous', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 1rem; color: #fff; }
  .section-desc { color: var(--muted); max-width: 560px; line-height: 1.7; font-size: 1rem; }

  #games { background: var(--dark2); }
  .games-header { margin-bottom: 3rem; }
  .games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
  .game-card { background: var(--card-bg); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: transform 0.2s, box-shadow 0.2s; position: relative; }
  .game-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
  .game-thumb { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
  .thumb-1 { background: linear-gradient(135deg, #1a0533, #5c0f8b); }
  .thumb-2 { background: linear-gradient(135deg, #001e3c, #0a4a8a); }
  .thumb-3 { background: linear-gradient(135deg, #1a1000, #7a3a00); }
  .thumb-glow { position: absolute; inset: 0; opacity: 0.4; }
  .glow-1 { background: radial-gradient(circle at 40% 50%, rgba(139,47,255,0.8), transparent 60%); }
  .glow-2 { background: radial-gradient(circle at 60% 40%, rgba(0,240,255,0.8), transparent 60%); }
  .glow-3 { background: radial-gradient(circle at 50% 60%, rgba(255,142,0,0.8), transparent 60%); }
  .thumb-icon { position: relative; z-index: 1; font-size: 4rem; }
  .cs-badge { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2; background: rgba(255,224,51,0.15); border: 1px solid rgba(255,224,51,0.5); color: var(--yellow); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 99px; }
  .game-body { padding: 1.25rem; }
  .game-title { font-family: 'Righteous', sans-serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; }
  .game-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
  .game-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .tag-chip { font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 99px; letter-spacing: 0.05em; }
  .chip-purple { background: rgba(139,47,255,0.2); color: #c084fc; }
  .chip-cyan { background: rgba(0,240,255,0.12); color: var(--cyan); }
  .chip-pink { background: rgba(255,45,122,0.15); color: #ff6ba8; }
  .chip-yellow { background: rgba(255,224,51,0.12); color: var(--yellow); }
  .chip-green { background: rgba(50,215,100,0.12); color: #4ade80; }

  #stats { background: var(--dark2); padding: 4rem 2rem; }
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
  .stat-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 1.75rem 1rem; }
  .stat-number { font-family: 'Righteous', sans-serif; font-size: 2.5rem; line-height: 1; margin-bottom: 0.4rem; }
  .num-pink { color: var(--pink); } .num-cyan { color: var(--cyan); } .num-yellow { color: var(--yellow); } .num-purple { color: #a855f7; }
  .stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 700; letter-spacing: 0.05em; }

  #about { position: relative; overflow: hidden; }
  .about-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 90% 50%, rgba(139,47,255,0.12) 0%, transparent 70%); }
  .about-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  @media (max-width: 700px) { .about-inner { grid-template-columns: 1fr; } }
  .values-list { display: flex; flex-direction: column; gap: 1.25rem; }
  .value-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 1.1rem 1.25rem; transition: border-color 0.2s; }
  .value-item:hover { border-color: rgba(0,240,255,0.2); }
  .value-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .vi-purple { background: rgba(139,47,255,0.2); } .vi-cyan { background: rgba(0,240,255,0.12); } .vi-pink { background: rgba(255,45,122,0.15); }
  .value-text h4 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
  .value-text p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

  #notify { text-align: center; }
  .notify-box { background: var(--card-bg); border: 1px solid rgba(0,240,255,0.15); border-radius: 24px; padding: 3.5rem 2rem; max-width: 580px; margin: 0 auto; position: relative; overflow: hidden; }
  .notify-glow { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 300px; height: 200px; background: radial-gradient(circle, rgba(0,240,255,0.15), transparent 70%); }
  .notify-box h2 { font-family: 'Righteous', sans-serif; font-size: 2rem; color: #fff; margin-bottom: 0.75rem; position: relative; z-index: 1; }
  .notify-box p { color: var(--muted); margin-bottom: 2rem; line-height: 1.6; position: relative; z-index: 1; }
  .notify-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .notify-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 99px; padding: 0.75rem 1.25rem; color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.9rem; outline: none; flex: 1; min-width: 220px; transition: border-color 0.2s; }
  .notify-input::placeholder { color: var(--muted); }
  .notify-input:focus { border-color: rgba(0,240,255,0.4); }

  footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-logo { font-family: 'Righteous', sans-serif; font-size: 1.1rem; background: linear-gradient(90deg, var(--cyan), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .footer-copy { color: var(--muted); font-size: 0.8rem; }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; font-weight: 700; transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.35rem; }
  .footer-links a:hover { color: var(--cyan); }

  .particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
  .particle { position: absolute; border-radius: 50%; animation: float linear infinite; }
  @keyframes float { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; } }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: transparent; border: none; cursor: pointer;
  padding: 6px; flex-shrink: 0; z-index: 110;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cyan); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cyan); }

@media (max-width: 860px) {
  nav { padding: 1rem 1.25rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    flex-direction: column; align-items: center; gap: 2rem;
    background: rgba(13,11,26,0.97); backdrop-filter: blur(16px);
    padding: 5.5rem 2rem 3rem; z-index: 99;
    border-bottom: 1px solid rgba(0,240,255,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 0.08em; }
  .lang-switch { flex-shrink: 0; }
}
