/* ==========================================================================
   OVER35 ARIANO — DECENNALE 2026/2027 LANDING PAGE STYLESHEET
   Theme: Decennale Dark & Championship Gold
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg-obsidian: #0D0E12;
  --bg-surface: #181A20;
  --bg-card: #1C1F27;
  --bg-card-alt: #22252E;
  --bg-card-hover: #292D38;
  
  --gold-championship: #E5C158;
  --gold-light: #F7D774;
  --gold-deep: #B8932A;
  --gold-glow: rgba(229, 193, 88, 0.25);
  --gold-glow-strong: rgba(229, 193, 88, 0.5);

  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;

  --status-green: #22C55E;
  --status-amber: #EAB308;
  --status-red: #EF4444;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(229, 193, 88, 0.2);
  --border-gold-hover: rgba(247, 215, 116, 0.5);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   3. Ambient Decorative Glows
   -------------------------------------------------------------------------- */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-top-left {
  top: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
}

.glow-top-right {
  top: 100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 193, 88, 0.15) 0%, transparent 70%);
}

.glow-center {
  top: 900px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 147, 42, 0.12) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   4. Typography & Utility Classes
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 40%, var(--gold-championship) 80%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--gold-championship);
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

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

/* --------------------------------------------------------------------------
   5. Buttons & Store Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-championship) 60%, var(--gold-deep) 100%);
  color: #0D0E12;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--gold-glow-strong);
  filter: brightness(1.06);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.store-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  color: var(--text-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  min-width: 190px;
}

.store-badge:hover {
  border-color: var(--gold-championship);
  background-color: var(--bg-card-alt);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--gold-glow);
}

.store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.store-badge:hover .store-icon {
  color: var(--gold-light);
}

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

.store-sub {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.store-name {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   6. Navigation Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(13, 14, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  transition: background-color var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-championship);
  text-transform: uppercase;
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.desktop-nav a:hover {
  color: var(--gold-light);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-championship);
  transition: width var(--transition-fast);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.mobile-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

.mobile-drawer {
  display: none;
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge-edition {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(229, 193, 88, 0.1);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.badge-star {
  color: var(--gold-championship);
  font-size: 1rem;
}

.badge-chip {
  background-color: var(--gold-championship);
  color: var(--bg-obsidian);
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 12px;
}

.hero-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 26px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.perk-check {
  color: var(--gold-championship);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   8. Smartphone Mockup Showcase
   -------------------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(229, 193, 88, 0.28) 0%, transparent 75%);
  filter: blur(50px);
  z-index: 1;
}

.floating-card {
  position: absolute;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(28, 31, 39, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  animation: floatCard 4s ease-in-out infinite;
}

.float-left-card {
  top: 60px;
  left: -50px;
  animation-delay: 0s;
}

.float-right-card {
  bottom: 80px;
  right: -40px;
  animation-delay: 2s;
}

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

.float-icon {
  font-size: 1.4rem;
}

.float-info {
  display: flex;
  flex-direction: column;
}

.float-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.float-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Phone Chassis */
.phone-frame {
  position: relative;
  z-index: 5;
  width: 330px;
  margin: 0 auto;
  background-color: #121318;
  border-radius: 46px;
  padding: 12px;
  border: 4px solid #2A2D37;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(229, 193, 88, 0.2);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background-color: #000000;
  border-radius: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.phone-speaker {
  width: 44px;
  height: 4px;
  background-color: #262626;
  border-radius: 4px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #10294c 0%, #000 80%);
  border-radius: 50%;
}

.phone-screen {
  background-color: var(--bg-obsidian);
  border-radius: 36px;
  padding: 38px 14px 14px;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* App Bar inside Mockup */
.app-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px;
}

.app-brand-mini {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-screen-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.app-live-pill {
  background-color: rgba(34, 197, 94, 0.15);
  color: var(--status-green);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

/* Match Card Inside Mockup */
.screen-match-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
}

.screen-match-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.screen-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.team-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 75px;
}

.team-badge-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-championship), var(--gold-deep));
  color: #0D0E12;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-badge-circle.alt {
  background: linear-gradient(135deg, #4A5568, #2D3748);
  color: #FFFFFF;
}

