:root {
    --bg-center: #4a3b7e;
    --bg-edge: #2c2250;
    --gold: #ffd25a;
    --text-white: #ffffff;
    --text-muted: #d1cbe3;
    --lamp-glass: rgba(255, 210, 90, 0.15);
}

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

body {
    background: radial-gradient(circle at center, var(--bg-center) 0%, var(--bg-edge) 80%);
    font-family: "Inter", sans-serif;
    color: var(--text-white);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    background-color: var(--text-white);
    border-radius: 50%;
    animation: twinkle infinite alternate, drift linear infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0.1;
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    100% {
        opacity: 0.9;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }
}

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

.lamp-container {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    transform-origin: top center;
    animation: swing 6s ease-in-out infinite alternate;
}

.left-lamp {
    left: 15%;
    animation-delay: 0s;
}

.right-lamp {
    right: 20%;
    animation-delay: -3s;
}

.wire {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 210, 90, 0.5), transparent);
}

.lamp-body {
    width: 24px;
    height: 35px;
    background: var(--lamp-glass);
    border: 1px solid rgba(255, 210, 90, 0.3);
    border-radius: 12px 12px 4px 4px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.inner-glow {
    width: 6px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgba(255, 210, 90, 0.6);
    animation: flicker 2s infinite alternate;
}

@keyframes swing {
    0% {
        transform: rotate(-4deg);
    }
    100% {
        transform: rotate(4deg);
    }
}

@keyframes flicker {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 20px 8px rgba(255, 210, 90, 0.8);
    }
}

.center-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.animated-moon {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: -20px 5px 0 0 var(--gold);
    filter: drop-shadow(0 0 35px rgba(255, 210, 90, 0.4));
    opacity: 0.8;
    z-index: -1;
    animation: rotateMoon 20s linear infinite;
}

@keyframes rotateMoon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.text-group {
    animation: levitate 6s ease-in-out infinite alternate;
}

.main-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 210, 90, 0.3);
}

.sub-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 4px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.description {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
    opacity: 0.6;
    animation: pulseWidth 3s ease-in-out infinite alternate;
}

@keyframes levitate {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes pulseWidth {
    0% {
        width: 30px;
        opacity: 0.4;
    }
    100% {
        width: 50px;
        opacity: 0.8;
    }
}

.bottom-icon {
    position: absolute;
    bottom: 50px;
    z-index: 10;
    animation: spinIcon 15s linear infinite;
    opacity: 0.7;
}

@keyframes spinIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
