/* ============ The Wildlife Collection — landing ============ */
:root {
  --bg: #0a0f1d;
  --bg-2: #0f172a;
  --panel: #131c30;
  --panel-2: #1b2740;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.16);
  --gold: #e9c46a;
  --gold-2: #f4d77e;
  --emerald: #34d399;
  --violet: #a78bfa;
  --cyan: #60a5fa;
  --pink: #f472b6;
  --radius: 18px;
  --maxw: 1140px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(96, 165, 250, 0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(167, 139, 250, 0.10), transparent 55%);
}

h1, h2, h3, .brand-name, .store-btn strong { font-family: 'Poppins', sans-serif; }

a { color: inherit; text-decoration: none; }
strong { color: #fff; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10, 15, 29, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-icon { border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,0.5); }
.brand-name { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.2px; }
.nav { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem); }
.nav a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.lang-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  background: transparent; color: var(--muted); border: none; cursor: pointer;
  font: inherit; font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.7rem; transition: all 0.2s;
}
.lang-toggle button.is-active { background: var(--gold); color: #1a1205; }

@media (max-width: 680px) {
  .nav a:not(.lang-toggle a) { display: none; }
  .brand-name { display: none; }
}

/* ---------- Layout ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem); }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; text-align: center; line-height: 1.15; }
.section-title.left { text-align: left; }
.section-lead { text-align: center; color: var(--muted); font-size: 1.05rem; margin: 0.7rem auto 2.5rem; max-width: 560px; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(600px 380px at 70% 30%, rgba(233, 196, 106, 0.16), transparent 70%);
}
.hero-title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.5px; }
.hero-sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); margin: 1.2rem 0 1.8rem; max-width: 540px; }

.cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cta-row.center { justify-content: center; margin-top: 1.6rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, #1f2937, #0b1220);
  border: 1px solid rgba(148,163,184,0.35); border-radius: 14px;
  padding: 0.7rem 1.3rem; transition: transform 0.18s, box-shadow 0.18s, border-color 0.2s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); border-color: var(--emerald); }
.store-btn[aria-disabled="true"] { opacity: 0.78; cursor: not-allowed; }
.store-btn[aria-disabled="true"]:hover { transform: none; border-color: rgba(148,163,184,0.35); box-shadow: none; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-btn-text small { font-size: 0.62rem; letter-spacing: 1px; color: var(--muted); }
.store-btn-text strong { font-size: 1.15rem; color: #fff; }
.cta-note { color: var(--gold-2); font-size: 0.9rem; font-weight: 500; }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-top: 2rem; }
.hero-badges li { display: flex; align-items: center; gap: 0.45rem; color: var(--muted); font-size: 0.92rem; }
.hero-badges li span:first-child { font-size: 1.1rem; }

/* ---------- Phone frame ---------- */
.hero-phone { display: flex; justify-content: center; }
.phone {
  position: relative; width: clamp(230px, 28vw, 300px); aspect-ratio: 300 / 650;
  border-radius: 34px; padding: 10px;
  background: linear-gradient(160deg, #2a3550, #0c1322);
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(0,0,0,0.4);
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 7px; border-radius: 999px; background: #060a14; z-index: 2;
}
.phone-shot, .phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; display: block; }
.hero-phone .phone { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-phone { margin-top: 1.5rem; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 1.5rem 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: scroll 40s linear infinite; }
.marquee-track img {
  width: 92px; height: 92px; object-fit: cover; border-radius: 14px;
  border: 1px solid var(--border); box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track, .hero-phone .phone { animation: none; } }

/* ---------- Stats ---------- */
.stats {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1rem; text-align: center;
}
.stat b { display: block; font-family: 'Poppins',sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--gold-2); }
.stat span { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(233,196,106,0.45); }
.feature-ico {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.6rem;
  border-radius: 14px; background: rgba(233,196,106,0.10); border: 1px solid rgba(233,196,106,0.25); margin-bottom: 1rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1.2rem; }
.g-phone { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.g-phone img {
  width: 100%; max-width: 230px; border-radius: 22px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.g-phone:hover img { transform: translateY(-6px) scale(1.02); }
.g-phone figcaption { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Conservation ---------- */
.conservation { }
.cons-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.cons-copy p { color: var(--muted); margin-top: 1rem; }
.cons-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; margin-top: 1.6rem; }
.cons-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.dot.lc { background: #34d399; } .dot.nt { background: #a3e635; } .dot.vu { background: #fbbf24; }
.dot.en { background: #fb923c; } .dot.cr { background: #ef4444; } .dot.ex { background: #94a3b8; }
.cons-phone { display: flex; justify-content: center; }
@media (max-width: 860px) { .cons-inner { grid-template-columns: 1fr; } .section-title.left { text-align: center; } .cons-copy { text-align: center; } .cons-list { max-width: 360px; margin-inline: auto; } }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative; text-align: center; max-width: 820px; margin: 1rem auto 0;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
}
.final-cta h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; }
.final-cta p { color: var(--muted); margin: 0.8rem auto 0; max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border); margin-top: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin-inline: auto;
}
.foot-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.foot-logo { opacity: 0.9; }
.foot-brand p { color: var(--muted); font-size: 0.88rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.foot-links a:hover { color: #fff; }
.copyright { width: 100%; color: #64748b; font-size: 0.82rem; border-top: 1px solid var(--border); padding-top: 1.2rem; }

/* ============ Studio home ============ */
.nav-studio { color: var(--gold-2) !important; font-weight: 600 !important; }
@media (max-width: 680px) { .nav .nav-studio { display: inline !important; } }

.foot-wordmark { display: inline-flex; align-items: center; gap: 0.55rem; font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; }
.foot-wordmark img { border-radius: 8px; }

/* Filled (gold) variant of the store/action button */
.store-btn.solid {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
}
.store-btn.solid .store-btn-text small { color: rgba(26,18,5,0.7); }
.store-btn.solid .store-btn-text strong { color: #1a1205; }
.store-btn.solid:hover { border-color: transparent; box-shadow: 0 14px 34px rgba(233,196,106,0.3); }

/* Studio hero: text + large icon mark */
.studio-hero .hero-mark { display: flex; justify-content: center; }
.hero-icon {
  width: clamp(180px, 24vw, 240px); height: auto; border-radius: 32px;
  box-shadow: var(--shadow); animation: float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-icon { animation: none; } }
@media (max-width: 860px) { .studio-hero .hero-mark { margin-top: 1.5rem; } }

/* Games grid */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.game-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius);
}
.game-card.featured {
  grid-column: 1 / -1; flex-direction: row; align-items: stretch;
  transition: transform 0.2s, border-color 0.2s; text-decoration: none;
}
.game-card.featured:hover { transform: translateY(-4px); border-color: rgba(233,196,106,0.5); }
.game-card .game-cover { background: #0b1322; }
.game-card.featured .game-cover { flex: 0 0 38%; max-width: 320px; }
.game-card.featured .game-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.game-cover.ph { aspect-ratio: 16 / 10; display: grid; place-items: center; font-size: 3rem; }
.game-cover.ph.cosmos { background: radial-gradient(circle at 50% 40%, #1e293b, #0b1322); }
.game-cover.ph.dino { background: radial-gradient(circle at 50% 40%, #1f2e22, #0b1322); }
.game-cover.ph.fantasy { background: radial-gradient(circle at 50% 40%, #271c3a, #0b1322); }
.game-info { padding: 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; justify-content: center; }
.game-info h3 { font-size: 1.25rem; }
.game-info p { color: var(--muted); font-size: 0.95rem; }
.game-status {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--muted); background: rgba(148,163,184,0.12); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.25rem 0.7rem;
}
.game-status.live { color: #1a1205; background: var(--gold-2); border-color: transparent; }
.game-link { color: var(--gold-2); font-weight: 600; font-size: 0.95rem; margin-top: 0.3rem; }
.game-card.soon { opacity: 0.72; }
.game-card.soon .game-info h3 { color: #cbd5e1; }
@media (max-width: 760px) {
  .games-grid { grid-template-columns: 1fr 1fr; }
  .game-card.featured { flex-direction: column; }
  .game-card.featured .game-cover { flex: none; max-width: none; max-height: 260px; }
}
@media (max-width: 480px) { .games-grid { grid-template-columns: 1fr; } }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.about-copy p { color: var(--muted); margin-top: 1rem; }
.about-mara { color: #cbd5e1 !important; }
.about-values { list-style: none; display: grid; gap: 1rem; }
.about-values li { display: flex; gap: 0.9rem; align-items: flex-start; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.1rem; }
.about-values li > span { font-size: 1.4rem; line-height: 1; }
.about-values b { display: block; color: #fff; font-size: 0.98rem; }
.about-values div span { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; } .about .section-title.left { text-align: center; } .about-copy { text-align: center; } }
