/* ═══════════════════════════════════════════════
   ZekaraWeb — Yummy Gummy Match
   Feminine palette · Baloo 2 + Poppins · Mobile-first
═══════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────── */
:root {
  /* Feminine rose-lavender palette */
  --rose:         #E8537A;
  --rose-dark:    #C93D62;
  --rose-light:   #FBCFE8;
  --rose-pale:    #FFF0F7;
  --lavender:     #A855C8;
  --lavender-dark:#8B3FAD;
  --lavender-soft:#E9D5FF;
  --coral:        #F97D70;
  --honey:        #F59E0B;
  --honey-light:  #FDE68A;
  --mint:         #6ECFC4;
  --plum:         #3B0764;
  --plum-mid:     #5B1A80;
  --white:        #FFFFFF;
  --cream:        #FFF8FC;
  --gray-soft:    #F5EEF9;
  --text:         #4A1070;
  --text-soft:    #7C4A99;

  --grad-hero:    linear-gradient(160deg, #FFD6EC 0%, #EDD9FF 50%, #C9EEFF 100%);
  --grad-rose:    linear-gradient(135deg, #E8537A, #F97D70);
  --grad-magic:   linear-gradient(135deg, #E8537A 0%, #A855C8 60%, #6ECFC4 100%);
  --grad-dark:    linear-gradient(145deg, #2E0652 0%, #1A0338 100%);
  --grad-feature: linear-gradient(160deg, #7B1FA2 0%, #A855C8 45%, #E8537A 100%);
  --grad-video:   linear-gradient(145deg, #1A0338 0%, #4A0E6E 100%);

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  44px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 10px rgba(168, 85, 200, 0.12);
  --shadow-md:  0 8px 28px rgba(168, 85, 200, 0.22);
  --shadow-lg:  0 20px 56px rgba(59, 7, 100, 0.28);
  --shadow-rose: 0 8px 28px rgba(232, 83, 122, 0.4);

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --nav-height: 72px;
  --max-width:  1200px;
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 248, 252, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(232, 83, 122, 0.12);
  box-shadow: 0 2px 20px rgba(168, 85, 200, 0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 248, 252, 0.99);
  box-shadow: 0 4px 24px rgba(59, 7, 100, 0.12);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo — icon + company name side by side */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(232, 83, 122, 0.2));
  transition: transform 0.2s;
}

.nav-logo-name {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(232, 83, 122, 0.15));
  transition: transform 0.2s;
}

.nav-logo:hover .nav-logo-img,
.nav-logo:hover .nav-logo-name {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover {
  color: var(--rose-dark);
  background: rgba(232, 83, 122, 0.07);
}

/* ── NAV DROPDOWN ───────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(232, 83, 122, 0.12);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  color: var(--text-soft);
  background: none;
}

.nav-dropdown-menu li a:hover {
  background: var(--rose-pale) !important;
  color: var(--rose-dark) !important;
}

.nav-game-thumb {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    display: none;
    min-width: unset;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li a { padding: 8px 14px !important; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  background: var(--gray-soft);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--grad-rose);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(232, 83, 122, 0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum-mid);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── SECTION COMMONS ────────────────────────── */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--plum);
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 500;
}

.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--grad-rose);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 83, 122, 0.5);
}

.btn--secondary {
  background: var(--white);
  color: var(--lavender-dark);
  border: 2px solid var(--lavender-soft);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--gray-soft);
  border-color: var(--lavender);
  transform: translateY(-2px);
}

.btn--large { padding: 16px 44px; font-size: 1.05rem; }

/* ── STORE BUTTONS ──────────────────────────── */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-buttons--center { justify-content: center; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1C0A30;
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 16px rgba(28, 10, 48, 0.45);
  transition: all 0.25s;
  min-width: 160px;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(28, 10, 48, 0.55);
  background: #2D1050;
}

.store-btn--google { border-color: rgba(126, 211, 126, 0.2); }
.store-btn--apple  { border-color: rgba(255, 255, 255, 0.15); }
.store-btn--large  { padding: 16px 30px; min-width: 200px; }

