/* ==========================================================================
   Bubble Popper - Festive & Vibrant Bubbly Theme Design System
   ========================================================================== */

:root {
  /* Cheerful Candy & Sky Palette */
  --bg-gradient-start: #e0f2fe;
  --bg-gradient-mid: #fdf2f8;
  --bg-gradient-end: #fef3c7;
  
  --primary-pink: #ff2d78;
  --primary-pink-glow: rgba(255, 45, 120, 0.35);
  --primary-pink-hover: #e01b63;
  
  --accent-cyan: #0284c7;
  --accent-cyan-light: #38bdf8;
  --accent-cyan-glow: rgba(2, 132, 199, 0.3);
  
  --accent-yellow: #f59e0b;
  --accent-yellow-light: #fbbf24;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-orange: #f97316;

  /* Card & Glass Surfaces */
  --card-bg: rgba(255, 255, 255, 0.88);
  --card-bg-hover: rgba(255, 255, 255, 0.98);
  --card-border: rgba(255, 255, 255, 0.9);
  --card-shadow: 0 12px 36px -8px rgba(15, 23, 42, 0.08), 0 4px 16px -4px rgba(255, 45, 120, 0.08);
  --card-shadow-hover: 0 20px 48px -10px rgba(15, 23, 42, 0.14), 0 8px 24px -4px rgba(255, 45, 120, 0.18);

  /* Typography Colors */
  --text-main: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #ffffff;

  /* Typography Fonts */
  --font-heading: 'Fredoka', 'Comic Sans MS', cursive, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

/* Reset & Global Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 45%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Floating Bubbles Canvas */
#ambient-bubbles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px var(--primary-pink-glow);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatBounce 3s ease-in-out infinite alternate;
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(3deg);
}

.logo-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #ff6b9d 40%, #ff2d78 85%, #d80053 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px var(--primary-pink-glow), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  position: relative;
  animation: floatBounce 3s ease-in-out infinite alternate;
}

.logo-bubble::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 10px;
  width: 12px;
  height: 7px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.logo-bubble span {
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ff2d78 0%, #0284c7 60%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-pink);
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sound Toggle Button */
.sound-toggle-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 45, 120, 0.25);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sound-toggle-btn:hover {
  background: #fff;
  border-color: var(--primary-pink);
  box-shadow: 0 4px 12px var(--primary-pink-glow);
  transform: scale(1.04);
}

.cta-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-pink), #ff6b9d);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--primary-pink-glow);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-header-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 45, 120, 0.5);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 60px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 45, 120, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255, 45, 120, 0.12);
  animation: pulseBadge 2.5s infinite ease-in-out;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.hero h1 span.highlight-pink {
  color: var(--primary-pink);
  text-shadow: 0 4px 18px var(--primary-pink-glow);
}

.hero h1 span.highlight-cyan {
  color: var(--accent-cyan);
  text-shadow: 0 4px 18px var(--accent-cyan-glow);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

.btn-play-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0f172a;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-store:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
  background: #1e293b;
}

.btn-play-store svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-text-wrap {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.btn-label-small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  font-weight: 600;
}

.btn-label-large {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-app-store:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  background: #1c1c1e;
  color: #ffffff;
}

.btn-app-store svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  flex-shrink: 0;
}

.hero-stats-row {
  display: flex;
  gap: 28px;
  padding-top: 16px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-pink);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Interactive Phone Mockup & Canvas Game
   ========================================================================== */

.hero-phone-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  background: #0f172a;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), 0 0 35px var(--primary-pink-glow);
  border: 4px solid #ffffff;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  background: #0d0221;
  border-radius: 34px;
  overflow: hidden;
  height: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Mini Game Header & HUD */
