:root {
  --bg: #070b22;
  --bg-soft: #0b1030;
  --card: #111634;
  --text: #eef0fb;
  --muted: #a3a8c9;
  --accent: #ffd60a;
  --accent-2: #3b82f6;
  --border: rgba(255, 255, 255, 0.10);
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .nav__logo-text { font-family: "Poppins", sans-serif; }
.grad {
  background: linear-gradient(90deg, var(--accent), #ffe566);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
a { color: inherit; text-decoration: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max); margin: 0 auto; width: 100%;
  backdrop-filter: blur(10px);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 10px; font-family: "Poppins", sans-serif; font-weight: 800;
  background: var(--accent); color: #1a1a1a;
}
.nav__logo-text { font-size: 1rem; font-weight: 800; letter-spacing: 1px; }
.nav__links { display: flex; gap: 28px; font-weight: 500; color: var(--muted); }
.nav__links a:hover { color: var(--text); }
.lang { display: flex; gap: 4px; border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.lang__btn {
  font: inherit; font-size: 0.8rem; font-weight: 700; cursor: pointer;
  padding: 5px 11px; border: 0; border-radius: 7px; background: transparent; color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang__btn:hover { color: var(--text); }
.lang__btn.is-active { background: var(--accent); color: #1a1a1a; }

/* Hero */
.hero {
  position: relative; display: grid; place-items: center; text-align: center;
  min-height: 86vh; padding: 80px 24px; overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 30% 20%, rgba(255, 214, 10, 0.18), transparent 60%),
    radial-gradient(600px 400px at 75% 60%, rgba(59, 130, 246, 0.22), transparent 60%);
  filter: blur(30px); z-index: 0;
}
.hero__content { position: relative; z-index: 1; max-width: 780px; }
.hero__eyebrow { letter-spacing: 4px; font-size: 0.78rem; font-weight: 600; color: var(--accent); margin-bottom: 18px; }
.hero__title { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; line-height: 1.12; }
.hero__sub { color: var(--muted); font-size: 1.1rem; margin: 22px auto 0; max-width: 640px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 48px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Poppins", sans-serif; font-size: 1.6rem; }
.hero__stats span { color: var(--muted); font-size: 0.85rem; }

/* Buttons */
.btn { display: inline-block; padding: 13px 26px; border-radius: 12px; font-weight: 600; transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.btn--primary { background: var(--accent); color: #1a1a1a; box-shadow: 0 8px 30px rgba(255, 214, 10, 0.3); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 214, 10, 0.45); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* Sections */
.section { max-width: var(--max); margin: 0 auto; padding: 90px 24px; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.section__lead { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px; transition: transform 0.2s ease, border-color 0.2s ease; }
.feature:hover { transform: translateY(-4px); border-color: var(--accent); }
.feature__icon { font-size: 2rem; margin-bottom: 14px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); }

/* Team */
.team__photo { max-width: 760px; margin: 0 auto; text-align: center; }
.team__photo img {
  width: 100%; height: auto; border-radius: 20px;
  border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.team__photo figcaption { color: var(--muted); font-size: 0.9rem; margin-top: 16px; }

/* Games */
.games__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.game { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease; }
.game:hover { transform: translateY(-6px); border-color: var(--accent); }
.game__tile {
  height: 160px; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(255, 214, 10, 0.18), rgba(59, 130, 246, 0.10) 70%, transparent);
}
.game__tile img { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5); }
.game__body { padding: 20px; }
.game__body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.game__genre { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.game__rating { color: var(--accent); font-weight: 600; margin-left: 6px; }
.badge { display: inline-block; font-size: 0.82rem; font-weight: 600; padding: 8px 14px; border-radius: 9px; border: 1px solid var(--border); color: var(--text); transition: all 0.15s ease; }
.badge:hover { border-color: var(--accent); color: var(--accent); }

/* Cloud Services (matches provided image) */
.svc__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 860px; margin: 0 auto; }
.svc {
  position: relative; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border); border-radius: 22px; padding: 70px 34px 40px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--accent); }
.svc__icon {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; display: grid; place-items: center; font-size: 2rem;
  border-radius: 18px; background: var(--bg-soft); border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(255, 214, 10, 0.25);
}
.svc h3 { font-size: 1.4rem; margin-bottom: 14px; }
.svc p { color: var(--muted); }
.svc__plus {
  display: inline-grid; place-items: center; margin-top: 24px;
  width: 44px; height: 30px; border-radius: 9px; font-size: 1.3rem; font-weight: 700;
  background: var(--accent); color: #1a1a1a; cursor: default;
}

/* Contact */
.contact { display: grid; place-items: center; }
.contact__card {
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.08), rgba(59, 130, 246, 0.10));
  border: 1px solid var(--border); border-radius: 24px; padding: 56px 40px; text-align: center; max-width: 720px; width: 100%;
}
.contact__emails { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 26px; }
.contact__emails .btn { width: 100%; max-width: 420px; }

/* Footer */
.footer { text-align: center; padding: 40px 24px; color: var(--muted); border-top: 1px solid var(--border); font-size: 0.9rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero__stats { gap: 28px; }
}
