/* ============================================================
   HOROGRAM — Landing Page Design System
   Mystical cosmic aesthetic · Three.js + GSAP powered
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Backgrounds */
  --bg-void:       #030008;
  --bg-deep:       #080015;
  --bg-nebula:     #12052a;
  --bg-card:       rgba(12, 4, 28, 0.75);
  --bg-glass:      rgba(18, 8, 40, 0.60);
  --bg-glass-light:rgba(30, 15, 60, 0.50);

  /* Accent palette */
  --gold:          #c9a84c;
  --gold-light:    #e8c96a;
  --gold-dim:      #8a6e28;
  --purple:        #7b2d8b;
  --violet:        #6c3fcf;
  --blue:          #3a5cd4;
  --pink:          #c84ab0;
  --teal:          #2ab8c8;

  /* Text */
  --text-primary:  #ede4dc;
  --text-secondary:#9b8fa0;
  --text-muted:    #5c5268;

  /* Borders / Glows */
  --border-gold:   rgba(201, 168, 76, 0.20);
  --border-glass:  rgba(255, 255, 255, 0.07);
  --glow-gold:     0 0 30px rgba(201, 168, 76, 0.25);
  --glow-purple:   0 0 40px rgba(108, 63, 207, 0.30);
  --glow-pink:     0 0 30px rgba(200, 74, 176, 0.25);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-deco:    'Cinzel Decorative', serif;
  --font-body:    'Inter', sans-serif;
  --font-italic:  'Cormorant Garamond', serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  1200px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Galaxy Canvas (Three.js) --- */
#galaxy-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* --- Layout --- */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  font-family: var(--font-italic);
  font-style: italic;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* --- Divider --- */
.star-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 64px;
  width: fit-content;
}
.star-divider::before,
.star-divider::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.star-divider::after {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}
.star-divider span { color: var(--gold); font-size: 18px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(3, 0, 8, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-gold);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--gold-light), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--glow-gold);
}

.nav-logo-text {
  font-family: var(--font-deco);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

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

.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 16px;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--bg-void);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.2s ease;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(201, 168, 76, 0.50);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary.large {
  padding: 18px 48px;
  font-size: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.10);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%,
    rgba(108, 63, 207, 0.15) 0%,
    transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to bottom, transparent, var(--bg-void));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 32px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  font-family: var(--font-italic);
  font-style: italic;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}

.cta-hint {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.cta-hint em {
  color: var(--gold);
  font-style: normal;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* Floating sparkles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: twinkle var(--d, 4s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 0.8; transform: scale(1.5); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
}

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

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none !important; }
}

.step-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.06), transparent);
  pointer-events: none;
}

.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}

.step-number {
  font-family: var(--font-deco);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.04) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -0.02em;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--bg-glass-light), transparent);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  box-shadow: var(--glow-purple);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Arrow connector between steps */
.steps-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
}

@media (max-width: 768px) {
  .steps-wrapper { grid-template-columns: 1fr; gap: 24px; }
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-size: 20px;
}

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

/* ============================================================
   ABOUT / DESCRIPTION
   ============================================================ */
.about-section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 63, 207, 0.12), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.about-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-body strong {
  color: var(--text-primary);
  font-weight: 500;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}

.about-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

/* Decorative orb for about section */
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.about-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(201, 168, 76, 0.20) 0%,
    rgba(108, 63, 207, 0.25) 40%,
    rgba(3, 0, 8, 0.60) 70%,
    transparent 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 80px rgba(108, 63, 207, 0.25), inset 0 0 60px rgba(201, 168, 76, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

.about-orb img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}

.about-orb-placeholder {
  font-size: 80px;
  opacity: 0.5;
}

/* Zodiac ring around orb */
.zodiac-ring {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.20);
  animation: rotate-slow 40s linear infinite;
}

.zodiac-ring-inner {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.10);
  animation: rotate-slow 25s linear infinite reverse;
}

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

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   SHOWCASE (User Predictions)
   ============================================================ */
.showcase-section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--bg-deep) 30%, var(--bg-deep) 70%, transparent);
  pointer-events: none;
}

.showcase-swiper-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0 40px;
}

