/* MYSTIC — Official Mobile App Website Stylesheet (100% Responsive & Cosmic Dark Theme) */

:root {
  --bg-dark: #05070e;
  --bg-card: rgba(13, 19, 35, 0.7);
  --bg-card-hover: rgba(22, 32, 58, 0.9);
  --border-cyan: rgba(0, 229, 255, 0.25);
  --border-cyan-glow: rgba(0, 229, 255, 0.6);
  --neon-cyan: #00e5ff;
  --neon-blue: #0088ff;
  --neon-purple: #9d4edd;
  --text-main: #f0f4f8;
  --text-muted: #8e9bb0;
  --gold-accent: #ffd166;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

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

/* Background Canvas & Ambient Glow */
#space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(157, 78, 221, 0.08) 50%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.glow-top-left {
  top: -10vw;
  left: -10vw;
}

.glow-bottom-right {
  bottom: -10vw;
  right: -10vw;
}

/* Typography & General Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 50%, #b8c0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gold {
  background: linear-gradient(135deg, #fff3b0 0%, #ffd166 50%, #f77f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-cyan-glow);
  box-shadow: 0 25px 60px rgba(0, 229, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 7, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-cyan);
}

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

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

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--neon-cyan);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00e5ff 0%, #0077ff 100%);
  color: #05070e;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-cyan);
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--neon-cyan);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 90px;
  position: relative;
}

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

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* App Screenshot Gallery - Compact & Fixed Mobile Proportions */
.screenshot-container {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 10px 0 30px;
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.screenshot-item {
  width: 220px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  border: 2px solid var(--border-cyan);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.15);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: #090e1a;
}

.screenshot-card:hover .screenshot-item {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.35);
}

.screenshot-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-cyan);
  white-space: nowrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: rgba(13, 19, 35, 0.8);
  border: 1px solid var(--border-cyan);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.2);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  fill: var(--neon-cyan);
}

.store-badge-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.store-badge-text strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--neon-cyan);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}

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

.hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0, 229, 255, 0.25), 0 0 50px rgba(157, 78, 221, 0.2);
}

/* Base Section Layout */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

/* PDF Sections Showcase Grid */
.pdf-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.pdf-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pdf-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pdf-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-cyan);
}

.pdf-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--neon-cyan);
}

.pdf-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.pdf-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pdf-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pdf-card-features li {
  font-size: 0.88rem;
  color: #c0caf5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdf-card-features li::before {
  content: "✦";
  color: var(--neon-cyan);
}

/* Interactive Demos Section */
.demo-section {
  background: rgba(7, 11, 20, 0.75);
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.demo-container {
  min-height: 480px;
  position: relative;
}

.demo-panel {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.demo-panel.active {
  display: block;
}

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

/* Tarot 3D Demo */
.tarot-demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
}

.tarot-cards-area {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.tarot-card-3d {
  width: 220px;
  height: 350px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.tarot-card-3d.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  border: 2px solid var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.card-back {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-front {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #111a2e 0%, #090e1a 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-front-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.tarot-info h3 {
  font-size: 1.6rem;
  color: var(--neon-cyan);
  margin-bottom: 12px;
}

.tarot-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Zodiac Horoscope Selector Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.zodiac-item {
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.zodiac-item:hover, .zodiac-item.active {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
}

.zodiac-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
  display: block;
}

.zodiac-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.horoscope-display {
  padding: 28px;
  background: rgba(5, 8, 16, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cyan);
}

/* Compatibility Calculator */
.compatibility-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

.select-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.select-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neon-cyan);
}

.styled-select {
  padding: 14px 18px;
  background: rgba(13, 19, 35, 0.9);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.meter-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 6px;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #00e5ff 0%, #9d4edd 100%);
  width: 0%;
  transition: width 1s ease-out;
}

/* Moon Phase Widget */
.moon-widget-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px;
  align-items: center;
}

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

.moon-graphic {
  font-size: 5.5rem;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
}

.moon-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.score-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.score-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

/* FAQ Accordion Section */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: rgba(13, 19, 35, 0.8);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.faq-question:hover, .faq-item.active .faq-question {
  background: rgba(22, 32, 58, 0.95);
  border-color: var(--neon-cyan);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px 24px;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--gold-accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.review-text {
  color: #d1d9e6;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

/* Legal Compliance Section */
.compliance-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0;
  background: rgba(3, 5, 10, 0.95);
}

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

.compliance-card {
  padding: 30px;
}

.compliance-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compliance-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Modal Windows for Privacy Policy & Terms */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 5, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  max-width: 850px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  background: #0b101d;
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  color: #d1d9e6;
  box-shadow: 0 25px 80px rgba(0, 229, 255, 0.3);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
}

.modal-body h3 {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin: 24px 0 12px;
}

.modal-body p, .modal-body li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #a0aec0;
  margin-bottom: 12px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  outline: none;
  font-size: 0.95rem;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* Footer */
footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #03050a;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* RESPONSIVE BREAKPOINTS (Mobile, Tablet, Large Desktop) */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content p {
    margin: 0 auto 36px;
  }

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

  .tarot-demo-layout, .compatibility-box, .moon-widget-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 7, 14, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-cyan);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .moon-scores {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal-content {
    padding: 24px;
  }
}
