
  :root {
    --bg: #f5f4f0;
    --white: #ffffff;
    --white-active: #ffffff;
    --dark: #111111;
    /* --accent: #f5a623; */
    --accent:#4399ff;
    --accent-dark: #e0900a;
    --accent2: #ff5c35;
    --green: #1fcc74;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --text: #111111;
    --muted: #888;
    --radius: 24px;
    --radius-lg: 40px;
    --nav-h: 80px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== TYPOGRAPHY ===== */
  .display {
    font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
  }

  /* ===== NAV ===== */
  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(255,255,255,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1.5px solid rgba(0,0,0,0.09);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-logo-mark {
    width: 120px;
    /* background: var(--dark); border-radius: 12px; */
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .nav-logo-mark::after {
    content: 'SA';
    font-weight: 900; font-size: 13px; color: var(--accent);
    letter-spacing: -1px;
  }
  .nav-logo-mark span {
    position: absolute; width: 14px; height: 14px;
    background: var(--accent); border-radius: 50%;
    top: -3px; right: -3px; opacity: .45;
  }
  .nav-brand {
    font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 16.5px; color: var(--dark);
    letter-spacing: -.3px;
  }
  .nav-brand em { color: var(--accent); font-style: normal; }

  .nav-center {
    display: flex; gap: 4px; margin: 0 auto;
    background: var(--bg); border-radius: 14px;
    padding: 5px; border: 1.5px solid rgba(0,0,0,0.07);
    box-shadow: none;
  }
  .nav-center a {
    padding: 8px 18px; border-radius: 10px;
    text-decoration: none; font-weight: 600; font-size: 13.5px;
    color: var(--muted); transition: all .18s;
  }
  .nav-center a:hover { color: var(--dark); background: rgba(0,0,0,0.04); }
  .nav-center a.active {
    background: black; color: white;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  }

  .nav-cta {
    background: var(--dark); color: var(--white);
    padding: 10px 22px; border-radius: 12px;
    font-weight: 700; font-size: 13.5px; text-decoration: none;
    transition: all .2s; flex-shrink: 0;
    box-shadow: none;
    letter-spacing: -.1px;
  }
  .nav-cta:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
  .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); border-radius: 2px; margin: 5px 0;
    transition: all .3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); 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-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 20px; border-radius: 14px;
    font-weight: 700; font-size: 15px; color: var(--dark);
    text-decoration: none; transition: background .15s;
  }
  .mobile-menu a:hover { background: var(--bg); }

  /* ===== HERO ===== */
  #home {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative; overflow: hidden;
  }

  /* Decorative bg shapes */
  .hero-deco {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    overflow: hidden;
  }
  .hero-deco-circle {
    position: absolute; border-radius: 50%;
  }
  .hero-deco-circle.c1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    top: -300px; right: -200px;
  }
  .hero-deco-circle.c2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,92,53,0.08) 0%, transparent 70%);
    bottom: 0; left: -100px;
  }
  .hero-deco-blob {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(245,166,35,0.3);
    animation: spinSlow 20s linear infinite;
    top: 20%; right: 8%;
  }
  .hero-deco-blob2 {
    position: absolute;
    width: 80px; height: 80px;
    background: var(--accent); border-radius: 24px;
    opacity: .08; bottom: 25%; left: 5%;
    animation: float 6s ease-in-out infinite;
    transform: rotate(20deg);
  }
  @keyframes spinSlow { to { transform: rotate(360deg); } }
  @keyframes float { 0%,100% { transform: rotate(20deg) translateY(0); } 50% { transform: rotate(20deg) translateY(-16px); } }

  .hero-main {
    display: flex; align-items: center; justify-content: space-between;
    gap: 60px; padding: 60px 80px; position: relative; z-index: 1;
  }
  .hero-left { flex: 1; max-width: 600px; }

  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px; padding: 8px 16px 8px 8px;
    margin-bottom: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    animation: fadeUp .6s .1s both;
  }
  .hero-pill-badge {
    background: var(--accent); color:rgb(75, 75, 75);
    font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
  }
  .hero-pill span { font-size: 13px; font-weight: 600; color: white; }

  .hero-h1 {
    font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -2px; margin-bottom: 24px;
    animation: fadeUp .6s .2s both;
  }
  .hero-h1 .line-accent {
    display: inline-block;
    /* background: var(--accent); color: var(--dark); */
    background: var(--accent); color: white;
    padding: 0 16px 4px; border-radius: 12px;
    transform: rotate(-1.5deg); margin-right: 8px;
  }
  .hero-h1 .line-outline {
    -webkit-text-stroke: 2px var(--dark);
    color: transparent;
  }

  .hero-p {
    font-size: 1.05rem; color: var(--muted);
    line-height: 1.75; max-width: 480px;
    margin-bottom: 40px; animation: fadeUp .6s .35s both;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .6s .5s both; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-weight: 800; font-size: 14px; text-decoration: none;
    transition: all .25s; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  .btn-primary:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(245,166,35,0.4); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--dark);
    padding: 16px 32px; border-radius: 50px; border: 2px solid rgba(0,0,0,0.12);
    font-weight: 800; font-size: 14px; text-decoration: none;
    transition: all .25s;
  }
  .btn-secondary:hover { border-color: var(--dark); background: var(--dark); color: var(--white); transform: translateY(-3px); }

  /* Hero right - floating cards */
  .hero-right {
    flex-shrink: 0; width: 380px;
    position: relative; height: 480px;
    animation: fadeUp .6s .3s both;
  }
  .hero-float-card {
    position: absolute; background: var(--white);
    border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    overflow: hidden;
    animation: bobCard 4s ease-in-out infinite;
  }
  .hfc-main {
    width: 240px; left: 50%; transform: translateX(-50%);
    top: 0; animation-delay: 0s;
    border: 2px solid rgba(0,0,0,0.04);
  }
  .hfc-main .hfc-img {
    height: 180px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex; align-items: center; justify-content: center; font-size: 80px;
    overflow: hidden;
  }
  .hfc-main .hfc-body { padding: 16px 20px; }
  .hfc-main .hfc-title { font-weight: 800; font-size: .95rem; margin-bottom: 4px; }
  .hfc-main .hfc-sub { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
  .hfc-main .hfc-rating { display: flex; align-items: center; gap: 4px; font-size: .75rem; font-weight: 700; color: var(--accent); }

  .hfc-side {
    width: 150px; background: var(--dark); color: var(--white);
    top: 50%; right: 0;
    padding: 20px; animation-delay: -1.5s;
  }
  .hfc-side .hfc-emoji { font-size: 40px; margin-bottom: 10px; }
  .hfc-side .hfc-num { font-family: 'Clash Display','Plus Jakarta Sans',sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
  .hfc-side .hfc-label { font-size: .72rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

  .hfc-bottom {
    width: 180px; bottom: 0; left: 0;
    background: var(--accent); color: var(--dark);
    padding: 18px; animation-delay: -3s;
  }
  .hfc-bottom .hfc-icon { font-size: 28px; margin-bottom: 8px; }
  .hfc-bottom .hfc-title { font-weight: 800; font-size: .85rem; }
  .hfc-bottom .hfc-sub { font-size: .72rem; font-weight: 600; opacity: .7; margin-top: 2px; }

  @keyframes bobCard {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-12px) translateX(-50%); }
  }
  .hfc-side { animation-name: bobCard2; }
  .hfc-bottom { animation-name: bobCard3; }
  @keyframes bobCard2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  @keyframes bobCard3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

  @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

  /* Stats ribbon */
  .stats-ribbon {
    background: var(--dark); color: var(--white);
    padding: 28px 80px;
    display: flex; align-items: center; justify-content: space-around;
    position: relative; z-index: 1;
  }
  .stat-item { text-align: center; }
  .stat-val {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-size: 2rem; font-weight: 700; color: var(--white);
  }
  .stat-lbl { font-size: .8rem; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
  .stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

  /* ===== SECTIONS COMMON ===== */
  section { padding: 110px 80px; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--accent); border-radius: 2px;
  }
  .section-h {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700;
    line-height: 1.1; letter-spacing: -1.5px;
    margin-bottom: 16px;
  }
  .section-p { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 540px; }

  /* ===== GAMES ===== */
  #games { background: var(--white); }
  .games-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 56px; flex-wrap: wrap; gap: 24px;
  }
  .btn-all {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--dark); color: var(--dark);
    padding: 12px 24px; border-radius: 50px;
    font-weight: 800; font-size: 13px; text-decoration: none;
    transition: all .2s; flex-shrink: 0;
  }
  .btn-all:hover { background: var(--dark); color: var(--white); }

  /* Filter tabs */
  .game-filters {
    display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
  }
  .filter-btn {
    padding: 8px 18px; border-radius: 50px; border: none;
    background: var(--bg); font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 13px; color: var(--muted);
    cursor: pointer; transition: all .2s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--dark); color: var(--white);
  }

  .games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .game-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg); transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .game-card:hover { transform: translateY(-10px); box-shadow: 0 24px 64px rgba(0,0,0,0.12); }
  .game-card.featured {
    grid-column: span 2;
  }
  .game-card-thumb {
    width: 100%; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .game-card:not(.featured) .game-card-thumb { height: 200px; }
  .game-card.featured .game-card-thumb { height: 260px; }
  .game-card-thumb .thumb-emoji {
    font-size: 90px; transition: transform .4s;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    width: 30%;
    border-radius: 20%;
  }
    .game-card-thumb .thumb-emojif {
    font-size: 90px; transition: transform .4s;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    width: 20%;
    border-radius: 20%;
  }
  .game-card.featured .game-card-thumb .thumb-emoji { font-size: 130px; }
  .game-card:hover .thumb-emoji { transform: scale(1.1) translateY(-6px); }
  .game-card-thumb .thumb-tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
    border-radius: 50px; padding: 5px 14px;
    font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  }
  .game-card-thumb .thumb-stars {
    position: absolute; top: 16px; right: 16px;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
    border-radius: 50px; padding: 5px 12px;
    font-size: 11px; font-weight: 700; color: var(--accent);
  }
  .game-card-body { padding: 24px; }
  .game-card-title {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-weight: 700; font-size: 1.15rem;
    letter-spacing: -.4px; margin-bottom: 8px;
  }
  .game-card.featured .game-card-title { font-size: 1.4rem; }
  .game-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
  .game-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .game-dl-btns { display: flex; gap: 8px; }
  .btn-store-sm {
    display: flex; align-items: center; gap: 6px;
    background: var(--dark); color: var(--white);
    padding: 8px 14px; border-radius: 12px;
    font-weight: 700; font-size: .75rem; text-decoration: none;
    transition: all .2s;
  }
  .btn-store-sm:hover { background: var(--accent); color: var(--dark); }
  .btn-store-sm svg { width: 14px; height: 14px; }
  .game-downloads { font-size: .8rem; font-weight: 700; color: var(--muted); }
  .game-downloads strong { color: var(--text); }

  /* ===== ABOUT ===== */
  #about { background: var(--bg); }
  .about-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
  }
  .about-visual-wrap { position: relative; }
  .about-big-card {
    background: var(--dark); border-radius: var(--radius-lg);
    padding: 56px; color: var(--white); position: relative; overflow: hidden;
  }
  .about-big-card::before {
    content: ''; position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    background: var(--accent); opacity: .08;
    top: -80px; right: -80px;
  }
  .about-big-card::after {
    content: ''; position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--accent2); opacity: .06;
    bottom: -60px; left: -40px;
  }
  .about-big-card-emoji { font-size: 80px; margin-bottom: 28px; position: relative; z-index: 1; }
  .about-big-card h3 {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-size: 2rem; font-weight: 700; letter-spacing: -1px;
    color: var(--white); margin-bottom: 16px; position: relative; z-index: 1;
  }
  .about-big-card p { color: rgba(255,255,255,0.55); line-height: 1.75; font-size: .95rem; position: relative; z-index: 1; }
  .about-mini-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 16px;
  }
  .about-mini {
    background: var(--white); border-radius: 20px; padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform .2s;
  }
  .about-mini:hover { transform: translateY(-4px); }
  .about-mini-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .about-mini-val {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1;
  }
  .about-mini-lbl { font-size: .78rem; color: var(--muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

  .about-text { }
  .about-text .section-p { max-width: 100%; margin-bottom: 24px; }
  .value-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
  .value-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--white); padding: 20px 24px; border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all .2s;
  }
  .value-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateX(4px); }
  .value-item-icon {
    width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  }
  .vi-orange { background: rgba(245,166,35,0.15); }
  .vi-red { background: rgba(255,92,53,0.12); }
  .vi-green { background: rgba(31,204,116,0.12); }
  .vi-blue { background: rgba(59,130,246,0.12); }
  .value-item-text h4 { font-weight: 800; font-size: .95rem; margin-bottom: 4px; }
  .value-item-text p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

  /* ===== TEAM ===== */
  /* #team { background: var(--white); } */
  #team { background: black; }
  .team-header { margin-bottom: 56px; }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .team-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg); border: 1px solid rgba(0,0,0,0.05);
    transition: transform .3s, box-shadow .3s;
  }
  .team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
  .team-card-top {
    padding: 32px 24px 20px; display: flex; flex-direction: column; align-items: center;
  }
  .team-ava {
    width: 90px; height: 90px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 42px; margin-bottom: 16px;
    position: relative;
  }
  .team-ava-ring {
    position: absolute; inset: -3px; border-radius: 50%;
    background: conic-gradient(var(--accent) 0%, var(--accent2) 50%, var(--accent) 100%);
    z-index: -1; animation: spinSlow 6s linear infinite;
  }
  .team-ava-inner {
    width: 90px; height: 90px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 42px; background: var(--white); position: relative; z-index: 1;
  }
  .team-name { font-family: 'Clash Display','Plus Jakarta Sans',sans-serif; font-weight: 700; font-size: 1rem; text-align: center; letter-spacing: -.3px; }
  .team-role { font-size: .75rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; text-align: center; margin-top: 4px; }
  .team-card-bottom {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(0,0,0,0.06); margin: 0 0 0; padding-top: 16px;
    padding: 16px 20px 20px;
  }
  .team-bio { font-size: .8rem; color: var(--muted); line-height: 1.65; }
  .team-links { display: flex; gap: 8px; margin-top: 14px; }
  .team-link {
    width: 32px; height: 32px; border-radius: 10px;
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: .75rem; color: var(--muted);
    font-weight: 700; transition: all .2s;
  }
  /* .team-link:hover { background: var(--dark); color: var(--white); border-color: var(--dark); } */
  .team-link:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

  /* ===== CTA STRIP ===== */
  .cta-strip {
    background: var(--accent); padding: 80px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }
  .cta-strip h2 {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    letter-spacing: -1.5px; color: var(--dark); max-width: 560px; line-height: 1.1;
  }
  .cta-strip-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
  .btn-dark {
    background: var(--dark); color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-weight: 800; font-size: 14px; text-decoration: none;
    transition: all .2s; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  }
  .btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
  .btn-ghost-dark {
    background: transparent; color: var(--dark);
    padding: 16px 32px; border-radius: 50px; border: 2px solid var(--dark);
    font-weight: 800; font-size: 14px; text-decoration: none;
    transition: all .2s;
  }
  .btn-ghost-dark:hover { background: var(--dark); color: var(--white); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.6);
    padding: 80px;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
    gap: 48px; margin-bottom: 60px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  }
  .footer-logo-icon {
    width: 7%; 
  }
  .footer-logo-name {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-weight: 700; color: var(--white); font-size: 17px;
  }
  .footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 280px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 28px; }
  .footer-soc {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: rgba(255,255,255,0.5);
    font-size: 15px; font-weight: 700; transition: all .2s;
  }
  .footer-soc:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
  .footer-col h5 {
    font-family: 'Clash Display','Plus Jakarta Sans',sans-serif;
    font-weight: 700; color: var(--white); font-size: .9rem;
    margin-bottom: 20px; letter-spacing: -.2px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: .86rem; transition: color .2s; }
  .footer-col ul a:hover { color: var(--accent); }
  .footer-contact-items { display: flex; flex-direction: column; gap: 18px; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
  }
  .footer-contact-icon {
    font-size: 1rem; margin-top: 2px; flex-shrink: 0;
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
  }
  .footer-contact-label {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: rgba(255,255,255,0.3); margin-bottom: 3px;
  }
  .footer-contact-value {
    font-size: .84rem; color: rgba(255,255,255,0.65); line-height: 1.5;
  }
  .footer-contact-link {
    text-decoration: none; transition: color .2s;
  }
  .footer-contact-link:hover { color: var(--accent); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    font-size: .82rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
  .footer-bottom a:hover { color: var(--accent); }
  .footer-dev-credit {
    font-size: .75rem; color: rgba(255,255,255,0.2);
    letter-spacing: .2px;
  }
  .footer-dev-link {
    color: rgba(255,255,255,0.28); text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
    transition: color .2s, border-color .2s;
  }
  .footer-dev-link:hover { color: var(--accent); border-color: var(--accent); }

  /* ===== SCROLL REVEAL ===== */
  .reveal { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
  .reveal-left { opacity: 1; transform: translateX(0); transition: opacity .7s ease, transform .7s ease; }
  .reveal-right { opacity: 1; transform: translateX(0); transition: opacity .7s ease, transform .7s ease; }
  .js-reveal .reveal { opacity: 0; transform: translateY(36px); }
  .js-reveal .reveal-left { opacity: 0; transform: translateX(-36px); }
  .js-reveal .reveal-right { opacity: 0; transform: translateX(36px); }
  .js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
  .js-reveal .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .js-reveal .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .hero-main { padding: 60px 40px; }
    section { padding: 80px 40px; }
    .stats-ribbon { padding: 28px 40px; }
    .games-grid { grid-template-columns: 1fr 1fr; }
    .game-card.featured { grid-column: span 2; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
    .cta-strip { padding: 60px 40px; }
    footer { padding: 60px 40px; }
  }
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-center { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: block; }
    .hero-main { flex-direction: column; padding: 40px 24px; gap: 40px; }
    .hero-right { width: 100%; height: 300px; }
    .hfc-main { width: 180px; }
    .hfc-side { display: none; }
    .hfc-bottom { display: none; }
    .about-layout { grid-template-columns: 1fr; }
    .about-visual-wrap { display: none; }
    .games-grid { grid-template-columns: 1fr; }
    .game-card.featured { grid-column: span 1; }
    .cta-strip { flex-direction: column; padding: 40px 24px; }
    section { padding: 70px 24px; }
    .stats-ribbon { flex-wrap: wrap; gap: 24px; padding: 32px 24px; }
    .stat-sep { display: none; }
    #services { padding: 70px 24px !important; }
    #services > div > div:last-child { grid-template-columns: 1fr !important; }
  }
  @media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .about-mini-cards { grid-template-columns: 1fr 1fr; }
    footer { padding: 40px 24px; }
    .hero-h1 { letter-spacing: -1px; }
  }