.store-icon { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn--large .store-icon { width: 34px; height: 34px; }

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn-sub {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.store-btn-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.store-btn--large .store-btn-main { font-size: 1.25rem; }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  /* gradient from bottom so text is readable */
  background: linear-gradient(
    to top,
    rgba(59, 7, 100, 0.92) 0%,
    rgba(59, 7, 100, 0.55) 45%,
    rgba(59, 7, 100, 0.1) 100%
  );
}


@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-16px) rotate(5deg); }
  66%       { transform: translateY(7px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
  width: 100%;
  color: var(--white);
}

.hero-logo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-game-logo {
  width: auto;
  height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 700;
  color: var(--rose-light);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  font-weight: 400;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  animation: fadeInUp 2s ease 1.5s both;
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── GAMES SECTION ──────────────────────────── */
.games-section { background: var(--cream); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(232, 83, 122, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.game-card-art {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.game-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.game-card:hover .game-card-art img { transform: scale(1.05); }

.game-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--grad-rose);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-rose);
}

.game-card-info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(232, 83, 122, 0.25));
}

.game-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--plum);
}

.title-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}

.game-card-info p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
  flex: 1;
}

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

.tag {
  background: var(--gray-soft);
  color: var(--lavender-dark);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(168, 85, 200, 0.15);
}

.game-card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.game-card--coming-soon {
  border-style: dashed;
  border-color: rgba(168, 85, 200, 0.2);
  background: rgba(255,255,255,0.6);
  opacity: 0.75;
}

.game-card-art--placeholder {
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content { text-align: center; color: var(--plum-mid); }
.placeholder-icon { font-size: 3.5rem; display: block; margin-bottom: 10px; }
.placeholder-content p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── FEATURES ───────────────────────────────── */
.features { position: relative; overflow: hidden; }

.features-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-feature);
  z-index: 0;
}

.features-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='3' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.features .section-container { position: relative; z-index: 1; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 36px 26px;
  text-align: center;
  color: var(--white);
  transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.85;
  font-weight: 400;
}

/* ── SHOWCASE ───────────────────────────────── */
.showcase { background: var(--cream); }

.showcase-layout {
  display: flex;
  align-items: center;
  gap: 72px;
}

.showcase-description { flex: 1; max-width: 480px; }

.showcase-description h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 18px;
}

.showcase-description p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 14px;
  font-weight: 400;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0 28px;
}

.showcase-list li {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1.5px solid rgba(168, 85, 200, 0.1);
}

.showcase-screenshots {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.screenshots-carousel {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.screenshot-frame {
  display: none;
  padding: 10px;
  border-radius: 50px;
  background: linear-gradient(150deg,
    #5a5a5a 0%,
    #2e2e2e 25%,
    #181818 50%,
    #2a2a2a 75%,
    #111 100%
  );
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.18),
    inset 0 -2px 4px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,0,0,0.75),
    0 28px 64px rgba(59,7,100,0.3),
    0 8px 24px rgba(0,0,0,0.35);
}

.screenshot-frame.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.phone-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

/* Side button highlights */
.phone-frame::after {
  content: '';
  position: absolute;
  top: 18%;
  right: -3px;
  width: 3px;
  height: 14%;
  background: linear-gradient(180deg, #444, #222, #444);
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
}

.carousel-dots { display: flex; gap: 7px; }

.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose-light);
  transition: all 0.2s;
  padding: 0;
}

.dot.active {
  background: var(--grad-rose);
  width: 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(232, 83, 122, 0.4);
}

/* ── CANDY/BOOSTER ICONS IN FEATURES ────────── */
.feature-candy-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  transition: transform 0.3s;
}

.feature-card:not(.feature-card--unicorn):hover .feature-candy-img {
  transform: rotate(10deg) scale(1.12);
}

/* ── UNICORN IN FEATURES ────────────────────── */
.feature-icon--img {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-unicorn-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  transition: transform 0.3s;
}

.feature-card--unicorn:hover .feature-unicorn-img {
  transform: rotate(-8deg) scale(1.1);
}

/* ── NEWS ───────────────────────────────────── */
.news-section { background: var(--cream); }

.news-header {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left !important;
}

