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

body {
    background-color: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

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

.container {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.neon-text {
    font-size: 5rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
    user-select: none;
    text-shadow:
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #e0e0e0,
        0 0 40px #ffd700,
        0 0 70px #ffd700,
        0 0 80px #ffd700,
        0 0 100px #ffd700;
}

@keyframes neon-glow {
    from {
        opacity: 1;
        text-shadow:
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #e0e0e0,
            0 0 40px #ffd700,
            0 0 70px #ffd700,
            0 0 80px #ffd700,
            0 0 100px #ffd700;
    }

    to {
        opacity: 0.9;
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px #c0c0c0,
            0 0 20px #ffd700,
            0 0 35px #ffd700,
            0 0 40px #ffd700,
            0 0 50px #ffd700;
    }
}

.music-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    outline: none;
}

.music-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.music-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .neon-text {
        font-size: 2.5rem;
    }

    .music-btn {
        bottom: 20px;
        right: 20px;
    }
}