* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Luxury shimmer effect */
.bg-shimmer {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  animation: shimmer 15s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: rotate(5deg) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  75% {
    transform: rotate(-5deg) scale(1.1);
    opacity: 0.6;
  }
}

/* Floating gold orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.2), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: orbFloat 25s infinite alternate;
}

.orb1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -200px;
  animation-duration: 30s;
}

.orb2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
  animation-duration: 25s;
  animation-delay: -5s;
}

.orb3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 20s;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, 50px) scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50px, -50px) scale(1);
    opacity: 0.3;
  }
}

/* Original funnel card - Used for review page */
.funnel-card {
  max-width: 500px;
  width: 100%;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 32px;
  padding: 20px 20px 32px;
  box-shadow: 0 25px 40px -10px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  animation: cardGlow 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 25px 40px -10px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.9), 0 0 50px rgba(212, 175, 55, 0.4);
  }
}

/* ===== ENHANCED COSMIC GLOW CARD - With VISIBLE decorative elements ===== */
.cosmic-glow-card {
  position: relative;
  max-width: 500px;
  width: 100%;
  border-radius: 32px;
  padding: 20px 20px 32px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
  animation: cosmicPulse 4s ease-in-out infinite;
}

/* Cosmic gradient background - KEEPING THIS BEAUTIFUL */
.cosmic-glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, #0A0A2A 0%, #1A1A3A 40%, #2A1A4A 70%, #3A1A3A 100%);
  z-index: -2;
}

/* ===== VISIBLE GOLDEN LIGHT BURST ===== */
.cosmic-glow-card .golden-light-burst {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.4) 30%, transparent 70%);
  filter: blur(25px);
  z-index: -1;
  animation: goldenPulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* ===== VISIBLE GLITTER PARTICLES ===== */
