:root {
    --bg-dark: #0a0410;
    --bg-mid: #1d0f35;
    --bg-light: #2c1b4d;
    --text-main: #f0f2f5;
    --text-muted: #c2c6d1;
    --accent-gold: #FFD700;
    --accent-gold-dark: #b89a32;
    --accent-glow: rgba(255, 215, 0, 0.5);
    --glass-bg: rgba(20, 15, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 0;
}

/* Enhanced Deep Space Background */
.stars-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: 
        radial-gradient(circle at 15% 50%, rgba(44, 27, 77, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(76, 29, 149, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
    z-index: -2;
}

.stars-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 160px 120px, #ddd, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 300px 200px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 10px 300px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: slowDrift 100s linear infinite;
    opacity: 0.7;
}

@keyframes slowDrift {
    from { transform: translateY(0); }
    to { transform: translateY(-400px); }
}

.container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 10;
    margin: 40px auto;
    padding: 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-left: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.95);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.glass-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative;
    pointer-events: all;
}

/* Typography */
.mystic-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Spacer to push form down */
.intro-spacer {
    margin: 40px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

/* The Name Highlight */
.name-highlight {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    display: inline-block;
    letter-spacing: 1px;
    border-bottom: 1px dashed var(--accent-gold);
    padding-bottom: 2px;
}

/* Moon Graphics & Aura */
.moon-aura {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.moon-aura::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: breathe 4s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

.moon-graphic {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 30px #fff, inset -15px -15px 25px rgba(0,0,0,0.3);
    z-index: 2;
}

.moon-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px #fff, inset -10px -10px 15px rgba(0,0,0,0.2);
}

/* Benefits List on Step 1 */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto 20px;
    max-width: 450px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 1.05rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.benefit-item .icon {
    font-size: 1.4rem;
}

/* Action Box & Form */
.action-box {
    background: rgba(0,0,0,0.3);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
    margin-top: 20px;
}

.call-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

input[type="text"] {
    width: 100%;
    padding: 18px 25px;
    border-radius: 14px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.6);
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    input[type="text"] {
        font-size: 1.1rem;
        padding: 15px;
    }
}

input[type="text"]:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(226, 192, 68, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: normal;
}

.security-text {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
}

.testimonial-small {
    margin-top: 20px;
    font-style: italic;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reading Panel Typography & Layout */
.reading-panel {
    text-align: left;
}

.reading-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.welcome-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.reading-content .mystic-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 35px;
}

.body-text, .lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(0,0,0,0.3));
    border: 1px solid rgba(255,215,0,0.4);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.highlight-box strong {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.question-text {
    font-size: 1.3rem;
    font-style: italic;
    margin: 40px 0;
    line-height: 1.6;
    text-align: center;
    border-left: 4px solid var(--accent-gold);
    border-right: 4px solid var(--accent-gold);
    padding: 0 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 20px;
}

.story-quote {
    position: relative;
    margin: 40px 0;
    padding: 30px 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    font-family: serif;
    color: rgba(255,215,0,0.2);
    line-height: 1;
}

/* Buttons & Links */
.cta-button {
    background: linear-gradient(135deg, var(--accent-gold), #ff9900);
    color: #1a0b2e;
    border: none;
    padding: 20px 35px;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
    white-space: normal;
    text-align: center;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 15px 20px;
        font-size: 1rem;
        gap: 8px;
    }
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 153, 0, 0.5);
    background: linear-gradient(135deg, #ffed4a, #ffad33);
}

.main-video-btn {
    font-size: 1.3rem;
    padding: 25px 30px;
    border-radius: 50px;
    animation: floatBtn 4s ease-in-out infinite;
}

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

.pulse-glow {
    position: relative;
}

.pulse-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    animation: pulseObj 2s infinite;
}

@keyframes pulseObj {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.cta-link {
    display: block;
    text-align: center;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0 40px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

/* Warnings */
.warning-box {
    margin-top: 40px;
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    border-radius: 12px;
    padding: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffcccc;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Zodiac Calculator */
.zodiac-calculator {
    margin-top: 45px;
    padding: 35px 25px;
    background: linear-gradient(145deg, rgba(25, 12, 45, 0.7), rgba(15, 6, 25, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(255,215,0,0.05), 0 15px 40px rgba(0,0,0,0.6);
    text-align: center;
    position: relative;
}

.zodiac-calculator::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.zodiac-text {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    font-weight: 500;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

#dob-input {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,215,0,0.4);
    background: rgba(0,0,0,0.6);
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    outline: none;
    font-size: 1.25rem;
    text-align: center;
    color-scheme: dark;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-height: 50px;
}

#dob-input:focus {
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.btn-small {
    width: 100%;
    max-width: 320px;
    background: linear-gradient(135deg, var(--accent-gold), #ff9900);
    color: #1a0b2e;
    border: none;
    padding: 16px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

#zodiac-result {
    display: none;
    margin-top: 30px;
    padding: 30px 20px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
    overflow: hidden;
}

#zodiac-result::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: rotateAura 12s linear infinite;
    z-index: 0;
    pointer-events: none;
}

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

.zodiac-icon {
    position: relative;
    z-index: 1;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.8));
    animation: floatIcon 3s infinite alternate ease-in-out;
}

@keyframes floatIcon {
    from {transform: translateY(0);}
    to {transform: translateY(-10px);}
}

.zodiac-name {
    position: relative;
    z-index: 1;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: 0 0 25px rgba(255,215,0,0.5);
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Footer Section */
.site-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 40px 20px 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-copy {
    line-height: 1.6;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.9s; }
.delay-6 { transition-delay: 1.1s; }
.delay-7 { transition-delay: 1.3s; }
.delay-8 { transition-delay: 1.5s; }
.delay-9 { transition-delay: 1.7s; }

/* Responsive */
@media (max-width: 600px) {
    .glass-panel { padding: 40px 20px; }
    .mystic-title { font-size: 2.1rem; }
    .body-text, .lead-text { font-size: 1.05rem; }
    .main-video-btn { font-size: 1.1rem; padding: 20px; }
    .benefits-list { gap: 10px; }
    .benefit-item { font-size: 0.95rem; padding: 12px 15px; }
    .footer-links a { margin: 5px 10px; display: inline-block; }
}
