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

body {
    background: #000000;
    min-height: 100vh;
    font-family: 'Cascadia Code', monospace;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Static ambient lights - Windows 11 OOBE style */
.ambient-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 800px 500px at 5% 15%, rgba(0, 120, 215, 0.18), transparent),
        radial-gradient(ellipse 600px 400px at 90% 80%, rgba(134, 97, 193, 0.15), transparent),
        radial-gradient(ellipse 500px 350px at 50% 95%, rgba(0, 153, 188, 0.12), transparent),
        radial-gradient(ellipse 400px 300px at 80% 10%, rgba(180, 80, 180, 0.1), transparent);
}

main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 20px;
}

/* Name */
.name {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Now Playing */
.now-playing {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    min-height: 24px;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.nav-btn {
    width: 160px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: border-color 0.2s, background-color 0.2s;
    cursor: pointer;
}

.nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-btn i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 480px) {
    .name {
        font-size: 36px;
    }

    .nav-btn {
        width: 180px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Audio Visualizer Animation */
.visualizer {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    width: 14px;
    margin-bottom: 2px;
}

.visualizer-bar {
    width: 3px;
    background-color: #22c55e;
    height: 100%;
    /* Set full height, we scale it down/up */
    transform-origin: bottom;
    animation: equalize 0.5s infinite ease-in-out alternate;
    will-change: transform;
}

.visualizer-bar:nth-child(1) {
    animation-delay: -0.4s;
    transform: scaleY(0.6);
}

.visualizer-bar:nth-child(2) {
    animation-delay: -0.2s;
    transform: scaleY(1);
}

.visualizer-bar:nth-child(3) {
    animation-delay: -0.6s;
    transform: scaleY(0.8);
}

@keyframes equalize {
    0% {
        transform: scaleY(0.3);
    }

    100% {
        transform: scaleY(1);
    }
}