.news-header-text { text-align: left; }
.news-header-text h2 { text-align: left; }
.news-header-text p  { text-align: left; }

.news-unicorn {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(168, 85, 200, 0.3));
  animation: floatAnim 5s ease-in-out infinite;
  flex-shrink: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(232, 83, 122, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--grad-rose);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-rose);
}

.news-tag--purple { background: linear-gradient(135deg, var(--lavender), var(--lavender-dark)); }
.news-tag--mint   { background: linear-gradient(135deg, #6ECFC4, #3AADA1); }

.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--plum);
  line-height: 1.25;
}

.news-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
  flex: 1;
}

.news-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--rose);
  transition: color 0.2s, letter-spacing 0.2s;
  margin-top: 4px;
  display: inline-block;
}

.news-link:hover {
  color: var(--rose-dark);
  letter-spacing: 0.3px;
}

/* ── TEAM VIDEO SECTION ─────────────────────── */
.team-video-section { background: var(--cream); }

.team-video-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.team-video-player {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #000;
  display: block;
  height: auto;
}

.team-video-info h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 16px;
  line-height: 1.2;
}

.team-video-info p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-weight: 400;
}

.team-roles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.team-roles li {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 16px;
  background: var(--gray-soft);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--rose);
  transition: transform 0.2s;
}

.team-roles li:hover {
  transform: translateX(4px);
}

/* ── VIDEO REEL SLIDER ──────────────────────── */
.video-reel { position: relative; overflow: hidden; }

.video-reel-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-video);
  z-index: 0;
}

.video-reel .section-container { position: relative; z-index: 1; }

.video-slider-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(150deg,
    #5a5a5a 0%,
    #2e2e2e 25%,
    #181818 50%,
    #2a2a2a 75%,
    #111 100%
  );
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.18),
    inset 0 -2px 4px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,0,0,0.75),
    0 28px 64px rgba(59,7,100,0.3),
    0 8px 24px rgba(0,0,0,0.35);
}

.video-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
}

.vslide { display: none; }
.vslide.active {
  display: block;
  position: relative;
  animation: fadeIn 0.35s ease;
}

.vslide-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 22px;
  background: var(--plum-mid);
  display: block;
}

.vslide-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Arrows overlaid on top of the video */
.vslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.25s;
}

.vslider-arrow--prev { left: 16px; }
.vslider-arrow--next { right: 16px; }

.vslider-arrow:hover {
  background: var(--grad-rose);
  transform: translateY(-50%) scale(1.12);
  border-color: transparent;
}

.vslider-arrow svg { width: 22px; height: 22px; }

.vslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

/* ── SWEET RUN MINI GAME ────────────────────── */
.runner-section { background: var(--cream); }

.runner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#runnerCanvas {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 3px solid rgba(168, 85, 200, 0.25);
}

.runner-hint-mobile {
  display: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
}

@media (hover: none) and (pointer: coarse) {
  .runner-hint-mobile { display: block; }
}

/* ── DOWNLOAD CTA ───────────────────────────── */
.download-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px;
}

.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-rose);
  opacity: 0.92;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  color: var(--white);
}

.cta-logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.9;
}

.cta-free {
  margin-top: 22px !important;
  font-size: 0.82rem !important;
  opacity: 0.65 !important;
  letter-spacing: 0.4px;
  font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--plum); color: rgba(255,255,255,0.7); }

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 36px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 200px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 0.85; }

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-logo-name {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.2));
}

.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 240px; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col a {
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--rose-light); }

