/* ZodiacSecret.com - Cosmic Mystical Design System */
/* Fonts loaded via <link preload> in HTML head for non-blocking render */

:root {
  --bg-deep: #080414;
  --bg-primary: #0e0720;
  --bg-card: #170d30;
  --bg-card-hover: #1f1440;
  --bg-input: #1a1035;
  --gold: #d4a847;
  --gold-light: #f5d67b;
  --gold-glow: rgba(212, 168, 71, 0.15);
  --gold-border: rgba(212, 168, 71, 0.35);
  --purple: #7c5cbf;
  --purple-light: #a78bfa;
  --purple-glow: rgba(124, 92, 191, 0.15);
  --text-primary: #f0eaf9;
  --text-secondary: #b8a9d4;
  --text-muted: #7a6b9a;
  --cosmic-blue: #4a6cf7;
  --rose: #e84393;
  --border: rgba(124, 92, 191, 0.25);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glow-gold: 0 0 20px rgba(212, 168, 71, 0.3);
  --glow-purple: 0 0 20px rgba(124, 92, 191, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== STAR FIELD BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 92, 191, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 108, 247, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 168, 71, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.stars span {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  opacity: 0;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--opacity, 0.7); }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-primary);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.label-mystical {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(8, 4, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--purple-light); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
  position: relative;
}
.hero h1 {
  margin-bottom: 16px;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .purple { color: var(--purple-light); }
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--card-shadow), var(--glow-gold);
}

.card-glass {
  background: rgba(23, 13, 48, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* ===== ZODIAC SIGN GRID ===== */
.sign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.sign-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.sign-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--glow-gold);
}
.sign-card .sign-symbol {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}
.sign-card .sign-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.sign-card .sign-dates {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.sign-card .sign-element {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 8px;
}
.element-fire { background: rgba(232, 67, 67, 0.15); color: #f06040; border: 1px solid rgba(232, 67, 67, 0.3); }
.element-earth { background: rgba(74, 180, 100, 0.15); color: #5cb870; border: 1px solid rgba(74, 180, 100, 0.3); }
.element-air { background: rgba(74, 172, 247, 0.15); color: #5ab8f0; border: 1px solid rgba(74, 172, 247, 0.3); }
.element-water { background: rgba(100, 100, 240, 0.15); color: #8080f0; border: 1px solid rgba(100, 100, 240, 0.3); }

/* ===== ZODIAC WHEEL ===== */
.zodiac-wheel {
  position: relative;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  margin: 0 auto 40px;
}
.zodiac-wheel-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--border);
  animation: wheel-rotate 120s linear infinite;
}
@keyframes wheel-rotate {
  to { transform: rotate(360deg); }
}
.wheel-sign {
  position: absolute;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
}
.wheel-sign:hover { transform: scale(1.25); }
.wheel-sign .ws-symbol {
  font-size: 1.6rem;
  animation: wheel-rotate 120s linear infinite reverse;
}
.wheel-sign .ws-name {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 2px;
  animation: wheel-rotate 120s linear infinite reverse;
}
.zodiac-wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-card) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--glow-gold);
}
.zodiac-wheel-center .label-mystical {
  font-size: 0.55rem;
  letter-spacing: 2px;
}

/* ===== SIGN DETAIL PAGE ===== */
.sign-hero {
  padding: calc(var(--nav-height) + 40px) 0 60px;
  text-align: center;
  position: relative;
}
.sign-hero .sign-symbol-large {
  font-size: 5rem;
  margin-bottom: 12px;
  display: block;
}
.sign-hero .sign-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.sign-hero .sign-meta-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.sign-hero .sign-meta-item strong {
  color: var(--gold);
}

.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.trait-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trait-card .trait-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.trait-card .trait-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.trait-card .trait-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== COMPATIBILITY ===== */
.compat-selectors {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.compat-picker {
  text-align: center;
}
.compat-picker label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.compat-heart {
  font-size: 2.5rem;
  color: var(--rose);
  animation: pulse-heart 1.5s ease-in-out infinite;
}
@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.compat-score-ring {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) var(--score-pct, 0%), var(--bg-card) 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
  position: relative;
}
.compat-score-ring::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--bg-primary);
}
.compat-score-ring .score-value {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.compat-bars {
  max-width: 500px;
  margin: 32px auto;
}
.compat-bar {
  margin-bottom: 16px;
}
.compat-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.compat-bar-label span:first-child { color: var(--text-secondary); }
.compat-bar-label span:last-child { color: var(--gold); font-weight: 600; }
.compat-bar-track {
  height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}
.compat-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width 1s ease;
}

/* ===== QUIZ ===== */
.quiz-progress {
  height: 4px;
  background: var(--bg-card);
  border-radius: 2px;
  margin: 24px 0;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px;
  transition: width 0.5s ease;
}

