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

body {
    background: linear-gradient(135deg, #07011d 5%, #1a0f2e 25%, #01111df9 70%, #0f1a2e 100%);
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
    position: relative;
}

#orb {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 40%, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.9) 60%, 
        rgba(0, 0, 0, 0.7) 100%);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.25),
        0 0 80px rgba(255, 255, 200, 0.18),
        inset 0 8px 30px rgba(0, 0, 0, 0.85);
    margin: 0 auto 30px;
    position: relative;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* Welcome Text Styles */
#welcomeText {
    position: fixed;
    top: 30px;
    left: 20px;
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    opacity: 1;
}

#welcomeText h1 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 42px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 16px rgba(255, 255, 255, 0.2);
    margin: 0 0 8px 0;
    font-family: 'Times New Roman', 'Georgia', 'Palatino', serif;
    font-style: normal;
    line-height: 1.2;
}

#welcomeText p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
    margin: 0;
    font-family: 'Times New Roman', 'Georgia', 'Palatino', serif;
    font-style: italic;
    line-height: 1.4;
    text-transform: lowercase;
    font-variant: small-caps;
}

#welcomeText.hidden {
    opacity: 0;
    transform: translateY(-20px);
}

#orb:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.25),
        0 0 80px rgba(255, 255, 200, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
}

#orb.active {
    animation: eclipsePulse 2.5s infinite;
}

#orb.pulsing {
    animation: eclipsePulse 0.5s infinite;
}

@keyframes eclipsePulse {
    0% {
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.15),
            0 0 40px rgba(255, 255, 200, 0.12),
            0 0 60px rgba(255, 255, 150, 0.08),
            0 0 80px rgba(255, 255, 100, 0.05),
            inset 0 0 30px rgba(0, 0, 0, 0.8);
    }
    25% {
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 0.25),
            0 0 60px rgba(255, 255, 200, 0.18),
            0 0 90px rgba(255, 255, 150, 0.12),
            0 0 120px rgba(255, 255, 100, 0.08),
            inset 0 0 35px rgba(0, 0, 0, 0.8);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 255, 255, 0.35),
            0 0 80px rgba(255, 255, 200, 0.25),
            0 0 120px rgba(255, 255, 150, 0.18),
            0 0 160px rgba(255, 255, 100, 0.12),
            inset 0 0 40px rgba(0, 0, 0, 0.8);
    }
    75% {
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 0.25),
            0 0 60px rgba(255, 255, 200, 0.18),
            0 0 90px rgba(255, 255, 150, 0.12),
            0 0 120px rgba(255, 255, 100, 0.08),
            inset 0 0 35px rgba(0, 0, 0, 0.8);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.15),
            0 0 40px rgba(255, 255, 200, 0.12),
            0 0 60px rgba(255, 255, 150, 0.08),
            0 0 80px rgba(255, 255, 100, 0.05),
            inset 0 0 30px rgba(0, 0, 0, 0.8);
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    #orb {
        animation: none !important;
    }
}

#startbtn {
    background: linear-gradient(45deg, #4b0082, #8a2be2);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    letter-spacing: 1px;
}

#startbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #8a2be2, #4b0082);
}

#startbtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#startbtn.running {
    background: linear-gradient(45deg, #4b0082, #8a2be2);
    animation: buttonPulse 1s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}


/* Celestial Menu Styles */
#celestialMenu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

#meteorIcon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
}

.menu-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

#meteorIcon:hover .menu-dot {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

#meteorIcon:hover {
    transform: scale(1.1);
}

#dropdownContent {
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#dropdownContent.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    padding-left: 25px;
}

/* Section Styles */
#aboutSection, #supportSection {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

#aboutSection h2, #supportSection h2 {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    font-size: 28px;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 400;
    text-align: center;
}

#aboutSection p, #supportSection p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
}

#aboutSection p {
    text-transform: none;
    font-variant: normal;
    letter-spacing: 0.2px;
}

#dropdownContent { display: none; }
#dropdownContent.show { display: block; }
.hidden { display: none; }

/* Faded state for smooth hide/show */
#welcomeText.faded, #celestialMenu.faded {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

#celestialMenu, #dropdownContent, .menu-item {
	font-family: 'Times New Roman', 'Georgia', 'Palatino', serif;
}