.showcase-swiper-wrapper::before,
.showcase-swiper-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.showcase-swiper-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}

.showcase-swiper-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.showcase-swiper {
  width: 100%;
  padding: 20px 40px 32px !important;
}

.swiper-slide {
  width: 280px;
  height: auto;
}

.showcase-loading {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-glass);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Swiper custom styling */
.showcase-swiper .swiper-button-prev,
.showcase-swiper .swiper-button-next {
  color: var(--gold);
  background: rgba(3, 0, 8, 0.8);
  border: 1px solid var(--border-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.showcase-swiper .swiper-button-prev:hover,
.showcase-swiper .swiper-button-next:hover {
  background: var(--gold);
  color: var(--bg-void);
}

.showcase-swiper .swiper-button-prev::after,
.showcase-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.showcase-swiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}

.showcase-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Old track styles (keep for backward compatibility if needed) */
.showcase-track-wrapper {
  position: relative;
}

.prediction-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  aspect-ratio: 3/4;
  user-select: none;
  cursor: pointer;
}

.prediction-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--glow-gold);
}

.prediction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 16px;
}

.prediction-card:hover img { transform: scale(1.04); }

.prediction-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 14px 14px;
  background: linear-gradient(to top, rgba(3, 0, 8, 0.97) 0%, rgba(3, 0, 8, 0.80) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.zodiac-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.30);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  width: fit-content;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.prediction-caption {
  font-size: 12px;
  color: var(--text-primary);
  font-family: var(--font-italic);
  font-style: italic;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.prediction-date {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.showcase-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-secondary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
}

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

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (min-width: 600px) and (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 100px;
  font-family: var(--font-deco);
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-size: 17px;
  color: var(--text-primary);
  font-family: var(--font-italic);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--violet), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.author-sign {
  font-size: 12px;
  color: var(--gold);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, var(--bg-deep) 20%, var(--bg-deep) 80%, transparent);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--border-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.3s ease, background 0.2s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.faq-answer-inner a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 50%,
    rgba(108, 63, 207, 0.20) 0%,
    rgba(201, 168, 76, 0.05) 50%,
    transparent 80%);
  pointer-events: none;
}

.cta-tagline {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.cta-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  font-family: var(--font-italic);
  font-style: italic;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: left;
  position: relative;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-8px);
}

.pricing-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg-void);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
  font-family: var(--font-display);
}

.pricing-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-period {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 9px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-family: var(--font-display);
  transition: all 0.25s ease;
}

.pricing-cta-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg-void);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.30);
}

.pricing-cta-primary:hover {
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.45);
  filter: brightness(1.05);
}

.pricing-cta-ghost {
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

.pricing-cta-ghost:hover {
  background: rgba(201, 168, 76, 0.08);
}

.pricing-trial-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 0;
}

.pricing-trial-note em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 32px;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover { color: var(--gold); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ============================================================
   LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-glass);
}

.legal-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.legal-header .back-link:hover { color: var(--gold); }

.legal-header h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 8px;
}

.legal-header .update-date {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-glass);
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 10px;
}

.legal-content p, .legal-content li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

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

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

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-left.visible, .reveal-right.visible { transform: translateX(0); }

/* stagger delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 600px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary.large { padding: 16px 36px; font-size: 15px; }
  .hero-stats { gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}


/* ============================================================
   LOGO IMAGE (circular crop)
   ============================================================ */
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.nav-logo-icon {
  overflow: hidden;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.30), 0 0 4px rgba(201, 168, 76, 0.60);
}

/* ============================================================
   HERO — background image + floating crystal
   ============================================================ */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.07;
  filter: saturate(1.4) brightness(0.8);
  transform: scale(1.05);
}

.hero-crystal {
  position: absolute;
  right: clamp(20px, 6vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 28vw, 400px);
  z-index: 2;
  pointer-events: none;
  animation: float-crystal 7s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(108, 63, 207, 0.55)) drop-shadow(0 0 80px rgba(108, 63, 207, 0.25));
}

.hero-crystal img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  opacity: 0.88;
}

