/* ==========================================================================
   GOOGLE FONTS & DESIGN SYSTEM
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');

:root {
  /* Brand Theme Colors (Father's Day Special - Blue & Gold) */
  --bg-dark-primary: #000c1e;
  --bg-dark-secondary: #001736;
  --bg-dark-card: #00224d;
  --bg-dark-card-inner: #002c63;
  
  /* Metallic Gold Palette */
  --gold-primary: #d4af37;
  --gold-light: #f9e8a2;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f9e8a2 0%, #d4af37 50%, #aa7c11 100%);
  --gold-border-gradient: linear-gradient(to right, #aa7c11, #f9e8a2, #aa7c11);
  
  /* Text and Accents */
  --text-white: #ffffff;
  --text-gold: #f5d76e;
  --text-muted-blue: #8ea7c7;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eaf53;
  --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  
  /* UI Token Variables */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-cursive: 'Playball', cursive;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
  --shadow-blue-glow: 0 10px 30px rgba(0, 136, 255, 0.15);
  --shadow-whatsapp: 0 8px 25px rgba(37, 211, 102, 0.35);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   BACKGROUND LIGHT DECORATIONS
   ========================================================================== */
.bg-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
}

.light-1 {
  top: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  background-color: #0050b5;
  animation: pulse-light 10s ease-in-out infinite alternate;
}

.light-2 {
  top: 500px;
  left: -150px;
  width: 600px;
  height: 600px;
  background-color: #003780;
  animation: pulse-light 14s ease-in-out infinite alternate-reverse;
}

.light-3 {
  bottom: 20%;
  right: -100px;
  width: 550px;
  height: 550px;
  background-color: #0c3973;
}

@keyframes pulse-light {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  100% { transform: scale(1.15) translate(20px, -30px); opacity: 0.45; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: rgba(0, 12, 30, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  height: 75px;
  background-color: rgba(0, 12, 30, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container img {
  height: 55px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo-container:hover img {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--text-muted-blue);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-family: var(--font-headings);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: 10px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-header-outline {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 4px;
}

.btn-header-outline:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark-primary);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp-cta {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  padding: 16px 36px;
  font-size: 1.15rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-whatsapp);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: pulse-button 2s infinite;
}

.btn-whatsapp-cta:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-whatsapp-cta .whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn-whatsapp-action {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  border-radius: var(--border-radius-sm);
  padding: 14px 24px;
  font-size: 1rem;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp-action:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-instagram-action {
  background: var(--instagram-gradient);
  color: var(--text-white);
  border-radius: var(--border-radius-sm);
  padding: 14px 24px;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(204, 35, 102, 0.3);
}

.btn-instagram-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(204, 35, 102, 0.45);
}

.btn-whatsapp-join {
  background-color: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  border-radius: var(--border-radius-sm);
  width: 100%;
  padding: 14px 30px;
}

.btn-whatsapp-join:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark-primary);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp-large {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  font-size: 1.15rem;
  padding: 16px 40px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp-large:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Sticky CTA Button for Mobile */
.floating-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 12, 30, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1.5px solid var(--gold-primary);
  padding: 12px 18px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  display: none;
}

.floating-cta-bar.visible {
  transform: translateY(0);
}

.btn-whatsapp-sticky {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow-whatsapp);
  font-weight: 700;
}

/* Animations for buttons */
@keyframes pulse-button {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Navigation Hamburger Menu */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.menu-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

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

.badge-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-gold);
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

/* Title Design matching Flyer style */
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.title-sub {
  font-size: 4.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  line-height: 0.9;
  background: linear-gradient(to bottom, #ffffff 50%, #d5e5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
  font-family: var(--font-headings);
}

.title-main {
  font-family: var(--font-cursive);
  font-size: 4.5rem;
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
  margin-top: -10px;
  padding-bottom: 10px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  text-transform: none;
  font-weight: normal;
}

.hero-question {
  font-size: 1.45rem;
  color: var(--text-white);
  margin-bottom: 15px;
  font-weight: 500;
}

.highlight-gold {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted-blue);
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}

.cta-tip {
  font-size: 0.85rem;
  color: var(--text-gold);
  opacity: 0.85;
  letter-spacing: 0.5px;
  padding-left: 5px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  max-width: 580px;
}

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

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-headings);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Interactive Pedestal Composition */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 520px;
  margin-top: 30px;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* 3D Pedestal */