.mini-game-hud {
  position: absolute;
  top: 30px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  background: rgba(13, 2, 33, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hud-pill {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hud-pill.pops-count {
  color: #facc15;
}

.btn-restart-game {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
}

.btn-restart-game:hover {
  background: var(--primary-pink);
  transform: rotate(180deg);
}

/* Game Canvas */
#bubble-mini-game-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.mini-game-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 45, 120, 0.9);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: pulseHint 2s infinite ease-in-out;
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */

section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-pink);
  background: rgba(255, 45, 120, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.8px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--card-bg-hover);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255, 45, 120, 0.35);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.icon-pink { background: linear-gradient(135deg, #ff6b9d, #ff2d78); }
.icon-cyan { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.icon-yellow { background: linear-gradient(135deg, #fcd34d, #f59e0b); }
.icon-purple { background: linear-gradient(135deg, #c084fc, #8b5cf6); }
.icon-green { background: linear-gradient(135deg, #6ee7b7, #10b981); }
.icon-orange { background: linear-gradient(135deg, #fdba74, #f97316); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   7 Bubble Physics Classes Showcase
   ========================================================================== */

.bubbles-showcase {
  background: rgba(255, 255, 255, 0.5);
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.bubble-classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bubble-type-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

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

.bubble-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bubble-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  position: relative;
}

.avatar-normal {
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #38bdf8 45%, #0284c7 100%);
}
.avatar-multiply {
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #c084fc 45%, #7c3aed 100%);
}
.avatar-dynamite {
  background: radial-gradient(circle at 35% 30%, #fef08a 0%, #f97316 45%, #dc2626 100%);
}
.avatar-swirl {
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f472b6 45%, #db2777 100%);
}
.avatar-rocky {
  background: radial-gradient(circle at 35% 30%, #fde047 0%, #06b6d4 50%, #475569 100%);
}
.avatar-rockyfy {
  background: radial-gradient(circle at 35% 30%, #67e8f9 0%, #a855f7 50%, #ec4899 100%);
}
.avatar-cannon {
  background: radial-gradient(circle at 35% 30%, #fde047 0%, #e11d48 50%, #1e1b4b 100%);
}

.bubble-card-title h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.bubble-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-pink);
  letter-spacing: 0.4px;
}

.bubble-behavior-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bubble-behavior-list li {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.bubble-behavior-list li strong {
  color: var(--text-main);
}

/* ==========================================================================
   Power-ups & Custom Skins
   ========================================================================== */

.perks-skins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.tabbed-panel {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.panel-title h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.item-row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: all 0.2s ease;
}

.item-row-card:hover {
  background: #fff;
  border-color: rgba(255, 45, 120, 0.3);
  transform: translateX(4px);
}

.item-emoji {
  font-size: 26px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.item-details {
  flex: 1;
}

.item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.item-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.item-price-badge {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(2, 132, 199, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ==========================================================================
   In-Game Screenshot Showcase / Carousel
   ========================================================================== */

.screenshots-section {
  background: rgba(255, 255, 255, 0.4);
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 3px solid #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background: #0f172a;
}

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary-pink);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}

.screenshot-caption {
  padding: 10px;
  background: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-main);
}

/* ==========================================================================
   FAQ & How to Play
   ========================================================================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: var(--primary-pink);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
  transition: max-height 0.35s ease-in-out;
}

/* ==========================================================================
   Privacy & Developer Section
   ========================================================================== */

.privacy-support-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 255, 0.95));
  border-top: 2px solid rgba(255, 255, 255, 0.9);
}

.privacy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 45, 120, 0.2);
  padding: 40px;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.privacy-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.privacy-info p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.privacy-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.highlight-item span {
  font-size: 18px;
}

.privacy-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-open-privacy-modal {
  background: var(--primary-pink);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 16px var(--primary-pink-glow);
  transition: all 0.2s;
}

.btn-open-privacy-modal:hover {
  background: var(--primary-pink-hover);
  transform: translateY(-2px);
}

.btn-contact-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-cyan);
  border: 1.5px solid rgba(2, 132, 199, 0.3);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-contact-support:hover {
  background: var(--accent-cyan);
  color: #fff;
  transform: translateY(-2px);
}

/* Cross-Promo Card */
.cross-promo-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cross-promo-tag {
  color: #38bdf8;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cross-promo-box h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cross-promo-box p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 18px;
}

.btn-gmcplayer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  transition: all 0.2s;
}

.btn-gmcplayer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}

/* ==========================================================================
   Privacy Policy Modal
   ========================================================================== */

.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-modal.active {
  opacity: 1;
  visibility: visible;
}

.privacy-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.privacy-modal.active .privacy-modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 20px 28px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.btn-close-modal {
  background: rgba(0, 0, 0, 0.06);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.btn-close-modal:hover {
  background: var(--primary-pink);
  color: #fff;
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-body h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 18px;
  margin: 20px 0 8px;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-body ul {
  margin: 8px 0 16px 20px;
}

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

.modal-footer {
  padding: 16px 28px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

.modal-footer a {
  color: var(--accent-cyan);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.modal-footer a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 0 30px;
  border-top: 4px solid var(--primary-pink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  background: linear-gradient(135deg, #ff6b9d, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 26px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */

@keyframes floatBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(255, 45, 120, 0.12); }
  50% { transform: scale(1.03); box-shadow: 0 6px 22px rgba(255, 45, 120, 0.25); }
}

@keyframes pulseHint {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }

  .perks-skins-grid {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
