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

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
}

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

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.band-header {
    margin-bottom: 3rem;
    animation: fadeInUp 1.5s ease-out;
}

.band-name {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 20px;
}

.band-tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #ccc;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 280px;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.social-btn i {
    font-size: 1.5rem;
}

.spotify-btn {
    background: linear-gradient(45deg, #1DB954, #1ed760);
    border-color: #1DB954;
}

.spotify-btn:hover {
    background: linear-gradient(45deg, #1ed760, #1DB954);
    box-shadow: 0 15px 45px rgba(29, 185, 84, 0.4);
}

.youtube-btn {
    background: linear-gradient(45deg, #FF0000, #ff4444);
    border-color: #FF0000;
}

.youtube-btn:hover {
    background: linear-gradient(45deg, #ff4444, #FF0000);
    box-shadow: 0 15px 45px rgba(255, 0, 0, 0.4);
}

.mail-btn {
    background: linear-gradient(45deg, #3b60c4, #3e65cf);
    border: 2px solid #3b60c4;
}

.mail-btn:hover {
    background: linear-gradient(45deg, #2851b8, #4976d1);
    border-color: #2851b8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .band-header {
        margin-bottom: 2rem;
    }

    .social-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 250px;
    }

    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .band-header {
        margin-bottom: 1.5rem;
    }

    .band-name {
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .band-tagline {
        letter-spacing: 1px;
    }

    .social-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: 220px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-btn i {
        font-size: 1.2rem;
    }

    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 360px) {
    .social-btn {
        min-width: 200px;
        padding: 0.8rem 1rem;
    }

    .band-name {
        letter-spacing: 1px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .container {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 2rem;
    }

    .band-header {
        margin-bottom: 0;
        flex: 1;
    }

    .social-links {
        flex: 1;
        gap: 1rem;
    }

    .band-name {
        font-size: clamp(1.5rem, 5vw, 3rem);
    }

    .social-btn {
        padding: 0.8rem 1.5rem;
        min-width: auto;
        width: 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .band-name {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 15px rgba(255, 255, 255, 0.2);
    }
}