.pedestal-3d {
  position: absolute;
  bottom: 0;
  width: 360px;
  height: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.pedestal-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 40px;
  background: radial-gradient(ellipse at center, #072e60 0%, #00122e 100%);
  border: 2.5px solid var(--gold-primary);
  border-radius: 50%;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1), 0 5px 25px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.pedestal-middle {
  position: absolute;
  top: 20px;
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, #001a40 0%, #000a1a 100%);
  border-left: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.pedestal-base {
  position: absolute;
  top: 50px;
  left: -15px;
  width: 390px;
  height: 75px;
  background: linear-gradient(to bottom, #00122e 0%, #00050f 100%);
  border: 1.5px solid var(--gold-dark);
  border-radius: 0 0 50% 50% / 0 0 35px 35px;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Mascots placement */
.mascots-container {
  position: absolute;
  bottom: 75px;
  left: 50%;
  margin-left: -255px;
  width: 300px;
  z-index: 10;
  transform-origin: bottom center;
  animation: float-character 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.45));
}

.mascot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Prize placement */
.prize-container {
  position: absolute;
  bottom: 90px;
  left: 50%;
  margin-left: 15px;
  width: 230px;
  z-index: 15;
  transform-origin: bottom center;
  animation: float-prize 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.55));
}

.prize-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 20;
}

.gift-box {
  top: 50px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Cpath d='M20 12v10H4V12M2 7h20v5H2zM12 22V7'/%3E%3Cpath d='M12 7H8.5A2.5 2.5 0 1 1 11 4.5C11 6 12 7 12 7Z' fill='%230050b5'/%3E%3Cpath d='M12 7h3.5A2.5 2.5 0 1 0 13 4.5C13 6 12 7 12 7Z' fill='%230050b5'/%3E%3C/svg%3E");
  animation: float-random-1 9s ease-in-out infinite;
}

.tie-gold {
  top: 120px;
  left: 20px;
  width: 35px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpolygon points='12,2 15,6 12,22 9,6'/%3E%3Cpolygon points='12,2 10,4 12,6 14,4' fill='%23aa7c11'/%3E%3C/svg%3E");
  animation: float-random-2 7s ease-in-out infinite;
}

.heart-gold {
  top: 220px;
  right: -20px;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  animation: float-random-3 8s ease-in-out infinite alternate;
}

.ribbon-blue {
  bottom: 150px;
  left: -40px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230050b5' stroke-width='2'%3E%3Cpath d='M4 10c0-6 8-6 8 0c0 6 8 6 8 0M12 10v10'/%3E%3C/svg%3E");
  animation: float-random-4 10s ease-in-out infinite;
}

/* Float Animations */
@keyframes float-character {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-prize {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-8px) rotate(-1.5deg) scale(1.02); }
  100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

