:root {
  --canvas: #ad9ea1;
  --blush: #f5e1e4;
  --blush-deep: #ecd0d5;
  --ink: #0a1e1b;
  --ink-soft: #4c5a54;
  --gold: #c9a24b;
  --gold-light: #ddbd76;
  --white: #ffffff;
  --shadow: rgba(10, 30, 27, 0.16);
  --radius-lg: 28px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}

h1, h2 {
  font-family: 'Baloo 2', sans-serif;
}

a { color: inherit; }

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(10,30,27,0.15) 0%, rgba(10,30,27,0.35) 55%, var(--ink) 100%);
}

.hero-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.2rem;
  text-align: center;
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0 0.9rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.9rem;
}

.tagline {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 1.02rem;
  color: #f2e9ea;
  line-height: 1.6;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.icon-link {
  color: var(--white);
  display: inline-flex;
  transition: transform 0.15s ease, color 0.15s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  color: var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.94rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.btn-gold:hover { box-shadow: 0 14px 30px rgba(0,0,0,0.3); }

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--ink);
}

.btn-outline:hover { background: var(--blush-deep); }

/* Layout */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.6rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  margin: 0.9rem auto 0;
  border-radius: 999px;
}

/* Platforms */
.platforms { padding: 4rem 0 3rem; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.4rem;
}

.platform-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid var(--blush-deep);
  box-shadow: 0 10px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.platform-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.handle {
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.1rem 0 0.7rem;
}

.stat-number, .stat-growth {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

.platform-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1.1rem;
  min-height: 2.8em;
}

/* Showcase */
.showcase {
  padding: 1rem 0 3.5rem;
  text-align: center;
}

.showcase-intro {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.showcase-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem;
  text-align: left;
  box-shadow: 0 8px 20px var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--shadow);
}

.showcase-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.showcase-title {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.showcase-views {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Shop */
.shop {
  text-align: center;
  padding: 3.5rem 2rem;
  margin-bottom: 3.5rem;
  background: var(--canvas);
  border-radius: var(--radius-lg);
}

.shop .section-title { color: var(--white); }
.shop .section-title::after { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

.shop-copy {
  color: #f1e9ea;
  max-width: 440px;
  margin: 0 auto 1.7rem;
  line-height: 1.65;
  font-size: 0.96rem;
}

/* Contact */
.contact {
  text-align: center;
  padding: 0 1rem 4.5rem;
}

.contact-copy {
  max-width: 520px;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.96rem;
}

.contact-email-btn {
  margin-top: 0.2rem;
}

.site-footer {
  text-align: center;
  padding: 1.8rem 1rem;
  background: var(--canvas);
  color: var(--white);
  font-size: 0.85rem;
}
