@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-color: #050505;
    --acc-color: #D4AF37;
    --acc-glow: rgba(212, 175, 55, 0.12);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #050505;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

body {
    background-color: var(--bg-color);
    color: white;
    font-family: 'Outfit', sans-serif;
    position: relative;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.03;
    pointer-events: none;
    z-index: 100;
}

/* Background Effects */
/* Background Glow removed */

.bg-stars {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 150px 70px, rgba(212, 175, 55, 0.4), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 280px 220px, #ffffff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 350px 350px;
    opacity: 0.35;
    z-index: 0;
}

.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.star-sparkle {
    position: absolute;
    width: var(--size, 15px);
    height: var(--size, 15px);
    background: white;
    clip-path: polygon(50% 0%, 52% 48%, 100% 50%, 52% 52%, 50% 100%, 48% 52%, 0% 50%, 48% 48%);
    animation: twinkle 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    filter: drop-shadow(0 0 2px white) drop-shadow(0 0 5px var(--acc-color));
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

#mantra-vortex {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(0.4px) drop-shadow(0 0 15px rgba(255, 165, 0, 0.4));
}

.dot-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gold weave of Sanskrit characters */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E .t %7B fill: rgba(212, 175, 55, 0.05); font-family: serif; font-size: 5px; text-anchor: middle; %7D %3C/style%3E%3Ctext x='7.5' y='12' class='t'%3Eॐ%3C/text%3E%3Ctext x='22.5' y='12' class='t'%3Eअ%3C/text%3E%3Ctext x='37.5' y='12' class='t'%3Eक%3C/text%3E%3Ctext x='52.5' y='12' class='t'%3Eश्री%3C/text%3E%3Ctext x='7.5' y='27' class='t'%3Eइ%3C/text%3E%3Ctext x='22.5' y='27' class='t'%3Eम%3C/text%3E%3Ctext x='37.5' y='27' class='t'%3Eय%3C/text%3E%3Ctext x='52.5' y='27' class='t'%3Eर%3C/text%3E%3Ctext x='7.5' y='42' class='t'%3Eल%3C/text%3E%3Ctext x='22.5' y='42' class='t'%3Eव%3C/text%3E%3Ctext x='37.5' y='42' class='t'%3Eस%3C/text%3E%3Ctext x='52.5' y='42' class='t'%3Eह%3C/text%3E%3Ctext x='7.5' y='57' class='t'%3Eत%3C/text%3E%3Ctext x='22.5' y='57' class='t'%3Eप%3C/text%3E%3Ctext x='37.5' y='57' class='t'%3Eन%3C/text%3E%3Ctext x='52.5' y='57' class='t'%3Eज%3C/text%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.planet-bg {
    position: fixed;
    bottom: -32vw;
    left: 50%;
    width: 65vw;
    height: 65vw;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    filter: brightness(0.8);
    border-radius: 50%;
    transform: translate(calc(-50% + var(--mx, 0px)), var(--my, 0px)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.15s ease-out;
    perspective: 1000px;
}

.planet-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('night_earth.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    animation: rotate-planet 600s linear infinite;
}



.planet-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.planet-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
}

.planet-side {
    position: fixed;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    filter: blur(0.5px) brightness(0.95);
    /* Removed mask-image to prevent clipping of rings and atmospheric glows */
    border-radius: 50%;
    transform: translate(var(--mx, 0px), var(--my, 0px)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.1s ease-out, opacity 0.8s ease-in-out, filter 0.8s ease-in-out;
    perspective: 1000px;
}

.planet-side.planet-hidden {
    opacity: 0;
    filter: blur(4px) brightness(0);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle cinematic tint to improve legibility of hero text */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 5;
    pointer-events: none;
    backdrop-filter: brightness(0.9);
}

.planet-earth {
    top: -8vw;
    left: -8vw;
    width: 27vw;
    height: 27vw;
    background-image: url('moon.png');
    animation: drift-v2 140s linear infinite;
}

@keyframes drift-v1 {
    from {
        margin-top: 0;
        margin-left: 0;
        transform: rotate(0deg);
    }

    to {
        margin-top: 40px;
        margin-left: 30px;
        transform: rotate(3deg);
    }
}

@keyframes drift-v2 {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(20px, 30px) rotate(360deg);
    }
}

