/* Estilos generales */
body {
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: auto;
}

/* Video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

/* Contenido sobre el video */
.content-overlay {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Logo de la banda */
.band-logo {
    max-width: 200px;
    height: auto;
}

/* Iconos sociales */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.social-icon:hover {
    color: #0f9002;
    transform: scale(1.1);
    text-decoration: none;
}

/* Lista de enlaces */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.link-item {
    background: rgba(1, 75, 33, 0.7);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #0f9002;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-item:hover {
    background: rgba(7, 144, 44, 0.3);
    transform: scale(1.02);
}

.link-item-disabled {
    background: rgba(1, 75, 33, 0.5);
    color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #0f9002;
}

/* Copyright */
.copyright {
    font-size: 12px;
    color: #aaa;
}

/* Efectos especiales para metal */


.band-logo {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .band-logo {
        max-width: 200px;
    }

    .video-background video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

    /* Añade estas reglas para centrar la lista */
    .content-overlay {
        width: 100%; /* Ocupa todo el ancho disponible */
        margin: auto; /* Añade un pequeño padding a los lados */
    }
    
    .link-list {
        width: 100%; /* Ocupa todo el ancho disponible */
        max-width: 300px; /* Establece un ancho máximo */
        margin-left: auto; /* Centrado horizontal */
        margin-right: auto; /* Centrado horizontal */
    }

    .link-item {
        padding: 10px 15px;
        font-size: 14px;
    }
}
