:root {
    --night-blue: #0b1026;
    --deep-sky: #1b2735;
    --stardust-silver: #e0e0e0;
    --gold-accent: #f4d03f;
    --heavenly-white: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--night-blue);
    color: var(--stardust-silver);
    font-family: var(--font-body);
    background-image: radial-gradient(ellipse at bottom, var(--deep-sky) 0%, var(--night-blue) 100%);
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1.hero-title {
    font-size: 3.5rem;
    color: var(--heavenly-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

h2.section-title {
    font-size: 2.5rem;
    color: var(--heavenly-white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

h2.section-title::after {
    content: '✧';
    display: block;
    font-size: 2rem;
    color: var(--gold-accent);
    margin-top: 10px;
}

/* Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

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

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Components */
.stardust-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassy dark */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--stardust-silver);
    transition: transform 0.3s;
}

.stardust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-halo {
    width: 80px;
    height: 80px;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.2);
}

/* Buttons */
.btn-stardust {
    background: transparent;
    color: var(--heavenly-white);
    border: 1px solid var(--heavenly-white);
    padding: 12px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s;
}

.btn-stardust:hover {
    background: var(--heavenly-white);
    color: var(--night-blue);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* Countdown */
.stardust-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.time-box {
    text-align: center;
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--gold-accent);
}

.time-box small {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-star {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--heavenly-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}