
  /* ===== VARIABLES ===== */
  :root {
    --bg: #f2f2f0;
    --surface: #ffffff;
    --dark: #1a1a1a;
    --dark-nav: #1e1e1e;
    --accent: #ff0092;
    --accentgrey: #4e4c4c;
    --accent2: #ff6b35;
    --accent3: #4ecdc4;
    --text: #2d2d2d;
    --muted: #888;
    --card-bg: #f8f8f6;
    --radius: 20px;
    --radius-lg: 32px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  :root { --nav-h: 80px; }
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 10000;
    display: flex; align-items: center;
    padding: 0 48px;
    background: rgba(242,242,240,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-logo-icon {
    width: 42px; height: 42px; background: var(--dark);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900; color: var(--accent);
    letter-spacing: -1px; position: relative; overflow: hidden;
  }
  .nav-logo-icon::after {
    content: ''; position: absolute;
    width: 16px; height: 16px;
    background: var(--accent); border-radius: 50%;
    top: -4px; right: -4px; opacity: .4;
  }
  .nav-logo-text {
    font-family: 'Sora', sans-serif; font-weight: 800;
    color: var(--dark); font-size: 15px; line-height: 1.1;
  }
  .nav-logo-text em { color: var(--accent); font-style: normal; }

  /* Center pill menu */
  .nav-center {
    display: flex; gap: 6px; margin: 0 auto;
    background: #fff; border-radius: 50px;
    padding: 6px; border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .nav-center a {
    padding: 8px 20px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 13.5px;
    color: var(--muted); transition: all .2s;
  }
  .nav-center a:hover { color: var(--dark); }
  .nav-center a.active { background: var(--dark); color: #fff; }

  /* CTA button */
  .nav-cta {
    background: var(--accent); color: var(--dark);
    padding: 10px 24px; border-radius: 50px;
    font-weight: 800; font-size: 13.5px; text-decoration: none;
    transition: all .2s; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(245,166,35,0.35);
  }
  .nav-cta:hover { background: #e0900a; transform: translateY(-1px); }

  .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: all .3s; }

  /* Mobile menu */
  .mobile-dropdown {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 20px 24px; flex-direction: column; gap: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 9999;
  }
  .mobile-dropdown.open { display: flex; }
  .mobile-dropdown a {
    padding: 14px 20px; border-radius: 14px;
    font-weight: 700; font-size: 15px; color: var(--dark);
    text-decoration: none; transition: background .15s;
  }
  .mobile-dropdown a:hover { background: var(--bg); }

  /* ===== HERO ===== */
  #home {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 100px 24px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg-circles {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
  }
  .hero-bg-circles span {
    position: absolute; border-radius: 50%; opacity: .07;
    background: var(--accent);
    animation: float 8s ease-in-out infinite;
  }
  .hero-bg-circles span:nth-child(1) { width: 600px; height: 600px; top: -200px; left: -200px; animation-delay: 0s; }
  .hero-bg-circles span:nth-child(2) { width: 400px; height: 400px; bottom: -100px; right: -100px; animation-delay: -3s; background: var(--accent2); }
  .hero-bg-circles span:nth-child(3) { width: 200px; height: 200px; top: 40%; left: 60%; animation-delay: -5s; background: var(--accent3); }
  @keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

  .hero-label {
    font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--accentgrey);
    background: rgba(245,166,35,0.12); padding: 6px 18px; border-radius: 20px;
    margin-bottom: 24px; animation: fadeUp .7s .2s both;
  }
  .hero-title {
    font-family: 'Sora', sans-serif; font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800; line-height: 1.1; text-align: center; max-width: 800px;
    animation: fadeUp .7s .35s both;
  }
  .hero-title .highlight { color: var(--accent); }
  .hero-sub {
    font-size: 1.1rem; color: var(--muted); text-align: center;
    max-width: 540px; margin-top: 20px; line-height: 1.7;
    animation: fadeUp .7s .5s both;
  }
  @keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

  /* Slider */
  .hero-slider-wrap {
    width: 100%; max-width: 900px; margin-top: 56px; position: relative;
    animation: fadeUp .7s .65s both; z-index: 1;
  }
  .slider {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    aspect-ratio: 16/7;
  }
  .slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
    transform: scale(1.03);
    display: flex; align-items: center; justify-content: space-between;
    padding: 48px 60px;
  }
  .slide.active { opacity: 1; transform: scale(1); }
  .slide-0 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
  .slide-1 { background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
  .slide-2 { background: linear-gradient(135deg, #482046 0%, #0a002f 100%); }
  .slide-3 { background: linear-gradient(135deg, #280728 0%, #222d24 100%); }
  .slide-4 { background:linear-gradient(135deg, #482046 0%, #0a002f 100%); }
  .slide-5 { background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
  .slide-content { flex: 1; }
  .slide-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
  }
  .slide-title {
    font-family: 'Sora', sans-serif; font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2;
  }
  .slide-desc { font-size: .9rem; color: rgba(255,255,255,0.7); max-width: 320px; line-height: 1.6; margin-bottom: 24px; }
  .slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-store {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 18px; border-radius: 12px; text-decoration: none;
    font-weight: 700; font-size: .8rem; transition: all .2s; backdrop-filter: blur(8px);
  }
  .btn-store:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
  .btn-store svg { width: 18px; height: 18px; }
  .slide-visual {
    flex-shrink: 0; width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 100px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: bob 3s ease-in-out infinite;
  }
  @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  .slider-dots {
    display: flex; gap: 8px; justify-content: center; margin-top: 20px;
  }
  .slider-dot {
    width: 8px; height: 8px; border-radius: 4px; background: #ccc;
    border: none; cursor: pointer; transition: all .3s; padding: 0;
  }
  .slider-dot.active { width: 28px; background: var(--accent); }
  .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: #fff; border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px; backdrop-filter: blur(8px);
    transition: all .2s; z-index: 5;
  }
  .slider-arrow:hover { background: rgba(255,255,255,0.3); }
  .slider-arrow.left { left: 16px; }
  .slider-arrow.right { right: 16px; }

  /* Stats bar */
  .stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; max-width: 900px; width: 100%; margin-top: 40px;
    animation: fadeUp .7s .8s both; z-index: 1;
  }
  .stat-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 24px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform .2s, box-shadow .2s;
  }
  .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .stat-num {
    font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800;
    color: var(--dark);
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: .8rem; color: var(--muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

  /* ===== SECTIONS ===== */
  section { padding: 100px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 16px;
  }
  .section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

  /* ===== GAMES ===== */
  #games { background: var(--surface); }
  .games-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; margin-top: 56px;
  }
  .game-card {
    background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .game-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
  .game-card-img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px; position: relative; overflow: hidden;
  }
  .game-card-img-inner {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    transition: transform .4s;
  }
  .game-card:hover .game-card-img-inner { transform: scale(1.08); }
  .game-card-body { padding: 24px; }
  .game-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
  }
  .badge-action { background: rgba(255,107,53,0.12); color: var(--accent2); }
  .badge-puzzle { background: rgba(78,205,196,0.12); color: var(--accent3); }
  .badge-casual { background: rgba(245,166,35,0.12); color: var(--accent); }
  .badge-arcade { background: rgba(155,89,182,0.12); color: #9b59b6; }
  .badge-racing { background: rgba(52,152,219,0.12); color: #3498db; }
  .badge-strategy { background: rgba(46,204,113,0.12); color: #2ecc71; }
  .game-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
  .game-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
  .game-btns { display: flex; gap: 10px; flex-wrap: wrap; }
  .btn-dl {
    display: flex; align-items: center; gap: 7px;
    background: var(--dark); color: #fff;
    padding: 9px 16px; border-radius: 10px; text-decoration: none;
    font-weight: 700; font-size: .78rem; transition: all .2s;
  }
  .btn-dl:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }
  .btn-dl svg { width: 16px; height: 16px; }
  .game-rating {
    display: flex; align-items: center; gap: 4px;
    font-size: .8rem; color: var(--accent); font-weight: 700;
    margin-bottom: 8px;
  }

  /* ===== ABOUT ===== */
  #about {
    background: var(--bg);
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-top: 56px;
  }
  .about-visual {
    position: relative; border-radius: var(--radius-lg); overflow: visible;
  }
  .about-visual-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: var(--radius-lg); aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 140px; box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    position: relative; z-index: 1;
  }
  .about-badge-float {
    position: absolute; background: var(--surface);
    border-radius: 16px; padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    font-weight: 700; font-size: .9rem;
    display: flex; align-items: center; gap: 10px;
    animation: float 5s ease-in-out infinite;
  }
  .about-badge-float:nth-child(2) { bottom: -20px; right: -30px; z-index: 2; animation-delay: -2s; }
  .about-badge-float:nth-child(3) { top: -20px; left: -30px; z-index: 2; animation-delay: -1s; }
  .badge-icon { font-size: 1.4rem; }

  .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
  .value-card {
    background: var(--surface); border-radius: 16px; padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform .2s;
  }
  .value-card:hover { transform: translateY(-4px); }
  .value-icon { font-size: 2rem; margin-bottom: 12px; }
  .value-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
  .value-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

  /* Mission banner */
  .mission-banner {
    background: var(--dark); color: #fff;
    border-radius: var(--radius-lg); padding: 56px 64px;
    margin-top: 80px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }
  .mission-banner::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: var(--accent); opacity: .1;
  }
  .mission-text { max-width: 600px; }
  .mission-text .section-label { color: var(--accent); }
  .mission-text h3 {
    font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800;
    margin: 12px 0 16px; line-height: 1.2;
  }
  .mission-text p { color: rgba(255,255,255,0.7); line-height: 1.7; }
  .mission-visual { font-size: 80px; flex-shrink: 0; }

  /* ===== TEAM ===== */
  #team { background: var(--surface); }
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px; margin-top: 56px;
  }
  .team-card {
    background: var(--bg); border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; transition: transform .3s, box-shadow .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
  .team-avatar {
    width: 120px; height: 120px; border-radius: 50%;
    margin: 0 auto 20px; display: flex; align-items: center;
    justify-content: center; font-size: 48px;
    position: relative;
  }
  .team-avatar::after {
    content: '';
    position: absolute; inset: -4px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    z-index: -1;
  }
  .team-name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
  .team-role { font-size: .82rem; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
  .team-bio { font-size: .82rem; color: var(--muted); line-height: 1.6; }
  .team-social { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
  .team-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--surface); display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: .8rem; color: var(--muted);
    transition: all .2s; box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  .team-social a:hover { background: var(--dark); color: #fff; transform: scale(1.1); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.8);
    padding: 80px 24px 40px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand { }
  .footer-logo {
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  }
  .footer-logo-icon {
    width: 40px; height: 40px; background: var(--accent);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 20px; font-weight: 900; color: var(--dark);
  }
  .footer-logo-text { font-family: 'Sora', sans-serif; font-weight: 800; color: #fff; font-size: 16px; }
  .footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
  .footer-social { display: flex; gap: 12px; margin-top: 24px; }
  .footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; text-decoration: none; color: rgba(255,255,255,0.6);
    font-size: 16px; transition: all .2s;
  }
  .footer-social a:hover { background: var(--accent); color: var(--dark); }
  .footer-col h4 { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff; margin-bottom: 20px; font-size: .95rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px; display: flex;
    align-items: center; justify-content: space-between;
    font-size: .82rem; color: rgba(255,255,255,0.3);
  }

  /* ===== SCROLL REVEAL ===== */
  .reveal {
    opacity: 1; transform: translateY(0);
    transition: opacity .7s ease, transform .7s ease;
  }
  .js-reveal .reveal {
    opacity: 0; transform: translateY(40px);
  }
  .js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ===== MOBILE DROPDOWN ===== */
  .mobile-dropdown {
    display: none;
    position: fixed;
    top: 80px; left: 16px; right: 16px;
    background: var(--dark-nav);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .mobile-dropdown.open { display: flex; }
  .mobile-dropdown a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-weight: 700; font-size: 15px;
    padding: 13px 16px; border-radius: 10px;
    transition: background .15s, color .15s;
  }
  .mobile-dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-center { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: block; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .mission-banner { flex-direction: column; padding: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .slide { padding: 32px; }
    .slide-visual { width: 120px; height: 120px; font-size: 60px; }
  }
  @media (max-width: 600px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .slide-visual { display: none; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  }