.cosmic-glow-card .glitter-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.cosmic-glow-card .glitter-particles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Gold particles */
    radial-gradient(4px 4px at 5% 15%, #FFD700, transparent),
    radial-gradient(3px 3px at 12% 45%, #FFD700, transparent),
    radial-gradient(5px 5px at 18% 72%, #FFD700, transparent),
    radial-gradient(2px 2px at 25% 30%, #FFD700, transparent),
    radial-gradient(4px 4px at 32% 85%, #FFD700, transparent),
    radial-gradient(3px 3px at 40% 10%, #FFD700, transparent),
    radial-gradient(5px 5px at 48% 60%, #FFD700, transparent),
    radial-gradient(2px 2px at 55% 25%, #FFD700, transparent),
    radial-gradient(4px 4px at 62% 90%, #FFD700, transparent),
    radial-gradient(3px 3px at 70% 40%, #FFD700, transparent),
    radial-gradient(5px 5px at 78% 75%, #FFD700, transparent),
    radial-gradient(2px 2px at 85% 15%, #FFD700, transparent),
    radial-gradient(4px 4px at 92% 50%, #FFD700, transparent),
    /* White particles */
    radial-gradient(3px 3px at 8% 25%, #FFFFFF, transparent),
    radial-gradient(2px 2px at 22% 60%, #FFFFFF, transparent),
    radial-gradient(4px 4px at 35% 80%, #FFFFFF, transparent),
    radial-gradient(3px 3px at 45% 35%, #FFFFFF, transparent),
    radial-gradient(2px 2px at 58% 70%, #FFFFFF, transparent),
    radial-gradient(4px 4px at 72% 20%, #FFFFFF, transparent),
    radial-gradient(3px 3px at 82% 55%, #FFFFFF, transparent),
    radial-gradient(2px 2px at 95% 90%, #FFFFFF, transparent),
    /* Red particles */
    radial-gradient(4px 4px at 10% 40%, #FF6B6B, transparent),
    radial-gradient(3px 3px at 28% 15%, #FF6B6B, transparent),
    radial-gradient(5px 5px at 42% 65%, #FF6B6B, transparent),
    radial-gradient(2px 2px at 60% 45%, #FF6B6B, transparent),
    radial-gradient(4px 4px at 75% 85%, #FF6B6B, transparent),
    /* Blue particles */
    radial-gradient(3px 3px at 15% 75%, #4A90E2, transparent),
    radial-gradient(4px 4px at 38% 50%, #4A90E2, transparent),
    radial-gradient(2px 2px at 50% 95%, #4A90E2, transparent),
    radial-gradient(5px 5px at 68% 30%, #4A90E2, transparent);
  background-repeat: no-repeat;
  opacity: 0.9;
  animation: sparkle 3s ease-in-out infinite;
}

/* ===== VISIBLE CONFETTI PIECES ===== */
.cosmic-glow-card .confetti-pieces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.cosmic-glow-card .confetti-pieces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Gold squares */
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 5% 10% / 12px 12px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 18% 45% / 15px 15px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 30% 75% / 10px 10px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 42% 25% / 18px 18px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 55% 60% / 14px 14px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 68% 85% / 16px 16px no-repeat,
    /* Red squares */
    linear-gradient(45deg, #FF6B6B 0%, #FF6B6B 100%) 8% 30% / 14px 14px no-repeat,
    linear-gradient(45deg, #FF6B6B 0%, #FF6B6B 100%) 22% 70% / 11px 11px no-repeat,
    linear-gradient(45deg, #FF6B6B 0%, #FF6B6B 100%) 38% 15% / 17px 17px no-repeat,
    linear-gradient(45deg, #FF6B6B 0%, #FF6B6B 100%) 48% 55% / 13px 13px no-repeat,
    /* Blue squares */
    linear-gradient(45deg, #4A90E2 0%, #4A90E2 100%) 12% 50% / 16px 16px no-repeat,
    linear-gradient(45deg, #4A90E2 0%, #4A90E2 100%) 25% 20% / 12px 12px no-repeat,
    linear-gradient(45deg, #4A90E2 0%, #4A90E2 100%) 40% 80% / 15px 15px no-repeat,
    /* Orange rectangles */
    linear-gradient(90deg, #FFA500 0%, #FFA500 100%) 15% 40% / 22px 8px no-repeat,
    linear-gradient(90deg, #FFA500 0%, #FFA500 100%) 35% 90% / 18px 6px no-repeat,
    linear-gradient(90deg, #FFA500 0%, #FFA500 100%) 52% 35% / 24px 10px no-repeat,
    /* Pink rectangles */
    linear-gradient(0deg, #FF69B4 0%, #FF69B4 100%) 45% 65% / 8px 20px no-repeat,
    linear-gradient(0deg, #FF69B4 0%, #FF69B4 100%) 62% 15% / 6px 18px no-repeat,
    linear-gradient(0deg, #FF69B4 0%, #FF69B4 100%) 78% 50% / 10px 22px no-repeat,
    /* Gold ribbons */
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 20% 5% / 30px 6px no-repeat,
    linear-gradient(135deg, #FFD700 0%, #FFD700 100%) 50% 95% / 28px 5px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 75% 30% / 26px 7px no-repeat;
  opacity: 0.8;
  transform: rotate(-5deg);
  animation: floatConfetti 6s ease-in-out infinite;
}

.cosmic-glow-card .confetti-pieces::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* More confetti with different rotation */
    linear-gradient(135deg, #FF6B6B 0%, #FF6B6B 100%) 10% 85% / 14px 14px no-repeat,
    linear-gradient(90deg, #4A90E2 0%, #4A90E2 100%) 33% 40% / 20px 9px no-repeat,
    linear-gradient(45deg, #FFD700 0%, #FFD700 100%) 60% 20% / 25px 5px no-repeat,
    linear-gradient(0deg, #FFA500 0%, #FFA500 100%) 80% 70% / 7px 16px no-repeat,
    linear-gradient(45deg, #FF69B4 0%, #FF69B4 100%) 90% 45% / 12px 12px no-repeat;
  opacity: 0.8;
  transform: rotate(8deg);
  animation: floatConfettiReverse 7s ease-in-out infinite;
}

/* ===== VISIBLE GOLDEN STREAKS ===== */
.cosmic-glow-card .golden-streaks {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.cosmic-glow-card .golden-streaks::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 30%;
  height: 60%;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 215, 0, 0.3) 50%, transparent 70%);
  filter: blur(15px);
  transform: skewX(-20deg);
  animation: streakMove1 8s ease-in-out infinite;
}

.cosmic-glow-card .golden-streaks::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 30%;
  height: 60%;
  background: linear-gradient(225deg, transparent 30%, rgba(255, 215, 0, 0.3) 50%, transparent 70%);
  filter: blur(15px);
  transform: skewX(20deg);
  animation: streakMove2 8s ease-in-out infinite;
}

/* ===== VISIBLE GEOMETRIC SHAPES ===== */
.cosmic-glow-card .geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.cosmic-glow-card .geometric-shapes::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 5%;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 215, 0, 0.5);
  transform: rotate(15deg);
  animation: shapeFloat 10s ease-in-out infinite;
}

.cosmic-glow-card .geometric-shapes::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 25px;
  height: 25px;
  background: rgba(255, 107, 107, 0.3);
  transform: rotate(45deg);
  animation: shapeFloat2 12s ease-in-out infinite;
}

/* Additional geometric shapes */
.cosmic-glow-card .geometric-shapes::before {
  box-shadow: 
    80px 120px 0 0 rgba(74, 144, 226, 0.4),
    150px 200px 0 0 rgba(255, 215, 0, 0.4),
    250px 50px 0 0 rgba(255, 105, 180, 0.4),
    350px 150px 0 0 rgba(255, 165, 0, 0.4),
    400px 250px 0 0 rgba(212, 175, 55, 0.4);
  width: 15px;
  height: 15px;
  border: none;
  background: transparent;
  animation: none;
}

/* ===== ANIMATIONS ===== */
@keyframes goldenPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatConfetti {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(-8deg);
  }
}

@keyframes floatConfettiReverse {
  0%, 100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes streakMove1 {
  0%, 100% {
    transform: skewX(-20deg) translateX(0);
  }
  50% {
    transform: skewX(-20deg) translateX(10px);
  }
}

@keyframes streakMove2 {
  0%, 100% {
    transform: skewX(20deg) translateX(0);
  }
  50% {
    transform: skewX(20deg) translateX(-10px);
  }
}

@keyframes shapeFloat {
  0%, 100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(25deg) translateY(-10px);
  }
}

@keyframes shapeFloat2 {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(35deg) translateY(10px);
  }
}

@keyframes cosmicPulse {
  0%, 100% {
    box-shadow: 0 25px 40px -10px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.9), 0 0 50px rgba(212, 175, 55, 0.4);
  }
}

/* Ensure content stays above background */
.cosmic-glow-card > *:not(.glitter-particles):not(.golden-streaks):not(.confetti-pieces):not(.geometric-shapes):not(.golden-light-burst) {
  position: relative;
  z-index: 2;
}

/* Logo Area - Same for both pages */
.logo-area {
  text-align: center;
  margin-bottom: 16px;
  animation: logoFadeIn 1s ease-out;
  position: relative;
  z-index: 3;
}

.logo-area img {
  max-width: 120px;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
  transition: filter 0.3s ease;
}

.logo-area img:hover {
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo tagline - ONLY on review page */
.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #d4af37;
  border-top: 1px solid #332e1e;
  border-bottom: 1px solid #332e1e;
  display: inline-block;
  padding: 4px 12px;
  text-transform: uppercase;
  font-weight: 300;
  animation: borderPulse 3s ease-in-out infinite;
  margin-top: 2px;
}

@keyframes borderPulse {
  0%, 100% {
    border-color: #332e1e;
  }
  50% {
    border-color: #d4af37;
  }
}

h2, h3 {
  font-family: 'Times New Roman', serif;
  font-weight: 600;
  color: #d4c58c;
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.8rem;
  animation: titleGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

.message {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 16px 18px;
  border-radius: 24px;
  border-left: 4px solid #d4af37;
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  text-align: center;
  margin: 16px 0 24px;
  animation: slideIn 0.8s ease-out;
  transform-origin: left;
  position: relative;
  z-index: 3;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.message i {
  color: #d4af37;
  margin-right: 6px;
  animation: iconSpin 5s linear infinite;
}

.message .highlight {
  color: #d4af37;
  font-weight: 600;
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-gold {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 24px;
  width: 100%;
  border-radius: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  animation: buttonPulse 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold:hover {
  background: #d4af37;
  color: #0a0a0a;
  box-shadow: 0 0 30px #d4af37;
  transform: translateY(-2px);
}

/* ===== MINIMALIST BANNER ===== */
.minimalist-banner {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
  text-align: center;
  z-index: 3;
}

/* Thin lines above and below */
.banner-line {
  width: 100%;
  height: 5px;
  background-color: #d4af37;
  opacity: 0.8;
}

.top-line {
  margin-bottom: 5px;
}

.bottom-line {
  margin-top: 5px;
}

/* Banner content */
.banner-content-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 5px 0;
}

/* Text styling - Light gold */
.banner-text-minimal {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #d4af37;
  letter-spacing: 3px;
  line-height: 1.2;
   text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(212, 175, 55, 0.6);
}

/* Star symbols - Light gold, larger size */
.banner-star-minimal {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  color: #d4af37;
  margin: 0 0px;
  vertical-align: middle;
}

/* Wheel container */
.wheel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 20px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: wheelAppear 1s ease-out;
  z-index: 3;
}

@keyframes wheelAppear {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

canvas#wheelCanvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #d4af37, 0 0 0 4px #1a1a1a, 0 20px 40px rgba(0,0,0,0.8);
  transition: box-shadow 0.3s ease;
  animation: wheelGlow 4s ease-in-out infinite;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

@keyframes wheelGlow {
  0%, 100% {
    box-shadow: 0 0 0 4px #d4af37, 0 0 0 8px #1a1a1a, 0 20px 40px rgba(0,0,0,0.8);
  }
  50% {
    box-shadow: 0 0 0 4px #f5e7b2, 0 0 0 8px #1a1a1a, 0 20px 50px rgba(212, 175, 55, 0.3);
  }
}

.spin-center-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #0a0a0a;
  border: 3px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #d4af37;
  cursor: pointer;
  box-shadow: 0 0 0 4px #000, 0 0 30px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
  z-index: 10;
  text-transform: uppercase;
  animation: centerPulse 2s ease-in-out infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes centerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 4px #000, 0 0 30px rgba(212, 175, 55, 0.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 0 4px #000, 0 0 40px rgba(212, 175, 55, 0.8);
  }
}

.spin-center-btn:active {
  transform: translate(-50%, -50%) scale(0.94);
  background: #1f1f1f;
}

.spin-center-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  border-color: #666;
  box-shadow: none;
  animation: none;
}

/* ===== PREMIUM MESSAGE BAR ===== */
.premium-message-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 420px;
  margin: 20px auto 16px;
  padding: 14px 24px;
  min-height: 60px;
  
  /* Pill / Capsule shape */
  border-radius: 50px;
  
  /* Premium gradient background */
  background: linear-gradient(135deg, #A00050 0%, #7800B0 50%, #4600C8 100%);
  opacity: 0.9;
  
  /* Border */
  border: 2px solid rgba(255, 80, 180, 0.55);
  
  /* Glow and shadow effects */
  box-shadow: 
    0 0 20px rgba(160, 0, 80, 0.45),
    0 6px 24px rgba(0, 0, 0, 0.6);
  
  /* Text styles */
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
  
  /* Hidden by default, shown via JavaScript when needed */
  display: none;
  position: relative;
  z-index: 3;
}

/* Icon styling */
.premium-message-bar i {
  color: #FFD700;
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Text container */
.premium-message-bar span {
  flex: 1;
}

/* Popup styling */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}
.popup-card {
  background: #121212;
  border: 2px solid #d4af37;
  border-radius: 48px;
  max-width: 380px;
  width: 90%;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 30px 50px black, 0 0 30px rgba(212, 175, 55, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 auto;
}
.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}
.popup-overlay.show .popup-card {
  transform: scale(1) translateY(0);
}
.popup-card i {
  font-size: 3.2rem;
  color: #d4af37;
  margin-bottom: 12px;
  animation: trophyShake 2s ease-in-out infinite;
}

@keyframes trophyShake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.popup-card h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: #d4af37;
}
.popup-card p {
  color: #fff;
  margin: 12px 0 8px;
  font-size: 1.1rem;
}
.coupon-code {
  background: #2a2a1c;
  border: 2px dashed #d4af37;
  padding: 12px 8px;
  border-radius: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #f5d97b;
  margin: 15px auto 8px;
  max-width: 90%;
  animation: couponGlow 2s ease-in-out infinite;
}

@keyframes couponGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

.btn-close {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  margin: 12px auto 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-close:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 20px #d4af37;
}

.info-text {
  text-align: center;
  color: #b9a87c;
  font-size: 0.9rem;
  margin-top: 16px;
  animation: fadePulse 3s ease-in-out infinite;
}

@keyframes fadePulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  body {
    padding: 8px;
  }
  
  .funnel-card,
  .cosmic-glow-card {
    padding: 16px 16px 28px;
  }
  
  .logo-area img {
    max-width: 100px;
  }
  
  .spin-center-btn {
    width: 60px;
    height: 60px;
    font-size: 0.5rem;
  }
  
  h2, h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .message {
    padding: 14px 16px;
    margin: 12px 0 20px;
  }
  
  .banner-text-minimal {
    font-size: 1.5rem;
  }
  
  .banner-star-minimal {
    font-size: 1.8rem;
  }
  
  .banner-content-minimal {
    gap: 10px;
  }
  
  .top-line {
    margin-bottom: 8px;
  }
  
  .bottom-line {
    margin-top: 8px;
  }
  
  .premium-message-bar {
    padding: 12px 18px;
    font-size: 0.95rem;
    min-height: 55px;
  }
  
  .premium-message-bar i {
    font-size: 1.1rem;
    margin-right: 8px;
  }
}

@media (max-width: 360px) {
  .logo-tagline {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
  
  .btn-gold {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .banner-text-minimal {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  
  .banner-star-minimal {
    font-size: 1.5rem;
  }
  
  .premium-message-bar {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

/* ===== INCREASE LOGO SIZE ONLY ON WHEEL PAGE ===== */
/* Find this section at the very end of the file */
/* Change the 180px value to whatever size you want */

.wheel-page-logo img {
  max-width: 180px !important;  /* ← CHANGE THIS VALUE */
  /* Options: 150px (medium), 180px (large), 200px (extra large), 220px (maximum) */
}


/* ===== MOVE EVERYTHING UP ON WHEEL PAGE ===== */
.wheel-page-layout {
  margin-top: -20px;  /* Negative margin pulls everything up */
  padding-top: 10px;  /* Adjust internal spacing */
}

/* Adjust logo position */
.wheel-page-layout .logo-area {
  margin-top: -50px;    /* Move logo up slightly */
  margin-bottom: 10px; /* Reduce space below logo */
}

/* Adjust banner position */
.wheel-page-layout .minimalist-banner {
  margin-top: -5px;    /* Move banner up */
  margin-bottom: 15px; /* Adjust space below banner */
}

/* Adjust wheel position */
.wheel-page-layout .wheel-container {
  margin-top: 10px;    /* Fine-tune wheel position */
  margin-bottom: 5px;
}

/* Adjust message bar position */
.wheel-page-layout .premium-message-bar {
  margin-top: 10px;
  margin-bottom: 10px;
}