.team-name-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  color: var(--text-primary);
}

.score-display {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.score-divider {
  color: var(--gold-championship);
  font-size: 1.2rem;
}

.screen-scorers-mini {
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 6px;
  margin-top: 4px;
}

.mvp-open-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: rgba(229, 193, 88, 0.12);
  border: 1px dashed var(--gold-championship);
  border-radius: var(--radius-sm);
  padding: 5px;
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-light);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-championship);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* MVP Widget Inside Mockup */
.screen-mvp-widget {
  background: linear-gradient(135deg, rgba(34, 37, 46, 0.9), rgba(24, 26, 32, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
}

.mvp-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.mvp-widget-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

.mvp-widget-sub {
  font-size: 0.62rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.btn-vote-demo {
  display: block;
  text-align: center;
  background-color: var(--gold-championship);
  color: #0D0E12;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px;
  border-radius: var(--radius-sm);
}

/* Standings Mini Snippet */
.screen-standings-mini {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 10px;
  border: 1px solid var(--border-subtle);
}

.standings-mini-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.standings-mini-row {
  display: flex;
  align-items: center;
  font-size: 0.68rem;
  padding: 3px 0;
  color: var(--text-primary);
}

.standings-mini-row.rank-1 .pos {
  color: var(--gold-championship);
  font-weight: 800;
}

.standings-mini-row .pos {
  width: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.standings-mini-row .t-name {
  flex: 1;
}

.standings-mini-row .pts {
  font-weight: 700;
  color: var(--gold-light);
}

/* Screen Bottom Bar */
.screen-bottom-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.screen-bottom-bar .tab-item.active {
  color: var(--gold-championship);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. Stats Strip Section
   -------------------------------------------------------------------------- */
.stats-strip {
  position: relative;
  z-index: 10;
  padding: 50px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(24, 26, 32, 0.5);
  backdrop-filter: blur(8px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 25px var(--gold-glow);
}

.stat-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. Features Section
   -------------------------------------------------------------------------- */
.features-section {
  position: relative;
  z-index: 10;
  padding: 110px 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-championship);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  background-color: var(--bg-card-alt);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  background: var(--gold-championship);
  color: #0D0E12;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.feature-svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works-section {
  position: relative;
  z-index: 10;
  padding: 90px 0 110px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 26, 32, 0.6) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--gold-championship);
  transform: translateY(-4px);
}

.step-number-badge {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #0D0E12;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  z-index: 10;
  padding: 60px 0 40px;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #1A1C24 0%, #13141B 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 28px;
  padding: 70px 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.cta-glow-decor {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(229, 193, 88, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-top: 14px;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 34px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12b. Regolamento Callout Section (Just before Footer)
   -------------------------------------------------------------------------- */
.regolamento-section {
  position: relative;
  z-index: 10;
  padding: 10px 0 70px;
}

.regolamento-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(26, 28, 36, 0.92) 0%, rgba(16, 17, 22, 0.97) 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  max-width: 900px;
  margin: 0 auto;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.regolamento-wrap:hover {
  border-color: rgba(229, 193, 88, 0.4);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6), 0 0 24px rgba(229, 193, 88, 0.1);
}

.regolamento-text {
  text-align: left;
}

.regolamento-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-championship);
  margin-bottom: 4px;
}

.regolamento-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.regolamento-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.btn-regolamento {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 193, 88, 0.08);
  border: 1px solid var(--gold-championship);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-regolamento:hover {
  background: var(--gold-championship);
  color: #0D0E12;
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

.regolamento-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .regolamento-wrap {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }
  .regolamento-text {
    text-align: center;
  }
  .btn-regolamento {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   13. Centered Simplified Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 10;
  background-color: #08090C;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 40px;
}

.footer-centered-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.footer-logo-link:hover {
  transform: scale(1.08);
}

.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px var(--gold-glow));
}

.footer-copy {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-privacy-link {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-privacy-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-dot-sep {
  color: var(--gold-championship);
  font-size: 0.8rem;
}

.footer-made-by {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.footer-heart-svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  fill: #E63946;
  filter: drop-shadow(0 0 5px rgba(230, 57, 70, 0.45));
  animation: heartPulse 1.8s infinite ease-in-out;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.18); }
  70% { transform: scale(1); }
}

.footer-x5g-link {
  color: var(--gold-championship);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.footer-x5g-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(229, 193, 88, 0.5);
}

.footer-action-row {
  margin-top: 6px;
}

.btn-contact-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1px solid var(--gold-championship);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-contact-footer:hover {
  background: var(--gold-championship);
  color: #0D0E12;
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   14. Interactive Store Modal & Toast
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 34px 28px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
  transform: scale(0.92);
  transition: transform var(--transition-normal);
}

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

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--gold-light);
}