@keyframes float-crystal {
  0%, 100% { transform: translateY(-50%) translateX(0)   rotate(-1deg); }
  33%       { transform: translateY(-53%) translateX(-6px) rotate(1deg); }
  66%       { transform: translateY(-47%) translateX(4px)  rotate(-0.5deg); }
}

/* Hide crystal on mobile so it doesn't overlap text */
@media (max-width: 900px) {
  .hero-crystal { display: none; }
}

@media (max-width: 600px) {
  .hero-bg-image img { opacity: 0.05; }
}

/* ============================================================
   SHOOTING STARS
   ============================================================ */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%,
    rgba(108, 63, 207, 0.18) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.shooting-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px 1px rgba(255, 220, 150, 0.8);
  animation: shoot var(--dur, 6s) linear infinite var(--delay, 0s);
  opacity: 0;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: var(--len, 80px);
  height: 1px;
  background: linear-gradient(to right, rgba(255,220,150,0.7), transparent);
  transform: translateY(-50%);
  border-radius: 1px;
}

@keyframes shoot {
  0%   { transform: translate(0, 0) rotate(var(--angle, -35deg)); opacity: 0; }
  5%   { opacity: 1; }
  60%  { opacity: 0.6; }
  100% { transform: translate(var(--tx, -600px), var(--ty, 300px)) rotate(var(--angle, -35deg)); opacity: 0; }
}

/* ============================================================
   GLOWING HEADINGS
   ============================================================ */
.hero-title {
  text-shadow:
    0 0 80px rgba(201, 168, 76, 0.20),
    0 0 120px rgba(108, 63, 207, 0.15);
}

.gradient-text {
  filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.35));
}

.section-title {
  text-shadow: 0 0 60px rgba(108, 63, 207, 0.25);
}

.cta-title {
  text-shadow:
    0 0 80px rgba(201, 168, 76, 0.22),
    0 0 140px rgba(200, 74, 176, 0.15);
}

/* ============================================================
   ENHANCED STEP CARDS
   ============================================================ */
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 76, 0.40),
    transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}

.step-card:hover::after { transform: scaleX(1); }

.step-icon {
  background: radial-gradient(circle at 40% 35%,
    rgba(108, 63, 207, 0.30) 0%,
    rgba(18, 8, 40, 0.80) 100%);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-icon {
  box-shadow: 0 0 24px rgba(108, 63, 207, 0.55), 0 0 48px rgba(201, 168, 76, 0.20);
  transform: scale(1.08);
}

/* ============================================================
   ABOUT SECTION — glowing orb + background
   ============================================================ */
.about-section::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.about-orb img {
  mix-blend-mode: normal;
  opacity: 1;
  filter: saturate(1.3) contrast(1.1);
  border-radius: 50%;
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.about-orb {
  box-shadow:
    0 0 60px rgba(108, 63, 207, 0.45),
    0 0 120px rgba(108, 63, 207, 0.20),
    inset 0 0 40px rgba(201, 168, 76, 0.08);
  animation: pulse-orb 4s ease-in-out infinite;
}

@keyframes pulse-orb {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(108, 63, 207, 0.45),
      0 0 120px rgba(108, 63, 207, 0.20),
      inset 0 0 40px rgba(201, 168, 76, 0.08);
  }
  50% {
    box-shadow:
      0 0 80px rgba(108, 63, 207, 0.65),
      0 0 160px rgba(108, 63, 207, 0.30),
      inset 0 0 60px rgba(201, 168, 76, 0.15);
  }
}

/* ============================================================
   SECTION SEPARATORS — mystical line
   ============================================================ */
.mystic-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 40px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.mystic-sep::before,
.mystic-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(108, 63, 207, 0.30) 40%,
    rgba(201, 168, 76, 0.60) 50%,
    rgba(108, 63, 207, 0.30) 60%,
    transparent 100%);
}

/* ============================================================
   SHOWCASE — more atmosphere
   ============================================================ */
.showcase-section {
  background:
    linear-gradient(180deg, transparent 0%, var(--bg-deep) 15%, var(--bg-deep) 85%, transparent 100%),
    radial-gradient(ellipse 100% 40% at 50% 50%, rgba(108, 63, 207, 0.08), transparent 70%);
}

