/* ============================================
   ASTROCARTOGRAPHY - COSMIC THEME
   Dark mystical aesthetic with gold accents
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --color-deep-purple: #1a0a2e;
    --color-midnight: #0d0221;
    --color-cosmic-blue: #16213e;
    --color-indigo: #2d1b4e;
    
    /* Gold Accents */
    --color-gold: #f4d03f;
    --color-gold-light: #f9e79f;
    --color-gold-dark: #b7950b;
    --color-sun-gold: #ffd700;
    
    /* Planetary Colors */
    --color-sun: #ff9500;
    --color-moon: #c0c0c0;
    --color-venus: #e91e63;
    --color-mars: #ff5252;
    --color-jupiter: #9c27b0;
    --color-saturn: #795548;
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-deep-purple) 50%, var(--color-cosmic-blue) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-sun-gold) 50%, var(--color-gold-light) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(244, 208, 63, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-primary);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Starfield Canvas Background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* ============================================
   NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 2, 33, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
}

.logo i {
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-gold);
    background: rgba(244, 208, 63, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-lg) var(--space-sm);
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(156, 39, 176, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(244, 208, 63, 0.2) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-icon {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.title-accent {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--color-midnight);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-glow);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.5);
}

.zodiac-wheel {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    color: rgba(244, 208, 63, 0.05);
    animation: rotate-slow 60s linear infinite;
}

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

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-header i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* ============================================
   INPUT SECTION
   ============================================ */
.input-section {
    padding: var(--space-xl) var(--space-sm);
    position: relative;
}

.form-card {
    max-width: 600px;
    margin: 0 auto var(--space-md);
    border-radius: 24px;
    padding: var(--space-md);
}

.birth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group label i {
    color: var(--color-gold);
    width: 20px;
}

.form-group input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(244, 208, 63, 0.2);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--gradient-gold);
    color: var(--color-midnight);
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    margin-top: var(--space-xs);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Legend Card */
.legend-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    padding: var(--space-md);
}

.legend-card h3 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--color-gold);
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px currentColor;
}

.legend-item.sun .legend-dot { background: var(--color-sun); color: var(--color-sun); }
.legend-item.moon .legend-dot { background: var(--color-moon); color: var(--color-moon); }
.legend-item.venus .legend-dot { background: var(--color-venus); color: var(--color-venus); }
.legend-item.mars .legend-dot { background: var(--color-mars); color: var(--color-mars); }
.legend-item.jupiter .legend-dot { background: var(--color-jupiter); color: var(--color-jupiter); }
.legend-item.saturn .legend-dot { background: var(--color-saturn); color: var(--color-saturn); }

.legend-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.legend-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: var(--space-xl) var(--space-sm);
    background: rgba(0, 0, 0, 0.2);
}

.results-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-container {
    height: 600px;
    width: 100%;
    background: #1a1a2e;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 2, 33, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.map-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--color-gold);
    animation: spin 1s linear infinite;
}

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

.map-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Interpretation Panel */
.interpretation-panel {
    border-radius: 20px;
    padding: var(--space-md);
    max-height: 600px;
    overflow-y: auto;
}

.interpretation-panel::-webkit-scrollbar {
    width: 8px;
}

.interpretation-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.interpretation-panel::-webkit-scrollbar-thumb {
    background: rgba(244, 208, 63, 0.5);
    border-radius: 4px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
    margin-bottom: var(--space-sm);
}

.panel-header i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
}

.empty-state {
    text-align: center;
    padding: var(--space-md);
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gold);
    opacity: 0.5;
}

/* Interpretation Cards */
.interpretation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    border-left: 3px solid;
    transition: all var(--transition-fast);
}

.interpretation-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.interpretation-card.sun { border-color: var(--color-sun); }
.interpretation-card.moon { border-color: var(--color-moon); }
.interpretation-card.venus { border-color: var(--color-venus); }
.interpretation-card.mars { border-color: var(--color-mars); }
.interpretation-card.jupiter { border-color: var(--color-jupiter); }
.interpretation-card.saturn { border-color: var(--color-saturn); }
.interpretation-card.crossing { border-color: var(--color-gold); }

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: 0.5rem;
}

.card-header i {
    font-size: 1.2rem;
}

.interpretation-card.sun .card-header i { color: var(--color-sun); }
.interpretation-card.moon .card-header i { color: var(--color-moon); }
.interpretation-card.venus .card-header i { color: var(--color-venus); }
.interpretation-card.mars .card-header i { color: var(--color-mars); }
.interpretation-card.jupiter .card-header i { color: var(--color-jupiter); }
.interpretation-card.saturn .card-header i { color: var(--color-saturn); }
.interpretation-card.crossing .card-header i { color: var(--color-gold); }

.card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.interpretation-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.location-tag {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(244, 208, 63, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-xl) var(--space-sm);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    padding: var(--space-md);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-medium);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.about-card i {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.about-card:nth-child(1) i { color: var(--color-sun); }
.about-card:nth-child(2) i { color: var(--color-moon); }
.about-card:nth-child(3) i { color: var(--color-venus); }
.about-card:nth-child(4) i { color: var(--color-mars); }

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
    color: var(--color-gold);
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-md) var(--space-sm);
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(244, 208, 63, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    margin-left: var(--space-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Leaflet Custom Styles */
.leaflet-container {
    font-family: var(--font-body);
    background: #0d0221;
}

.leaflet-popup-content-wrapper {
    background: rgba(26, 10, 46, 0.95);
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.leaflet-popup-tip {
    background: rgba(26, 10, 46, 0.95);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .results-container {
        grid-template-columns: 1fr;
    }
    
    .interpretation-panel {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-links a span {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .zodiac-wheel {
        display: none;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
    }
    
    .footer-brand p {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .form-card,
    .legend-card {
        padding: var(--space-sm);
    }
    
    .interpretation-panel {
        padding: var(--space-sm);
    }
}

/* ── How It Works Section ── */
.how-section {
    padding: 5rem 0;
    position: relative;
}

.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.25);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #7b1fa2, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: #fff;
    box-shadow: 0 0 12px rgba(156, 39, 176, 0.5);
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ce93d8, #7b1fa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #ce93d8;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.how-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.how-arrow {
    color: rgba(156, 39, 176, 0.5);
    font-size: 1.4rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .how-steps { flex-direction: column; align-items: center; }
    .how-arrow { transform: rotate(90deg); }
    .how-step { max-width: 100%; width: 100%; }
}

/* ── Upgrade Banner ── */
.upgrade-banner {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(74,20,140,0.4), rgba(30,5,70,0.6));
    border: 1px solid rgba(156,39,176,0.45);
    border-radius: 12px;
    text-align: center;
}
.upgrade-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.upgrade-banner h4 {
    font-family: 'Cinzel', serif;
    color: #ce93d8;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.upgrade-banner p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.upgrade-btn {
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, #7b1fa2, #4a148c);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(156,39,176,0.35);
}
.upgrade-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(156,39,176,0.5); }

/* ── Mobile Nav Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ce93d8;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8, 2, 22, 0.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a {
        font-size: 1.3rem;
        font-family: 'Cinzel', serif;
        letter-spacing: 2px;
        color: #ce93d8;
    }

    .nav {
        justify-content: space-between;
        padding: 0 1rem;
        position: relative;
        z-index: 1001;
    }

    .how-steps { flex-direction: column; align-items: center; }
    .how-arrow { transform: rotate(90deg); }
    .how-step { max-width: 100%; width: 100%; }

    .paywall-card { padding: 2rem 1.2rem; }
    .hero-title { font-size: 2rem; }
    .results-container { flex-direction: column; }
}