.modal-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(229, 193, 88, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.modal-star-icon {
  font-size: 1.8rem;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.modal-body {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-highlight-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 24px;
  text-align: left;
}

.highlight-text {
  font-size: 0.88rem;
  color: var(--gold-light);
  line-height: 1.5;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--bg-card-alt);
  color: var(--text-primary);
  border: 1px solid var(--gold-championship);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 0.92rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-perks {
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

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

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
  }

  .mobile-drawer.open {
    max-height: 350px;
  }

  .mobile-nav-links {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .mobile-action {
    padding-top: 10px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

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

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

  .floating-card {
    display: none; /* Avoid overflowing mobile edges */
  }

  .phone-frame {
    width: 295px;
  }

  .phone-screen {
    min-height: 520px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .footer-simple-wrap {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-left {
    flex-direction: column;
    gap: 10px;
  }

  .footer-right {
    flex-direction: column;
    gap: 14px;
  }
}

/* --------------------------------------------------------------------------
   16. Competitions Section Styles (Minimal Items)
   -------------------------------------------------------------------------- */
.competitions-section {
  position: relative;
  z-index: 10;
  padding: 85px 0;
  background: linear-gradient(180deg, rgba(24, 26, 32, 0.4) 0%, transparent 100%);
}

.competitions-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.comp-main-box {
  background: linear-gradient(135deg, rgba(34, 37, 46, 0.95), rgba(24, 26, 32, 0.95));
  border: 1.5px solid var(--gold-championship);
  border-radius: var(--radius-lg);
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
  transition: all var(--transition-fast);
}

.comp-main-box:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 28px var(--gold-glow-strong);
}

.comp-main-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.comp-main-icon {
  font-size: 2.8rem;
  line-height: 1;
}

.comp-main-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
}

.comp-main-subtitle {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
}

.comp-main-pill {
  background: var(--gold-championship);
  color: #0D0E12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  flex-shrink: 0;
}

.coppe-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.coppe-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.coppe-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-subtle);
}

.coppe-grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.coppa-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all var(--transition-fast);
}

.coppa-card-item:hover {
  border-color: var(--gold-championship);
  background-color: var(--bg-card-alt);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
}

.coppa-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.coppa-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   17. Privacy Policy Page Styles (Beautiful Editorial Layout)
   -------------------------------------------------------------------------- */
.privacy-top-bar {
  position: relative;
  z-index: 10;
  padding: 44px 0 20px;
}

.privacy-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.privacy-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.privacy-brand-link:hover {
  transform: scale(1.06);
}

.privacy-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px var(--gold-glow));
}

.privacy-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: all var(--transition-fast);
}

.privacy-back-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-championship);
  background: var(--bg-card-alt);
}

.privacy-page-container {
  position: relative;
  z-index: 10;
  padding: 10px 0 90px;
}

