body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    padding-top: 55vh; /* This pushes content below center on desktop */
}

.contact-button {
    display: inline-block;
    padding: 14px 24px;
    background-color: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    transform: scale(.55);
    text-decoration: none;
    border-radius: 1px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #00ffff;
    box-shadow: 
        0 0 5px #00ffff,
        0 0 15px #00ffff,
        0 0 30px #00ffff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.contact-button:hover {
    background-color: rgba(0, 255, 255, 0.5);
    box-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        0 0 80px #00ffff;
    transform: scale(.65);
}

.spotify-embed {
    width: 64%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .content {
        padding-top: 70vh; /* Push content further down on mobile */
        justify-content: flex-start;
    }

    .spotify-embed {
        width: 90%;
    }
    
    .contact-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}