/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0c0c0f;
  --bg-alt: #111117;
  --surface: #1a1a22;
  --text: #e8e6e3;
  --text-muted: #9a9a9a;
  --accent: #c8f45c;
  --accent-dim: #a8d44c;
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(12, 12, 15, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200, 244, 92, 0.07), transparent),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(100, 120, 255, 0.05), transparent),
    var(--bg);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ── Button ── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 244, 92, 0.25);
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg-alt);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 60px;
}

/* ── About ── */
.about-grid {
  margin-top: 60px;
  display: grid;
  gap: 60px;
}

.about-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: rgba(200, 244, 92, 0.2);
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── Games ── */
.games-featured {
  margin-top: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.game-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 244, 92, 0.15);
}

.game-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-placeholder span {
  font-size: 3.5rem;
  opacity: 0.6;
}

.game-info {
  padding: 28px;
}

.game-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.status-released {
  background: rgba(200, 244, 92, 0.15);
  color: var(--accent);
}

.status-dev {
  background: rgba(100, 140, 255, 0.15);
  color: #8eaaff;
}

.game-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* ── Bio ── */
.bio {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: center;
}

.bio h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.bio p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ── Contact ── */
.contact-container {
  text-align: center;
}

.contact-links {
  margin-bottom: 40px;
}

/* ── Privacy / Page Content ── */
.page-content {
  padding-top: 140px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 60px;
}

.policy-body h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 40px 0 12px;
}

.policy-body p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.policy-body ul {
  color: var(--text-muted);
  margin: 0 0 16px 24px;
  font-size: 0.95rem;
}

.policy-body ul li {
  margin-bottom: 6px;
}

.policy-body a {
  color: var(--accent);
}

.footer a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--text);
}

/* ── Footer ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(12, 12, 15, 0.96);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-toggle { display: flex; }

  .section { padding: 80px 0; }
  .about-values { grid-template-columns: 1fr; }
}

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

.hero-content {
  animation: fadeUp 0.8s ease-out;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