.privacy-doc-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-doc-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 56px 50px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.privacy-doc-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 30px;
  margin-bottom: 38px;
}

.privacy-kicker-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-championship);
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid var(--border-gold-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.privacy-meta-info {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.privacy-intro-callout {
  background: linear-gradient(135deg, rgba(24, 26, 32, 0.95), rgba(34, 37, 46, 0.8));
  border-left: 4px solid var(--gold-championship);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-primary);
}

.privacy-intro-callout p + p {
  margin-top: 14px;
}

.privacy-sections-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.privacy-section-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  transition: all var(--transition-fast);
}

.privacy-section-card:hover {
  border-color: rgba(229, 193, 88, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.privacy-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.privacy-num-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #0D0E12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.privacy-card-body {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 46px;
}

.privacy-card-body p + p {
  margin-top: 12px;
}

.privacy-subpoints {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-subpoint-item {
  position: relative;
  padding-left: 24px;
  line-height: 1.75;
}

.privacy-subpoint-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold-championship);
  font-weight: bold;
}

.privacy-consenso-card {
  background: linear-gradient(135deg, rgba(34, 37, 46, 0.95), rgba(24, 26, 32, 0.95));
  border: 1px solid var(--gold-championship);
  border-radius: var(--radius-md);
  padding: 32px 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
}

.consenso-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.consenso-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.consenso-divider {
  height: 1px;
  background: var(--border-gold-subtle);
  margin: 24px 0;
}

@media (max-width: 768px) {
  .privacy-doc-card {
    padding: 34px 20px;
  }

  .privacy-title {
    font-size: 1.8rem;
  }

  .privacy-card-body {
    padding-left: 0;
    margin-top: 8px;
  }

  .privacy-top-inner {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   18. Coming Soon & Countdown Page Styles
   -------------------------------------------------------------------------- */
.coming-soon-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-deep);
  overflow-x: hidden;
  position: relative;
}

.glow-top-center {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(229, 193, 88, 0.18) 0%, transparent 70%);
}

.glow-bottom-center {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 26, 32, 0.9) 0%, transparent 75%);
}

.coming-soon-container {
  width: 100%;
  max-width: 820px;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.coming-soon-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(24, 26, 32, 0.85) 0%, rgba(13, 14, 18, 0.95) 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 32px;
  padding: 60px 40px 55px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(229, 193, 88, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.coming-soon-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
  width: 100%;
}

.coming-soon-logo {
  display: block;
  margin: 0 auto;
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px var(--gold-glow));
  transition: transform var(--transition-base);
}

.coming-soon-logo:hover {
  transform: scale(1.05);
}

.coming-soon-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold-championship);
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid rgba(229, 193, 88, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.coming-soon-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.coming-soon-subtitle {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin: 0 0 42px;
  letter-spacing: 0.04em;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.countdown-card {
  background: rgba(16, 17, 22, 0.7);
  border: 1px solid rgba(229, 193, 88, 0.2);
  border-radius: 20px;
  padding: 24px 12px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.countdown-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-championship);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 193, 88, 0.15);
}

.countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 14px var(--gold-glow);
}

.countdown-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-completed-box {
  padding: 30px;
  background: rgba(229, 193, 88, 0.12);
  border: 1px solid var(--gold-championship);
  border-radius: 20px;
  margin-top: 20px;
}

.completed-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.completed-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 0;
}

.coming-soon-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 193, 88, 0.12);
  text-align: center;
}

.coming-soon-privacy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.coming-soon-privacy-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-shadow: 0 0 12px rgba(229, 193, 88, 0.5);
}

@media (max-width: 640px) {
  .coming-soon-card {
    padding: 45px 20px 40px;
  }
  .coming-soon-title {
    font-size: 2rem;
  }
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .countdown-number {
    font-size: 2.6rem;
  }
  .coming-soon-logo {
    width: 100px;
    height: 100px;
  }
}