.quiz-question {
  text-align: center;
  padding: 40px 0;
}
.quiz-question h2 {
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.quiz-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.quiz-option:hover {
  border-color: var(--purple);
  background: var(--bg-card-hover);
}
.quiz-option.selected {
  border-color: var(--gold);
  background: var(--gold-glow);
  box-shadow: var(--glow-gold);
}
.quiz-option .option-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.quiz-option .option-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== SHARE CARD ===== */
.share-card-preview {
  background: linear-gradient(135deg, #120726 0%, #1a0f35 50%, #0e0720 100%);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 32px auto;
  position: relative;
  overflow: hidden;
}
.share-card-preview::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 168, 71, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: #fff;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  color: #fff;
}
.share-btn-facebook { background: #1877f2; }
.share-btn-twitter { background: #1da1f2; }
.share-btn-pinterest { background: #e60023; }
.share-btn-copy { background: var(--purple); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c49a3c);
  color: #0e0720;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 71, 0.4);
  color: #0e0720;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-border);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

/* ===== DAILY HOROSCOPE ===== */
.horoscope-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.horoscope-card:hover {
  border-color: var(--gold-border);
}
.horoscope-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.horoscope-card-header .sign-symbol { font-size: 2rem; }
.horoscope-card-header .sign-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.horoscope-card-header .sign-dates-small {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.horoscope-reading {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== SECTION DIVIDERS ===== */
.divider-stars {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 8px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  list-style: none;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8, 4, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-toggle { display: block; }
  .sign-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sign-card { padding: 16px 8px; }
  .sign-card .sign-symbol { font-size: 2rem; }
  .compat-selectors { gap: 16px; }
  .quiz-options { grid-template-columns: 1fr 1fr; }
  .hero { padding: calc(var(--nav-height) + 32px) 0 48px; }
  .traits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sign-grid { grid-template-columns: repeat(3, 1fr); }
  .quiz-options { grid-template-columns: 1fr; }
  .share-buttons { flex-direction: column; align-items: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }
.animate-in:nth-child(5) { animation-delay: 0.4s; }
.animate-in:nth-child(6) { animation-delay: 0.5s; }

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.text-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease infinite;
  color: var(--text-muted);
  font-size: 1.2rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== VIRAL SHARE ENHANCEMENTS ===== */
.share-section {
  text-align: center;
  padding: 48px 0;
  position: relative;
}
.share-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.share-cta-text {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.share-buttons-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.share-btn-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
  font-size: 1.2rem;
}
.share-btn-circle:hover {
  transform: scale(1.15);
}
.share-btn-circle.fb { background: #1877f2; box-shadow: 0 4px 16px rgba(24,119,242,0.3); }
.share-btn-circle.tw { background: #000; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.share-btn-circle.pin { background: #e60023; box-shadow: 0 4px 16px rgba(230,0,35,0.3); }
.share-btn-circle.copy { background: var(--purple); box-shadow: 0 4px 16px rgba(124,92,191,0.3); }
.share-btn-circle.download { background: var(--gold); color: var(--bg-deep); box-shadow: var(--glow-gold); }

/* ===== EMAIL CAPTURE INLINE ===== */
.email-capture-inline {
  background: linear-gradient(135deg, rgba(23,13,48,0.8), rgba(14,7,32,0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  max-width: 540px;
  margin: 48px auto;
  position: relative;
  overflow: hidden;
}
.email-capture-inline::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(212,168,71,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.email-capture-inline h3 {
  margin-bottom: 8px;
}
.email-capture-inline .capture-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.email-capture-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.email-capture-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.email-capture-form input[type="email"]:focus {
  border-color: var(--gold);
}
.email-capture-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
.email-capture-form .btn-gold {
  white-space: nowrap;
  padding: 14px 28px;
}

@media (max-width: 480px) {
  .email-capture-form {
    flex-direction: column;
  }
  .email-capture-form .btn-gold {
    width: 100%;
    justify-content: center;
  }
}

/* ===== VIRAL BADGE ===== */
.viral-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(212,168,71,0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

/* ===== COSMIC DIVIDER ===== */
.cosmic-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  color: var(--text-muted);
}
.cosmic-divider::before,
.cosmic-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cosmic-divider span {
  font-size: 1.2rem;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: floatPulse 3s ease-in-out infinite;
}
.floating-cta .btn {
  box-shadow: 0 8px 32px rgba(212,168,71,0.4);
  font-size: 0.9rem;
  padding: 12px 24px;
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .floating-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== SIGN QUICK NAV (horizontal scroll) ===== */
.sign-quick-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sign-quick-nav::-webkit-scrollbar { display: none; }
.sign-quick-nav a {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  transition: all 0.3s;
  min-width: 64px;
}
.sign-quick-nav a:hover,
.sign-quick-nav a.active {
  border-color: var(--gold-border);
  background: var(--gold-glow);
}
.sign-quick-nav .sqn-symbol { font-size: 1.3rem; }
.sign-quick-nav .sqn-name {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== RESULT CARD (quiz/compat) ===== */
.result-spotlight {
  background: linear-gradient(135deg, #120726 0%, #1a0f35 50%, #0e0720 100%);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  max-width: 500px;
  margin: 32px auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-gold);
}
.result-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(212,168,71,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.result-spotlight .result-symbol {
  font-size: 5rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(212,168,71,0.5));
}
.result-spotlight .result-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.result-spotlight .result-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.result-spotlight .result-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto;
}

/* ===== PULSE GLOW (attention grabber) ===== */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(212,168,71,0.3); }
  50% { box-shadow: 0 0 24px rgba(212,168,71,0.6), 0 0 48px rgba(212,168,71,0.2); }
}
.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.social-proof-bar strong {
  color: var(--gold);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  z-index: 1001;
  transition: width 0.1s linear;
}