/* ── FOLLOW US ──────────────────────────────── */
.footer-follow {
  background: var(--rose);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-follow-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p { font-size: 0.82rem; opacity: 0.45; }

/* ── RESPONSIVE — Tablet ────────────────────── */
@media (max-width: 1024px) {
  .team-video-wrap { gap: 36px; }
  .showcase-layout { gap: 44px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(255,248,252,0.98);
    backdrop-filter: blur(14px);
    padding: 14px 24px 22px;
    border-bottom: 1.5px solid rgba(232, 83, 122, 0.12);
    box-shadow: 0 8px 24px rgba(59, 7, 100, 0.12);
    z-index: 999;
  }
  .nav-links.open li { padding: 3px 0; }
  .nav-links.open a { padding: 10px 14px; font-size: 1rem; display: block; }
  .menu-toggle { display: flex; }
}

/* ── RESPONSIVE — Mobile ────────────────────── */
@media (max-width: 768px) {
  .hero-content { padding: 36px 20px 72px; }
  .hero-game-logo { height: 160px; }
  .hero-match-tag { font-size: 1.5rem; }

  /* Nav logo smaller on mobile */
  .nav-logo-img { height: 40px; }
  .nav-logo-name { height: 22px; }

  /* Hide decorative floating elements — save space & performance */
  .deco { display: none; }

  .team-video-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team-video-player { max-height: 420px; }

  .showcase-layout {
    flex-direction: column;
  }
  .showcase-description { max-width: 100%; text-align: center; }
  .showcase-list li { text-align: left; }

  /* Screenshots carousel — don't overflow on small screens */
  .screenshots-carousel { max-width: min(300px, 88vw); }

  /* Video slider frame — reduce padding on mobile */
  .video-slider-wrap { padding: 6px; border-radius: 20px; }
  .video-slider { border-radius: 14px; }
  .vslide-video { border-radius: 14px; }

  .footer-container { flex-direction: column; gap: 36px; padding: 44px 20px 28px; }
  .footer-links { gap: 28px; }

  .store-buttons { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --nav-height: 64px; }

  .section-container { padding: 64px 16px; }

  /* Stack store buttons vertically on small phones */
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { min-width: unset; width: 100%; max-width: 280px; padding: 10px 16px; }
  .store-btn--large { min-width: unset; width: 100%; max-width: 280px; padding: 12px 18px; }
  .store-btn-main { font-size: 0.95rem; }
  .store-btn--large .store-btn-main { font-size: 1.1rem; }

  .game-card-art { height: 195px; }
  .char-art { height: 230px; }
  .vslide-video { max-height: 260px; }
  .vslider-arrow { width: 36px; height: 36px; }
  .vslider-arrow--prev { left: 8px; }
  .vslider-arrow--next { right: 8px; }

  .footer-follow { gap: 14px; padding: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── RESPONSIVE — Small phones (≤360px) ─────── */
@media (max-width: 360px) {
  .hero-game-logo { height: 120px; }
  .hero-content { padding: 28px 16px 64px; }
  .section-header h2 { font-size: 1.6rem; }
  .nav-logo-img { height: 34px; }
  .nav-logo-name { height: 18px; }
  .screenshots-carousel { max-width: 100%; }
  .store-btn { max-width: 100%; }
  .store-btn--large { max-width: 100%; }
}

/* ── DECO — floating candy & booster images ── */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
  animation: floatAnim 6s ease-in-out infinite;
}

/* Hero decorations */
.deco--h1 { width: 56px;  top: 18%; left:  5%; animation-delay: 0s;   animation-duration: 7s; }
.deco--h2 { width: 52px;  top: 30%; right: 4%; animation-delay: 1.2s; animation-duration: 6s; }
.deco--h3 { width: 48px;  top: 68%; left:  3%; animation-delay: 0.6s; animation-duration: 8s; }
.deco--h4 { width: 60px;  top: 55%; right: 6%; animation-delay: 2s;   animation-duration: 5.5s; }
.deco--h5 { width: 44px;  top: 84%; left: 12%; animation-delay: 0.9s; animation-duration: 6.5s; }
.deco--h6 { width: 54px;  top: 78%; right:10%; animation-delay: 1.7s; animation-duration: 7.5s; }
.deco--h7 { width: 42px;  top: 10%; right:14%; animation-delay: 2.4s; animation-duration: 5s;   }

/* CTA decorations */
.deco--c1 { width: 50px;  top: 15%; left:  8%; animation-delay: 0s;   animation-duration: 6.5s; }
.deco--c2 { width: 55px;  top: 20%; right:12%; animation-delay: 1.3s; animation-duration: 7s; }
.deco--c3 { width: 44px;  top: 72%; left: 18%; animation-delay: 0.7s; animation-duration: 5.5s; }

/* ── ANIMATIONS ─────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