@keyframes float-random-1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-random-2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-12deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-random-3 {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes float-random-4 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   COUNTDOWN TIMER SECTION
   ========================================================================== */
.countdown-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.countdown-box {
  background: linear-gradient(135deg, var(--bg-dark-card) 0%, #001735 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-premium), var(--shadow-gold);
  max-width: 900px;
  margin: 0 auto;
}

.countdown-title {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.timer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95px;
}

.timer-card {
  width: 100%;
  height: 85px;
  background: linear-gradient(180deg, #0b2240 0%, #031021 100%);
  border: 1.5px solid #1a4175;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
}

.timer-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,0.4);
}

.timer-val {
  font-family: var(--font-headings);
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.timer-label {
  font-size: 0.8rem;
  color: var(--text-muted-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  font-weight: 500;
}

.timer-separator {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-top: -25px;
  animation: blink-separator 1s infinite;
}

@keyframes blink-separator {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.countdown-footer-text {
  font-size: 0.95rem;
  color: var(--text-muted-blue);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   HOW TO PARTICIPATE (RULES CARD)
   ========================================================================== */
.how-to-participate {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background-color: rgba(0, 80, 181, 0.2);
  border: 1px solid rgba(0, 80, 181, 0.4);
  color: #00aaff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.3rem;
  color: var(--text-white);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted-blue);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* The Flyer Card Design */
.rules-card {
  background: var(--bg-dark-card);
  border: 3.5px solid var(--gold-primary);
  border-radius: var(--border-radius-md);
  padding: 8px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.rules-card-inner {
  background: var(--bg-dark-card-inner);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: calc(var(--border-radius-md) - 6px);
  padding: 40px 30px;
}

.rules-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}

.rules-ribbon {
  background: linear-gradient(180deg, #0056c6 0%, #003780 100%);
  border: 1.5px solid #fff;
  border-radius: var(--border-radius-sm);
  padding: 8px 30px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-bottom: 15px;
}

.ribbon-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.mustache-divider {
  color: var(--gold-primary);
  width: 50px;
}

.mustache-svg {
  width: 100%;
  height: auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0088ff 0%, #0044aa 100%);
  border: 1.5px solid #fff;
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.step-content h3 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 6px;
  font-weight: 600;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted-blue);
}

.instagram-link {
  color: var(--text-gold);
  font-weight: 600;
  border-bottom: 1px dotted var(--text-gold);
}

.instagram-link:hover {
  color: var(--text-white);
  border-bottom-color: var(--text-white);
}

.rules-actions {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.rules-actions .btn {
  width: 100%;
  max-width: 380px;
}

/* ==========================================================================
   THE SHIELD BADGE
   ========================================================================== */
.shield-section {
  padding: 50px 0;
  position: relative;
}

.father-shield {
  position: relative;
  width: 250px;
  height: 250px;
  background: var(--gold-gradient);
  clip-path: polygon(50% 0%, 100% 18%, 100% 72%, 50% 100%, 0% 72%, 0% 18%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-premium);
  z-index: 10;
  transition: transform var(--transition-normal);
}

.father-shield:hover {
  transform: translateY(-5px) scale(1.03);
}

.shield-content {
  width: calc(100% - 6px); /* 3px gold border */
  height: calc(100% - 6px);
  background: linear-gradient(135deg, #001e42 0%, #000b1a 100%);
  clip-path: polygon(50% 0%, 100% 18%, 100% 72%, 50% 100%, 0% 72%, 0% 18%);
  text-align: center;
  padding: 30px 20px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shield-mustache {
  color: var(--gold-primary);
  width: 40px;
  margin-bottom: 8px;
}

.shield-mustache-svg {
  width: 100%;
  height: auto;
}

.shield-title {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-white);
  line-height: 1;
}

.shield-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-gold);
  margin-top: 5px;
  margin-bottom: 8px;
  max-width: 150px;
  line-height: 1.3;
}

.shield-heart {
  color: var(--gold-primary);
  font-size: 1.15rem;
  animation: heart-beat 1.2s infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ==========================================================================
   PRIZE DETAILS (SPECS SECTION)
   ========================================================================== */
.prize-details {
  padding: 80px 0;
  position: relative;
}

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

.prize-image-col {
  display: flex;
  justify-content: center;
}

.prize-card-visual {
  background: radial-gradient(circle at center, #012452 0%, #00122e 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium), var(--shadow-blue-glow);
  position: relative;
  width: 100%;
  max-width: 420px;
}

.prize-details-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
  transition: transform var(--transition-normal);
}

.prize-card-visual:hover .prize-details-img {
  transform: translateY(-8px) scale(1.03);
}

.prize-badge-overlay {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--bg-dark-primary);
  padding: 6px 20px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--border-radius-pill);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.prize-info-title {
  font-size: 2.1rem;
  margin-bottom: 15px;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.prize-info-desc {
  color: var(--text-muted-blue);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.specs-list-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 35px;
}

.spec-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.spec-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.spec-text p {
  font-size: 0.85rem;
  color: var(--text-muted-blue);
}

.prize-cta-box {
  max-width: 380px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDIONS)
   ========================================================================== */
.faq-section {
  padding: 80px 0;
}

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

.faq-item {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background-color: #001b3d;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--text-white);
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 1rem;
}

.faq-icon-plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-icon-plus::before, .faq-icon-plus::after {
  content: '';
  position: absolute;
  background-color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

/* horizontal line */
.faq-icon-plus::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* vertical line */
.faq-icon-plus::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-trigger[aria-expanded="true"] .faq-icon-plus::after {
  transform: rotate(90deg) scaleY(0);
}

.faq-trigger[aria-expanded="true"] .faq-icon-plus::before {
  transform: rotate(90deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-muted-blue);
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CALL TO ACTION
   ========================================================================== */
.final-cta {
  padding: 90px 0;
  position: relative;
  background: radial-gradient(circle at center, #011e42 0%, #000c1e 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(212,175,55,0.15)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.final-cta-title {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.final-cta-desc {
  color: var(--text-muted-blue);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #000712;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
  text-align: center;
}

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted-blue);
  max-width: 500px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-blue);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--text-white);
  border-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.footer-bottom-line {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.credit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.credit img {
  height: 14px;
  width: auto;
}

/* ==========================================================================
   REVEAL / FADE IN ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

/* Medium Devices (Tablets & Landscape Phones) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-cta-wrapper {
    align-items: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-visual {
    height: 480px;
    margin-top: 10px;
  }
  
  .prize-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .prize-image-col {
    order: 1;
  }
  
  .prize-info-col {
    order: 2;
    text-align: center;
  }
  
  .specs-list-details {
    align-items: center;
  }
  
  .spec-detail-item {
    text-align: left;
    max-width: 480px;
  }
  
  .prize-cta-box {
    margin: 0 auto;
  }
  
  .title-sub {
    font-size: 3.8rem;
  }
  
  .title-main {
    font-size: 3.5rem;
  }
}

/* Small Devices (Mobile Phones) */
@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  
  .header.scrolled {
    height: 65px;
  }
  
  .logo-container img {
    height: 40px;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-dark-secondary);
    border-bottom: 1.5px solid var(--gold-primary);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all var(--transition-normal);
    z-index: 999;
  }
  
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.15rem;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .header-actions {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  
  .title-sub {
    font-size: 2.8rem;
  }
  
  .title-main {
    font-size: 2.7rem;
    margin-top: -5px;
  }
  
  .hero-question {
    font-size: 1.15rem;
  }
  
  .btn-whatsapp-cta {
    font-size: 0.95rem;
    padding: 12px 24px;
    width: 100%;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-num {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .timer {
    gap: 8px;
  }
  
  .timer-col {
    width: 65px;
  }
  
  .timer-card {
    height: 60px;
  }
  
  .timer-val {
    font-size: 1.8rem;
  }
  
  .timer-separator {
    font-size: 1.7rem;
    margin-top: -15px;
  }
  
  .rules-card-inner {
    padding: 25px 15px;
  }
  
  .section-header h2 {
    font-size: 1.85rem;
  }
  
  .faq-trigger {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  
  .faq-content p {
    padding: 0 20px 18px;
  }
  
  .footer-bottom-line {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .floating-cta-bar {
    display: block;
  }
  
  .footer {
    padding-bottom: 100px; /* Space for the mobile sticky bar */
  }
}

@media (max-width: 480px) {
  .title-sub {
    font-size: 2.4rem;
  }
  
  .title-main {
    font-size: 2.3rem;
  }
  
  .hero-visual {
    height: 380px;
  }
  
  .pedestal-3d {
    width: 260px;
    height: 90px;
  }
  
  .pedestal-top {
    height: 30px;
  }
  
  .pedestal-middle {
    top: 15px;
    height: 50px;
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
  }
  
  .pedestal-base {
    top: 35px;
    left: -10px;
    width: 280px;
    height: 60px;
    border-radius: 0 0 50% 50% / 0 0 25px 25px;
  }
  
  .mascots-container {
    bottom: 50px;
    left: 50%;
    margin-left: -160px;
    width: 190px;
  }
  
  .prize-container {
    bottom: 60px;
    left: 50%;
    margin-left: 10px;
    width: 140px;
  }
  
  .timer-col {
    width: 55px;
  }
  
  .timer-card {
    height: 50px;
  }
  
  .timer-val {
    font-size: 1.5rem;
  }
  
  .timer-separator {
    font-size: 1.4rem;
    margin-top: -12px;
  }
}
