/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fuentes rockeras */
.rock-title {
    font-family: 'Black Ops One', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.punk-title {
    font-family: 'Bungee', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aggressive-text {
    font-family: 'Fredoka One', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wet-paint {
    font-family: 'Rubik Wet Paint', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fondo con líneas diagonales punk */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, #FFD700 49%, #FFD700 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #FFD700 49%, #FFD700 51%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 0px #000000;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 20px 50px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Black Ops One', cursive;
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 4px 4px 0px #000000, 8px 8px 0px #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-title:hover {
    transform: rotate(-2deg) scale(1.05);
    text-shadow: 6px 6px 0px #000000, 12px 12px 0px #FFD700, 0 0 20px #FFD700;
}

.hero-subtitle {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(1deg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
}

.btn-primary {
    background: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

.btn-primary:hover {
    background: transparent;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 3px solid #FFD700;
}

/* Secciones */
.section-title {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 3px 3px 0px #000000, 6px 6px 0px #FFD700;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-title:hover {
    transform: rotate(-1deg) scale(1.05);
    text-shadow: 4px 4px 0px #000000, 8px 8px 0px #FFD700, 0 0 15px #FFD700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #FFD700;
}

/* Biografía */
.biografia {
    padding: 100px 0;
    background: #111111;
}

.biografia-subsection {
    margin-bottom: 4rem;
}

.subsection-title {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
    text-align: center;
}

.biografia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.biografia-subtitle {
    font-family: 'Black Ops One', cursive;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(1deg);
    text-align: center;
}

.biografia-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.biografia-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #FFD700;
}

/* Discografía Completa */
.discografia-completa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.disco-item {
    background: #000000;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
    text-align: center;
    transition: all 0.3s ease;
}

.disco-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    border-color: #ffffff;
}

.disco-info h4 {
    font-family: 'Black Ops One', cursive;
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000000;
}

.disco-tipo {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 700;
}

/* Formación Actual */
.formacion-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.miembro {
    background: #000000;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.miembro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    border-color: #ffffff;
}

.miembro-info h4 {
    font-family: 'Black Ops One', cursive;
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000000;
}

.miembro-rol {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.miembro-info p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

/* Música */
.musica {
    padding: 100px 0;
    background: #000000;
}

/* Reproductor de Spotify */
.spotify-player {
    margin-bottom: 4rem;
    text-align: center;
}

.spotify-title {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
}

.spotify-widget {
    background: #000000;
    border-radius: 15px;
    padding: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.spotify-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 9px;
}

.spotify-fallback {
    margin-top: 15px;
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
}

.spotify-fallback p {
    margin: 0;
    font-style: italic;
}

.spotify-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-spotify {
    background: #1DB954;
    color: #ffffff;
    border-color: #1DB954;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    text-decoration: none;
    border: 3px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
}

.btn-spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
}

.spotify-icon {
    font-size: 1.2rem;
}

/* Discografía */
.discografia-title {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(1deg);
}

.album {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.album-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.album-info h3 {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
}

.album-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.album-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.album-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-shadow: 1px 1px 0px #000000;
    transform: rotate(-1deg);
}

.spotify-link {
    background: #1DB954;
    color: #ffffff;
    border-color: #1DB954;
}

.spotify-link:hover {
    background: #1ed760;
    border-color: #1ed760;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
}

.youtube-link {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
}

.youtube-link:hover {
    background: #ff1a1a;
    border-color: #ff1a1a;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: #bc1888;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f5a442 0%, #e8754a 25%, #e03a4a 50%, #d12a73 75%, #c21d95 100%);
    border-color: #c21d95;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}


.link-icon {
    font-size: 1rem;
}

.track {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
}

.track-number {
    color: #FFD700;
    font-weight: 700;
    margin-right: 1rem;
    min-width: 30px;
}

.track-name {
    flex: 1;
    color: #ffffff;
}

.play-btn {
    background: #FFD700;
    color: #000000;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* Galería */
.galeria {
    padding: 100px 0;
    background: #111111;
}

.galeria-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    background: transparent;
    color: #ffffff;
    border: 3px solid #FFD700;
    padding: 12px 25px;
    cursor: pointer;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 0px #000000;
    transform: rotate(-1deg);
}

.tab-btn.active,
.tab-btn:hover {
    background: #FFD700;
    color: #000000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.galeria-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-img {
    transform: scale(1.05);
}

/* Fanzine */
.fanzine {
    padding: 100px 0;
    background: #000000;
}

.fanzine-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.fanzine-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fanzine-item {
    border: 2px solid #FFD700;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.fanzine-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.fanzine-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Conciertos */
.conciertos {
    padding: 100px 0;
    background: #111111;
}

.conciertos-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.carteles-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.cartel-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid #FFD700;
    background: #000000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cartel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    border-color: #ffffff;
}

.cartel-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: #000000;
}

.cartel-item:hover .cartel-img {
    transform: scale(1.05);
}

/* Blog */
.blog {
    padding: 100px 0;
    background: #000000;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: #111111;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid #FFD700;
}

.blog-post h3 {
    font-family: 'Black Ops One', cursive;
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
}

.blog-date {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contacto */
.contacto {
    padding: 100px 0;
    background: #111111;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacto-info h3 {
    font-family: 'Black Ops One', cursive;
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000000;
    transform: rotate(-1deg);
}

.contacto-item {
    margin-bottom: 1.5rem;
}

.phone-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.phone-link:hover {
    color: #ffffff;
    border-bottom-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contacto-item strong {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #FFD700;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-shadow: 1px 1px 0px #000000;
    transform: rotate(-1deg);
}

.social-link:hover {
    background: #FFD700;
    color: #000000;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.instagram-social {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: #bc1888;
}

.instagram-social:hover {
    background: linear-gradient(45deg, #f5a442 0%, #e8754a 25%, #e03a4a 50%, #d12a73 75%, #c21d95 100%);
    color: #ffffff;
    border-color: #c21d95;
    box-shadow: 0 3px 10px rgba(188, 24, 136, 0.4);
}

.youtube-social {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
}

.youtube-social:hover {
    background: #ff1a1a;
    color: #ffffff;
    border-color: #ff1a1a;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4);
}

.spotify-social {
    background: #1DB954;
    color: #ffffff;
    border-color: #1DB954;
}

.spotify-social:hover {
    background: #1ed760;
    color: #ffffff;
    border-color: #1ed760;
    box-shadow: 0 3px 10px rgba(29, 185, 84, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: #000000;
    border: 2px solid #333333;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 2px solid #FFD700;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    text-align: right;
    color: #888888;
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #FFD700;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ffffff;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.lightbox-caption {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .biografia-content,
    .album,
    .contacto-content {
        grid-template-columns: 1fr;
    }
    
    .discografia-completa {
        grid-template-columns: 1fr;
    }
    
    .formacion-content {
        grid-template-columns: 1fr;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .biografia-subtitle {
        font-size: 1.3rem;
    }
    
    .spotify-widget {
        padding: 15px;
    }
    
    .spotify-widget {
        height: 250px;
    }
    
    .spotify-player {
        margin-bottom: 2rem;
    }
    
    .spotify-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .album-links {
        justify-content: center;
    }
    
    .album-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .fanzine-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .carteles-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cartel-img {
        height: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .biografia-subtitle {
        font-size: 1.1rem;
    }
    
    .disco-item,
    .miembro {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .spotify-widget {
        height: 200px;
    }
    
    .spotify-widget {
        padding: 10px;
    }
    
    .spotify-player {
        margin-bottom: 1.5rem;
    }
    
    .spotify-title {
        font-size: 1.3rem;
    }
    
    .discografia-title {
        font-size: 1.5rem;
    }
    
    .album {
        gap: 2rem;
    }
    
    .spotify-links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-spotify {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        text-align: center;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .carteles-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cartel-img {
        height: 250px;
    }
}

/* Breakpoint intermedio para tablets */
@media (max-width: 600px) and (min-width: 481px) {
    .spotify-widget {
        height: 220px;
    }
    
    .spotify-player {
        margin-bottom: 2.5rem;
    }
    
    .spotify-title {
        font-size: 1.4rem;
    }
    
    .discografia-title {
        font-size: 1.6rem;
    }
    
    .carteles-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .cartel-img {
        height: 180px;
    }
}