.prediction-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 50%,
    rgba(108, 63, 207, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Animated border on prediction cards */
.prediction-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg,
    rgba(201, 168, 76, 0), rgba(201, 168, 76, 0),
    rgba(201, 168, 76, 0.4), rgba(201, 168, 76, 0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prediction-card:hover::after { opacity: 1; }

/* ============================================================
   FAQ — animated left accent line
   ============================================================ */
.faq-item.open {
  border-left: 2px solid var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   CTA — background nebula image
   ============================================================ */
.cta-section {
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%,
      rgba(108, 63, 207, 0.22) 0%,
      rgba(200, 74, 176, 0.06) 50%,
      transparent 80%),
    radial-gradient(ellipse 60% 40% at 20% 80%,
      rgba(201, 168, 76, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%,
      rgba(58, 92, 212, 0.08), transparent 60%);
}

/* ============================================================
   PRICING CARD — featured pulse border
   ============================================================ */
.pricing-card.featured {
  border-color: rgba(201, 168, 76, 0.50);
  animation: pricing-pulse 3s ease-in-out infinite;
}

@keyframes pricing-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.25), 0 12px 40px rgba(0,0,0,0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.45), 0 12px 60px rgba(0,0,0,0.5);
  }
}

/* ============================================================
   FOOTER — add nebula glow accent
   ============================================================ */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 76, 0.40),
    rgba(108, 63, 207, 0.40),
    rgba(201, 168, 76, 0.40),
    transparent);
}

/* ============================================================
   TESTIMONIALS — star rating glow
   ============================================================ */
.testimonial-stars {
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.60);
  letter-spacing: 2px;
}

/* ============================================================
   RESPONSIVE HELPERS (additions)
   ============================================================ */
@media (max-width: 600px) {
  .hero-content { padding: 0 8px; }
  .hero-crystal { display: none; }
  .about-visual { max-width: 280px; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}

/* ============================================================
   CYRILLIC FONT — Philosopher for Russian UI
   Cinzel is Latin-only; Philosopher covers Cyrillic with
   the same classical serif character.
   ============================================================ */
html[data-lang="ru"] {
  --font-display: 'Philosopher', 'Cormorant Garamond', serif;
  --font-deco:    'Philosopher', 'Cormorant Garamond', serif;
}

/* ============================================================
   PREDICTION MODAL
   ============================================================ */
.prediction-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 8, 0.95);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(3, 0, 8, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--bg-void);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-swiper-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
  min-height: 0;
}

.modal-swiper {
  width: 100%;
  max-width: 600px;
  height: 100%;
}

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

.modal-swiper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.modal-info {
  background: var(--bg-card);
  border-top: 1px solid var(--border-glass);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
}

.modal-info-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.modal-zodiac-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.30);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  width: fit-content;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin: 0 auto;
}

.modal-caption {
  font-size: 15px;
  color: var(--text-primary);
  font-family: var(--font-italic);
  font-style: italic;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.modal-date {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin: 0 auto;
}

/* Modal Swiper controls */
.modal-swiper .swiper-button-prev,
.modal-swiper .swiper-button-next {
  color: var(--gold);
  background: rgba(3, 0, 8, 0.8);
  border: 1px solid var(--border-gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-swiper .swiper-button-prev:hover,
.modal-swiper .swiper-button-next:hover {
  background: var(--gold);
  color: var(--bg-void);
}

.modal-swiper .swiper-button-prev::after,
.modal-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

.modal-swiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}

.modal-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive modal */
@media (min-width: 768px) {
  .modal-content {
    flex-direction: row;
    max-width: 1200px;
    height: auto;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .modal-close {
    top: 16px;
    right: 16px;
  }
  
  .modal-swiper-wrapper {
    flex: 1;
    padding: 80px 40px 80px 80px;
    min-height: 500px;
  }
  
  .modal-info {
    width: 340px;
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid var(--border-glass);
    padding: 32px 24px;
    display: flex;
    align-items: center;
  }
  
  .modal-info-content {
    text-align: left;
    gap: 12px;
  }
  
  .modal-zodiac-badge {
    margin: 0;
  }
  
  .modal-caption {
    margin: 0;
  }
  
  .modal-date {
    margin: 0;
  }
}