.planet-earth::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
    filter: blur(40px);
    z-index: -1;
}

.planet-jupiter {
    top: -8vw;
    right: -8vw;
    width: 27vw;
    height: 27vw;
    background-image: url('jupiter.png');
    animation: drift-v2-rev 120s linear infinite;
}

@keyframes drift-v2-rev {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(-20px, -30px) rotate(-360deg);
    }
}

.planet-jupiter::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
    filter: blur(50px);
    z-index: -1;
    transform: translate(calc(var(--mx, 0px) * 0.5), calc(var(--my, 0px) * 0.5));
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 400;
    /* Reduced from 700 for a more elegant Roman look */
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo span {
    color: var(--acc-color);
}

.hero-logo {
    height: clamp(40px, 6dvh, 70px);
    width: auto;
    margin-bottom: clamp(16px, 2dvh, 30px);
    z-index: 10;
}

nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: white;
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Layout */
main {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: clamp(24px, 5vh, 50px) 4% env(safe-area-inset-bottom, 20px);
    overflow: hidden;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero h1,
.hero p,
.countdown-timer {
    animation: fadeInUp 1s ease-out forwards;
}

/* Countdown Timer */
.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    gap: clamp(0.5rem, 3vw, 1.4rem);
    align-items: center;
    margin-bottom: clamp(4.5rem, 14vh, 9rem);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    font-weight: 300;
    color: var(--acc-color);
    line-height: 1;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.time-block label {
    font-size: 0.65rem;
    /* Slightly larger labels for balance */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.timer-sep {
    font-family: inherit;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 200;
    margin: 0 0.5rem;
}

/* Typography */
h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    white-space: normal;
    text-align: center;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

h1.cinematic-hidden {
    opacity: 0;
    transform: translateY(15px) scale(0.99);
    filter: blur(12px);
}

.hero-title-word {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-word, .hero-subtitle-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    line-height: inherit;
    vertical-align: bottom;
}

.hero-title-word.visible, .hero-subtitle-word.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--acc-color);
    margin: 0 auto 1rem auto;
    max-width: 800px;
    line-height: 1.4;
    text-align: center;
    opacity: 1;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.hero-subtitle.cinematic-hidden {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(8px);
}

.hero-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 0;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
}

p.hero-desc {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    /* Added to ensure text itself is centered */
}

/* Form Styles */
.waitlist-container {
    background: rgba(255, 255, 255, 0.12);
    /* Slightly more opaque for better glass definition */
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    backdrop-filter: blur(25px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem;
    border-radius: 100px;
    display: flex;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1.2s ease-out forwards;
}

.waitlist-container:focus-within {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1), 0 30px 60px rgba(0, 0, 0, 0.6);
}

input[type="email"] {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 1rem 1.5rem;
    flex: 1;
    font-size: 1rem;
    font-family: inherit;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

button.join-btn {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

button.join-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.5);
    filter: brightness(1.1);
}

