/* Variables globales - Paleta Heavy Metal */
:root {
    --color-primario: #1a1a1a;          /* Negro profundo */
    --color-secundario: #c41e3a;        /* Rojo sangre */
    --color-acento: #8b0000;            /* Rojo oscuro */
    --color-fondo: #121212;             /* Negro mate */
    --color-texto: #ffffff;             /* Blanco puro */
    --color-gris: #333333;              /* Gris oscuro */
    --color-metal: #707070;             /* Gris metálico */
    --color-destaque: #ffd700;          /* Dorado */
    --color-hover: #ff4d4d;             /* Rojo brillante */
    --color-sombra: rgba(0, 0, 0, 0.8); /* Sombra oscura */
    --espaciado: 2rem;

    /* Gradientes */
    --gradiente-metal: linear-gradient(145deg, var(--color-metal), var(--color-primario));
    --gradiente-fuego: linear-gradient(145deg, var(--color-secundario), var(--color-acento));
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-texto);
    background-color: var(--color-fondo);
}

/* Header y navegación */
header {
    position: relative;
    background-color: var(--color-primario);
    color: white;
    padding: 1rem var(--espaciado);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Botón de menú hamburguesa */
.nav-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    z-index: 1000;
}

.nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
}

/* Navegación */
.nav-menu {
    transition: all 0.3s ease;
}

.nav-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: var(--color-secundario);
}

/* Secciones principales */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--espaciado);
}

section {
    margin-bottom: var(--espaciado);
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

h2 {
    color: var(--color-primario);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Sección de géneros */
.generos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.generos-grid article {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.generos-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sección de artistas */
.artistas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Sección de eventos */
.eventos-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Formulario de contacto */
.contacto form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contacto input,
.contacto textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contacto textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background: var(--gradiente-fuego);
    color: var(--color-texto);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-sombra);
}

/* Footer */
footer {
    background-color: var(--color-primario);
    color: white;
    padding: var(--espaciado);
    text-align: center;
    margin-top: var(--espaciado);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-primario);
        padding-top: 5rem;
        transition: 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* Animación del botón hamburguesa */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .generos-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 1rem;
    }
}

/* Estilos para las tarjetas de artistas */
.artista-card {
    background: linear-gradient(145deg, var(--color-primario), var(--color-secundario));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artista-card a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.artista-card a:hover {
    color: var(--color-acento);
}

.artist-info {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-texto);
}

.modal-body {
    margin-top: 1rem;
}

.btn-ver-mas {
    background: var(--color-acento);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-ver-mas:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Estilos para los eventos */
.evento {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secundario);
    margin-bottom: 1rem;
}

.btn-comprar {
    background-color: var(--color-acento);
    margin-top: 1rem;
}

.btn-comprar:hover {
    background-color: #2980b9;
}

/* Estilos para instrumentos */
.instrumentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.instrumento-card {
    background: linear-gradient(to bottom, #ffffff, #f0f2f5);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instrumento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-secundario);
}

.instrumento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-ver {
    background: var(--color-secundario);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

/* Estilos para clases */
.clases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1.5rem;
}

.clase-card {
    background: linear-gradient(145deg, #3498db, #2980b9);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.clase-card:hover {
    transform: perspective(1000px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Estilos para noticias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.noticia {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: none;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.noticia::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-acento), var(--color-secundario));
}

.noticia:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Estilos para podcast */
.podcast-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.episodio {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--color-acento);
}

.episodio:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.btn-reproducir {
    background: linear-gradient(145deg, var(--color-acento), #2980b9);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Estilos para comunidad */
.comunidad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 1.5rem;
}

.foro, .colaboraciones {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.foro::before, .colaboraciones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, var(--color-acento) 48%, var(--color-acento) 52%, transparent 52%);
    opacity: 0.1;
}

.foro:hover, .colaboraciones:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.foro ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.foro ul li {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.foro ul li:hover {
    background: var(--color-acento);
    color: white;
    transform: scale(1.05);
}

/* Responsive para las nuevas secciones */
@media (max-width: 768px) {
    .episodio {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .clase-card, .noticia {
        margin-bottom: 1rem;
    }
}

/* Mejoras en los botones */
.btn-unirse, .btn-explorar, .btn-ver, .btn-inscribir {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-unirse:hover, .btn-explorar:hover, .btn-ver:hover, .btn-inscribir:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Estilos para la sección hero mejorada */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.8)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:first-child {
    background: var(--color-secundario);
    color: white;
}

.hero-btn:last-child {
    background: transparent;
    color: white;
    border: 2px solid var(--color-secundario);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* Estilos mejorados para géneros */
.genero-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.genero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.artistas-destacados {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.artistas-destacados li {
    padding: 0.5rem;
    background: var(--color-fondo);
    margin: 0.5rem 0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.artistas-destacados li:hover {
    background: var(--color-acento);
    color: white;
    transform: translateX(10px);
}

/* Estilos para tendencias */
.tendencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tendencia-card {
    background: linear-gradient(145deg, #ffffff, #f0f2f5);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tendencia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Estilos para eventos mejorados */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.evento-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.evento-fecha {
    background: var(--color-secundario);
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 100px;
}

.evento-fecha .dia {
    font-size: 2rem;
    font-weight: bold;
}

.evento-fecha .mes {
    font-size: 1.2rem;
}

.evento-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.evento-lugar {
    color: var(--color-texto);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.evento-lineup {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.evento-lineup span {
    background: var(--color-fondo);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Estilos para recursos */
.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recurso-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recurso-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.recurso-card li {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.recurso-card li:hover {
    padding-left: 1.5rem;
    color: var(--color-acento);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .evento-card {
        flex-direction: column;
    }

    .evento-fecha {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

/* Botón de scroll al inicio */
.btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secundario);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.btn-scroll-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: var(--color-primario);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.arrow-up {
    line-height: 1;
    font-weight: bold;
}

/* Responsive del botón */
@media (max-width: 768px) {
    .btn-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Estilos para el reproductor de música */
.music-player-section {
    background: linear-gradient(145deg, var(--color-primario), #1a1a1a);
    color: white;
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.music-player-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.playlists-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.playlist-card {
    background: var(--gradiente-metal);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--color-metal);
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.playlist-card h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Filtros de género */
.playlist-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.8rem 1.5rem;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-secundario);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .music-player-section {
        padding: 2rem 1rem;
    }

    .music-player-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .playlist-card {
        padding: 1rem;
    }
}

/* Estilos para la atribución del autor */
.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.author-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-secundario);
    padding: 2px;
}

.author-details {
    text-align: left;
}

.author-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.author-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-secundario);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-hover);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .author-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .author-details {
        text-align: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mejoras finales en el footer */
.copyright-section {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.version {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* Mejoras en el formulario de contacto */
.contacto form input:focus,
.contacto form textarea:focus {
    outline: none;
    border-color: var(--color-acento);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.contacto form button {
    background: linear-gradient(to right, var(--color-secundario), var(--color-acento));
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contacto form button:hover {
    background: linear-gradient(to right, var(--color-acento), var(--color-secundario));
    transform: translateY(-2px);
}

/* Animación de carga para el sitio */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

main section {
    animation: fadeIn 0.6s ease-out forwards;
}

main section:nth-child(odd) {
    animation-delay: 0.2s;
}

main section:nth-child(even) {
    animation-delay: 0.4s;
}

/* Estilos para la sección de videos */
.videos-section {
    background: linear-gradient(145deg, #1a1a1a, var(--color-primario));
    padding: 4rem 2rem;
    margin: 2rem 0;
    color: white;
}

.videos-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: var(--gradiente-metal);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--color-metal);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.video-card h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .videos-section {
        padding: 2rem 1rem;
    }

    .videos-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .video-card {
        padding: 1rem;
    }
}

/* Mejoras en la sección de videos */
.video-info {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    margin-top: -4px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.video-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.video-views {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.video-card {
    position: relative;
    overflow: hidden;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradiente-fuego);
    z-index: 1;
}

.video-wrapper {
    position: relative;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Filtros para videos */
.video-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.video-filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-filter-btn:hover,
.video-filter-btn.active {
    background: var(--color-secundario);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive para videos */
@media (max-width: 768px) {
    .video-card {
        margin-bottom: 2rem;
    }

    .video-info {
        padding: 0.8rem;
    }

    .video-title {
        font-size: 0.9rem;
    }

    .video-views {
        font-size: 0.8rem;
    }
}

/* Estilos para la sección de nuevos lanzamientos */
.releases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.release-card {
    background: linear-gradient(145deg, #ffffff, #f0f2f5);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.album-cover {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Mantiene proporción cuadrada */
    overflow: hidden;
}

.album-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primario);
}

.artist {
    font-size: 1.1rem;
    color: var(--color-secundario);
    margin-bottom: 0.5rem;
}

.release-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.album-tracks {
    background: rgba(0,0,0,0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.track {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.track:last-child {
    border-bottom: none;
}

.btn-escuchar {
    width: 100%;
    padding: 1rem;
    background: var(--gradiente-fuego);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-escuchar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(to right, var(--color-acento), var(--color-secundario));
}

/* Responsive */
@media (max-width: 768px) {
    .releases-container {
        grid-template-columns: 1fr;
    }

    .album-info h3 {
        font-size: 1.3rem;
    }
}

/* Estilos para el reproductor de metal */
.metal-player-section {
    background: linear-gradient(145deg, #1a1a1a, #2c3e50);
    padding: 3rem 2rem;
    color: white;
    border-radius: 15px;
    margin: 2rem 0;
}

.metal-player-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.current-track-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.track-artwork {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn-large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.control-btn:hover {
    background: var(--color-secundario);
    transform: scale(1.1);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 5px;
    border-radius: 5px;
    margin: 1rem 0;
    position: relative;
}

.progress {
    background: var(--color-secundario);
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 0.1s linear;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.playlist-metal {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
}

.playlist-metal h4 {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.playlist-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.playlist-item.active {
    background: var(--color-secundario);
}

.song-title {
    font-weight: bold;
}

.song-artist {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .current-track-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .track-artwork {
        margin: 0 auto;
    }

    .player-controls {
        gap: 1rem;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .control-btn-large {
        width: 50px;
        height: 50px;
    }
}

/* Estilos para el reproductor de audio */
.audio-section {
    background: linear-gradient(145deg, #1a1a1a, #2c3e50);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 15px;
}

.audio-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.audio-container {
    max-width: 600px;
    margin: 0 auto;
}

.audio-player {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.song-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.song-cover {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.song-details {
    color: white;
}

.song-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.song-details p {
    color: rgba(255, 255, 255, 0.8);
}

audio {
    width: 100%;
    margin-top: 1rem;
}

/* Personalización del reproductor de audio */
audio::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.1);
}

audio::-webkit-media-controls-play-button {
    background-color: var(--color-secundario);
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .audio-section {
        padding: 2rem 1rem;
    }

    .song-info {
        flex-direction: column;
        text-align: center;
    }

    .song-cover {
        margin: 0 auto;
    }
}

/* Estilos para el header */
.main-header {
    background: var(--color-primario);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-secundario);
}

/* Estilos para la sección hero */
.hero-section {
    background: linear-gradient(145deg, var(--color-primario), var(--color-secundario));
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-acento);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Estilos para la sección de estadísticas */
.stats-section {
    padding: 4rem 2rem;
    background: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-secundario);
    margin-bottom: 0.5rem;
}

/* Estilos para la sección de newsletter */
.newsletter-section {
    background: linear-gradient(145deg, var(--color-primario), #1a1a1a);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 25px;
    border: none;
}

/* Estilos para la sección de eventos */
.eventos-section {
    padding: 4rem 2rem;
    background: var(--color-fondo);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.evento-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
}

.evento-fecha {
    background: var(--color-secundario);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.evento-info {
    padding: 2rem;
    flex: 1;
}

.btn-tickets {
    background: var(--color-acento);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Estilos para el footer */
.main-footer {
    background: var(--gradiente-metal);
    color: var(--color-texto);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-section {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Sección de Contacto */
.contact-section h2 {
    color: var(--color-destaque);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-metal);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-texto);
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradiente-fuego);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--color-sombra);
}

/* Sección del Autor */
.author-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--color-secundario);
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-label {
    color: var(--color-metal);
    margin-bottom: 0.5rem;
}

.author-name {
    font-size: 1.8rem;
    color: var(--color-destaque);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--color-texto);
    font-size: 1.1rem;
}

/* Enlaces Sociales */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--color-texto);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-secundario);
    transform: translateY(-3px);
}

/* Copyright */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--color-metal);
    margin-bottom: 0.5rem;
}

.version {
    color: var(--color-secundario);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}