.social-proof {
    margin-top: clamp(2rem, 5vh, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    max-width: 480px;
}

.progress-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.spots-taken {
    color: var(--acc-color);
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    width: 0%; /* Animated via JS */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.avatar-group {
    display: flex;
    margin-left: 0.5rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    margin-left: -10px;
    background: var(--glass-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.proof-text span.highlight {
    color: white;
    font-weight: 600;
}

.proof-text .highlight {
    color: var(--acc-color);
}

/* Success State */
.success-msg {
    display: none;
    color: var(--acc-color);
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    html,
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        min-height: 100%;
    }

    main {
        height: auto;
        min-height: 100dvh;
        overflow: visible;
        padding: calc(env(safe-area-inset-top, 20px) + 8px) 4% env(safe-area-inset-bottom, 15px);
    }

    header {
        display: none; /* Hide empty header to save space on mobile */
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-logo {
        height: 44px;
        margin-bottom: 12px;
    }

    .timer-label {
        margin-bottom: 0.25rem;
    }

    h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-bottom: 0.6rem;
        white-space: normal;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        width: 95%;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-top: 2.2rem;
        margin-bottom: 0;
        letter-spacing: 0.2em;
        line-height: 1.25;
    }

    .tagline-break {
        display: block;
        margin-top: 0.5rem;
    }

    .hero {
        text-align: center;
        align-items: center;
    }

    .countdown-timer {
        gap: 0.6rem;
        padding: 0;
        margin-bottom: clamp(2rem, 6dvh, 3.5rem);
        justify-content: center;
    }

    .social-proof {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        margin-top: 1.5rem;
    }

    .waitlist-container {
        flex-direction: column;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 1.2rem;
    }

    .waitlist-container:focus-within {
        box-shadow: none;
        border-color: transparent;
    }

    input[type="email"] {
        width: 100%;
        flex: none;
        text-align: center;
        padding: 0.8rem 0;
        background: transparent;
        border: none;
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        font-size: 1.1rem;
        transition: var(--transition-smooth);
    }

    input[type="email"]:focus {
        border-bottom-color: var(--acc-color);
        box-shadow: none;
    }

    button.join-btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem;
    }

    .planet-bg {
        width: 140vw;
        height: 140vw;
        bottom: -55vw;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        opacity: 0.65;
        z-index: 1;
        filter: brightness(0.85);
    }

    .planet-earth {
        width: 60vw;
        height: 60vw;
        top: -15vw;
        left: -25vw;
    }

    .planet-jupiter {
        width: 60vw;
        height: 60vw;
        top: -15vw;
        right: -25vw;
    }

    .planet-sun,
    .planet-mars,
    .planet-venus,
    .planet-mercury,
    .planet-rahu,
    .planet-ketu {
        display: none;
    }

    .orbit-earth {
        width: 75vw;
        height: 75vw;
        top: -22.5vw;
        left: -32.5vw;
    }

    .orbit-jupiter {
        width: 75vw;
        height: 75vw;
        top: -22.5vw;
        right: -32.5vw;
    }

    .orbit-moon {
        width: 155vw;
        height: 155vw;
        bottom: -62.5vw;
        left: 50%;
        transform: translateX(-50%);
    }

    footer {
        position: relative;
        bottom: auto;
        padding: 2rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero animation */

@keyframes rotate-planet {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* The animation is now on .planet-inner */

footer {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    padding: 1.5rem 0;
    pointer-events: auto;
    z-index: 20;
}

.footer-links {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-sep {
    color: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
}

/* Orbiting Gold Lights */
.orbit-light {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.orbit-ring {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    /* Flip gradient so tail follows head in clockwise rotation */
    background: conic-gradient(from 0deg, transparent 0%, transparent 60%, rgba(212, 175, 55, 0.05) 70%, rgba(212, 175, 55, 0.4) 90%, #FFD700 100%);
    -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 2.5px), black calc(100% - 1.5px));
    mask: radial-gradient(closest-side, transparent calc(100% - 2.5px), black calc(100% - 1.5px));
}

.orbit-head {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px; /* Thinner head */
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px 2px #FFD700, 0 0 15px 4px rgba(212, 175, 55, 0.4);
}

.orbit-earth {
    top: -11.5vw;
    left: -11.5vw;
    width: 34vw;
    height: 34vw;
}

.orbit-jupiter {
    top: -11.5vw;
    right: -11.5vw;
    width: 34vw;
    height: 34vw;
}

.orbit-moon {
    bottom: -35.5vw;
    left: 50%;
    width: 72vw;
    height: 72vw;
}

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

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

@keyframes spin-moon {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@media (max-width: 768px) {
    #mantra-vortex {
        filter: blur(0.5px) drop-shadow(0 0 30px rgba(255, 165, 0, 0.7));
    }
}
