/* ===== TIPOGRAFÍA UNIFICADA Y SIMPLIFICADA ===== */

/* Declaración de fuente personalizada MVPesambre */
@font-face {
    font-family: 'MVPesambre';
    src: url('./MvPesambre-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Importación de Google Fonts Exo 2 */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

/* ===== ESTILOS BASE UNIFICADOS ===== */

/* Fuente base para toda la web */
body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #fff;
    background-color: transparent;
}

/* ===== TIPOGRAFÍA UNIFICADA ===== */

/* TÍTULOS PRINCIPALES - MVPesambre */
.hero-title,
.nav-logo .logo-text,
.section-title {
    font-family: 'MVPesambre', 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* TÍTULOS SECUNDARIOS - Exo 2 */
.hero-subtitle,
.album-title,
.tour-title,
.entrada-venue,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* TEXTO DEL CUERPO - Exo 2 */
p, 
.bio-text-mvp,
.review-text,
.album-description,
.tour-description,
.entrada-description,
.nav-link,
.platform-btn,
.entrada-btn,
.btn,
.lang-btn {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TAMAÑOS DE FUENTE UNIFICADOS ===== */

/* Títulos principales */
.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--corporate-primary);
}

.review-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Subtítulos */
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Texto del cuerpo */
.bio-text-mvp,
.review-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navegación */
.nav-logo .logo-text {
    font-size: 1.8rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
}

/* Botones */
.platform-btn,
.entrada-btn,
.btn {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Logo corporativo en botones de entrada */
.entrada-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0.7) contrast(1.2) saturate(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: relative;
    cursor: pointer;
}

.entrada-logo:hover {
    transform: scale(1.25);
    filter: brightness(1.2) contrast(1.3) saturate(1.2);
}

/* Popup sutil "Comprar" */
.entrada-logo::after {
    content: "Comprar";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(222, 184, 135, 0.95);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.entrada-logo:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Fechas y elementos destacados */
.date-day,
.entrada-date {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Footer */
.footer,
.social-links a {
    font-weight: 400;
    letter-spacing: 0.01em;
}



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dynamic Background */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 4s ease-in-out;
    filter: brightness(0.6) contrast(1.2) saturate(1.1);
    transform: scale(1.3);
    will-change: opacity, transform;
}

.bg-image.active {
    opacity: 1;
    transform: scale(1.3);
    transition: opacity 4s ease-in-out;
}

.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Ensure content is above background */
.navbar, .hero, .bio, .discography, .merchandising, .tour, .footer {
    position: relative;
    z-index: 2;
}

/* Prevent transition conflicts */
.bg-image:not(.active) {
    pointer-events: none;
}

/* Smooth crossfade effect */
.bg-image {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}



/* Ensure all text is white by default */
p, span, div, li, a {
    color: #fff;
}

/* ===== ENTRADAS SECTION ===== */
.entradas {
    padding: 3rem 0;
    background: transparent;
}

.entradas .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Promoción del juego Malos Vicios */
.game-promo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.game-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    color: #FFD700;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
}

.game-promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-promo-btn:hover::before {
    left: 100%;
}

.game-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-color: #FFA500;
    color: #FFA500;
}

.game-promo-icon {
    width: 40px;
    height: 40px;
    filter: 
        brightness(0.6) 
        contrast(1.3) 
        saturate(0.7)
        drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: all 0.3s ease;
}

.game-promo-btn:hover .game-promo-icon {
    filter: 
        brightness(1) 
        contrast(1.2) 
        saturate(1.2)
        drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
    transform: scale(1.1) rotate(5deg);
}

.game-promo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.game-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.game-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.entradas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.entrada-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.entrada-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, #1a1a1a, #222);
}

.entrada-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.date-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.date-month {
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0.1rem 0;
}

.date-year {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.entrada-content {
    flex: 1;
    text-align: center;
}

.entrada-venue {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.entrada-location {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.entrada-status.free {
    display: inline-block;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.2);
}

.entrada-actions {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    padding: 0.3rem 0;
}

.entrada-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.entrada-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #FFA500, #FFD700);
    scale: 1.03;
}

.entrada-btn span {
    color: #000;
    font-weight: 600;
}

.entrada-btn i {
    font-size: 0.9rem;
    color: #000;
}

/* Botón del juego Malos Vicios */
.game-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    color: #FFD700;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-btn:hover::before {
    left: 100%;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-color: #FFA500;
    color: #FFA500;
}

.game-icon {
    width: 24px;
    height: 24px;
    filter: 
        brightness(0.7) 
        contrast(1.2) 
        saturate(0.8)
        drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: all 0.3s ease;
}

.game-btn:hover .game-icon {
    filter: 
        brightness(1) 
        contrast(1.1) 
        saturate(1.1)
        drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
    transform: scale(1.1);
}

.game-text {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments para entradas */
@media (max-width: 768px) {
    .entradas-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .entrada-card {
        padding: 1rem;
        min-height: 180px;
    }
    
    .date-day {
        font-size: 1.6rem;
    }
    
    .entrada-venue {
        font-size: 1.1rem;
    }
    
    .entrada-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 200px;
    }
    
    .game-promo-btn {
        padding: 0.8rem 1.2rem;
        gap: 0.8rem;
    }
    
    .game-promo-icon {
        width: 35px;
        height: 35px;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .game-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .entradas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .entrada-card {
        padding: 0.8rem;
        min-height: 160px;
    }
    
    .date-day {
        font-size: 1.4rem;
    }
    
    .entrada-venue {
        font-size: 1rem;
    }
    
    .entrada-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 180px;
    }
    
    .game-promo-btn {
        padding: 0.7rem 1rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .game-promo-icon {
        width: 30px;
        height: 30px;
    }
    
    .game-promo-text {
        align-items: center;
    }
    
    .game-title {
        font-size: 0.8rem;
    }
    
    .game-subtitle {
        font-size: 0.65rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .entradas-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .entrada-card {
        padding: 1rem;
        height: auto;
        min-height: 260px;
    }
    
    .date-day {
        font-size: 1.8rem;
    }
    
    .entrada-venue {
        font-size: 1.1rem;
    }
    
    .entrada-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
        min-width: auto;
        max-width: 200px;
        margin: 0 auto;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #fff;
    background-color: transparent;
}

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

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-game-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: -0.5rem;
    margin-top: -0.3rem;
}

.logo-game-link:hover {
    transform: scale(1.1);
}

.nav-logo-img {
    width: 32px;
    height: 32px;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.nav-logo {
    gap: 1rem;
}

.logo-game-link:hover .nav-logo-img {
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
    transform: scale(1.05);
    box-shadow: none;
}

.nav-logo .logo-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: #FFD700;
    color: #000;
}

.lang-btn.active {
    background: #FFD700;
    color: #000;
}

/* Botón del juego en la navegación */
.nav-game-btn {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.game-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-decoration: none;
    padding: 0.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-nav-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0.3) contrast(1.2);
    transition: all 0.3s ease;
}

.game-nav-btn:hover .game-nav-icon {
    filter: brightness(1) contrast(1.1);
}

.game-nav-text {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-item {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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





/* Section Titles */
.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #FFD700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: capitalize;
}

/* Bio Section */
.bio {
    padding: 8rem 0 6rem 0;
    background: transparent;
}

.bio-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.bio-text h3 {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    font-weight: 300;
    letter-spacing: 0.3px;
}




/* Discography Section */
.discography {
    padding: 6rem 0;
    background: transparent;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.album-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.08);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.4);
    background: linear-gradient(145deg, #1a1a1a, #222);
}

.album-cover {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    border-radius: 0;
    height: 220px;
    overflow: hidden;
    padding: 0.5rem;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
}

.album-card:hover .album-image {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-info {
    background: transparent;
    backdrop-filter: none;
    padding: 1rem;
    border-top: none;
    border-radius: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

/* Título del álbum simplificado */
.album-info h3 {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
    word-wrap: break-word;
    hyphens: auto;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--corporate-primary);
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.album-tracks span {
    color: #aaa;
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.album-actions {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid #DEB887;
    background: transparent;
}

.platform-btn:hover {
    background: #DEB887;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(222, 184, 135, 0.3);
}

/* Colores específicos para cada plataforma (mantenidos para hover) */
.spotify-btn:hover {
    background: #1DB954;
    border-color: #1DB954;
    color: #fff;
}

.youtube-btn:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.apple-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.deezer-btn:hover {
    background: #00C7F2;
    border-color: #00C7F2;
    color: #fff;
}

.album-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Platform-specific button styles */
.spotify-btn {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
}

.spotify-btn:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.youtube-btn {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.youtube-btn:hover {
    background: #ff1a1a;
    border-color: #ff1a1a;
}

.apple-btn {
    background: #000;
    color: white;
    border-color: #000;
}

.apple-btn:hover {
    background: #333;
    border-color: #333;
}

.deezer-btn {
    background: #00C7F2;
    color: white;
    border-color: #00C7F2;
}

.deezer-btn:hover {
    background: #00d4ff;
    border-color: #00d4ff;
}

/* Spotify Section */
.spotify-section {
    background: #111;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255,215,0,0.1);
    border: 2px solid #FFD700;
}

.spotify-section h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 2rem;
}

.spotify-embed {
    margin-bottom: 2rem;
}

.spotify-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spotify-main-btn, .spotify-playlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.spotify-main-btn {
    background: #1DB954;
    color: white;
}

.spotify-main-btn:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

.spotify-playlist-btn {
    background: #fff;
    color: #1DB954;
    border: 3px solid #1DB954;
}

.spotify-playlist-btn:hover {
    background: #1DB954;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

/* Discography Info */
.discography-info {
    background: #111;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255,215,0,0.1);
    border: 2px solid #FFD700;
}

.discography-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.discography-info p {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}

.discography-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.discography-stats .stat {
    background: linear-gradient(135deg, var(--corporate-primary) 0%, var(--corporate-secondary) 100%);
    padding: 1.5rem 1rem;
}

.discography-stats .stat-number {
    font-size: 2rem;
}

/* Merchandising Section */
.merchandising {
    padding: 6rem 0;
    background: transparent;
}

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

.merch-card {
    background: #111;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.merch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

.merch-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--corporate-primary) 0%, var(--corporate-secondary) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #000;
}

.merch-info h3 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.merch-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

/* Tour Section */
.tour {
    padding: 4rem 0;
    background: transparent;
}

/* Tour Poster Styling - Clean Display */
.tour-main-title {
    font-size: 2.5rem;
    color: #DEB887;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 3rem;
}

.tour-poster-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tour-poster {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 3px solid #DEB887;
    margin-bottom: 2rem;
}

/* Poster Background */
.poster-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Tour Content - Clean Display */
.tour-content {
    position: relative;
    padding: 0;
    z-index: 10;
}

.tour-poster-display {
    /* El poster se muestra sin superposiciones */
}

/* Tour Links Container */
.tour-links-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #DEB887;
    backdrop-filter: blur(10px);
}

.tour-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.tour-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(222, 184, 135, 0.1);
    border-radius: 8px;
    border-left: 3px solid #DEB887;
    transition: all 0.3s ease;
}

.tour-link-item:hover {
    background: rgba(222, 184, 135, 0.2);
    transform: translateX(5px);
}

.tour-link-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tour-link-date {
    font-family: 'MvPesambreNumbers', 'MvPesambre', 'Inter', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #DEB887;
    font-weight: 600;
    font-feature-settings: "tnum" 0, "lnum" 0, "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "liga" 1, "kern" 1;
    -moz-font-feature-settings: "liga" 1, "kern" 1;
}

.tour-link-label {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.tour-link-status {
    color: #DEB887;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-link-btn {
    background: linear-gradient(135deg, #DEB887 0%, #DAA520 100%);
    color: #000;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.tour-link-btn:hover {
    background: linear-gradient(135deg, #DAA520 0%, #DEB887 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(222, 184, 135, 0.3);
}

/* Tour Footer */
.tour-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 2px solid #DEB887;
    min-height: 30px;
}

.tour-footer .tour-actions {
    flex: 1;
    text-align: center;
}

.tour-footer .tour-tickets-btn {
    background: linear-gradient(135deg, #DEB887 0%, #DAA520 100%);
    color: #000;
    border: 2px solid #DEB887;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.tour-footer .tour-tickets-btn:hover {
    background: linear-gradient(135deg, #DAA520 0%, #DEB887 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(222, 184, 135, 0.3);
}

/* Tour Logo */
.tour-logo {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.logo-text {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 0.3rem;
}

.logo-anniversary {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #DEB887;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-poster-container {
        max-width: 100%;
    }
    
    .tour-links-container {
        padding: 1.2rem;
    }
    
    .tour-links-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .tour-link-item {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        padding: 0.7rem;
    }
    
    .tour-link-info {
        align-items: center;
        gap: 0.4rem;
    }
    
    .tour-link-date {
        font-size: 1rem;
    }
    
    .tour-link-label {
        font-size: 0.9rem;
    }
    
    .tour-link-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .tour-link-status {
        font-size: 0.8rem;
    }
    
    .tour-footer {
        padding-top: 0.6rem;
        min-height: 25px;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3.footer-title,
    .footer-section h4.footer-title {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    /* Salatal Logo Responsive */
    .salatal-logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .tour-links-container {
        padding: 1rem;
    }
    
    .tour-link-item {
        padding: 0.6rem;
        gap: 0.5rem;
    }
    
    .tour-link-info {
        gap: 0.3rem;
    }
    
    .tour-link-date {
        font-size: 0.9rem;
    }
    
    .tour-link-label {
        font-size: 0.8rem;
    }
    
    .tour-link-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .tour-link-status {
        font-size: 0.7rem;
    }
    
    .tour-footer {
        padding-top: 0.5rem;
        min-height: 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-section h3.footer-title,
    .footer-section h4.footer-title {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
    
    /* Salatal Logo Mobile */
    .salatal-logo {
        max-width: 80px;
    }
}

/* Tour Info Section */
.tour-info-section {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #FFD700;
}

.tour-info-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.tour-info-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}



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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #FFD700;
}

#modalTitle {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

#mapContainer {
    background: #f8f9fa;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #FFD700;
}

#mapContainer::before {
    content: '🗺️ Mapa de ubicación';
    color: #666;
    font-size: 1.1rem;
}

#venueInfo h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

#venueInfo p {
    color: #666;
    margin-bottom: 0.5rem;
}

#venueActions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 2rem 0 1rem;
    border-top: 2px solid #DEB887;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3.footer-title,
.footer-section h4.footer-title {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    color: #DEB887;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section p strong {
    color: #DEB887;
    font-weight: 600;
}

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

.social-links a {
    color: #DEB887;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #DAA520;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Responsive Design - Mobile First Approach */

/* Large Mobile and Small Tablet */
@media (max-width: 768px) {
    .container, .nav-container {
        padding: 0 1rem;
    }
    

    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Bio Section */
    .bio {
        padding: 4rem 0;
    }
    
    /* New Album Section */
    .new-album {
        padding: 4rem 0;
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .album-cover-section {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .album-cover-main {
        max-width: 350px;
    }
    
    .review-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .bio-text-mvp {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .album-images {
        max-width: 400px;
    }
    
    .album-showcase-img {
        max-width: 350px;
    }
    
    .album-cover-main {
        max-width: 350px;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-text h3 {
        font-size: 1.5rem;
    }
    
    .bio-text p {
        font-size: 1rem;
    }
    

    
    /* Discography Section */
    .discography {
        padding: 4rem 0;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .album-card {
        padding: 1.5rem;
        height: auto; /* Altura automática en móvil */
        min-height: 420px; /* Altura mínima */
    }
    
    .album-cover img {
        height: 200px;
    }
    
    .album-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .platform-btn {
        width: 100%;
        justify-content: center;
    }
    
    .spotify-section {
        padding: 2rem 1rem;
    }
    
    .spotify-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .spotify-main-btn, .spotify-playlist-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .discography-info {
        padding: 2rem 1rem;
    }
    
    .discography-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Merchandising Section */
    .merchandising {
        padding: 4rem 0;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .merch-card {
        padding: 1.5rem;
    }
    
    /* Tour Section */
    .tour {
        padding: 4rem 0;
    }
    
    .tour-dates {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .tour-date {
        margin-bottom: 1rem;
    }
    
    .tour-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tour-actions .btn {
    width: auto;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
    
    .tour-info-section {
        padding: 2rem 1rem;
    }
    
    .tour-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tour-links .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .booking-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .booking-info {
        padding: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .language-selector {
        margin-left: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: block;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container, .nav-container {
        padding: 0 0.8rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        letter-spacing: clamp(0.5px, 1vw, 1px);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bio-text h3 {
        font-size: 1.3rem;
    }
    
    .bio-text p {
        font-size: 0.95rem;
    }
    
    .album-card, .merch-card, .tour-card {
        padding: 1rem;
    }
    
    .album-cover img {
        height: 180px;
    }
    
    .album-images {
        max-width: 300px;
    }
    
    .album-showcase-img {
        max-width: 250px;
    }
    
    .album-cover-main {
        max-width: 250px;
    }
    
    .review-title {
        font-size: 1.5rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .nav-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .language-selector {
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container, .nav-container {
        padding: 0 0.6rem;
    }
    
    .album-card, .merch-card, .tour-card {
        padding: 0.8rem;
    }
    
    .album-cover img {
        height: 160px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo-img {
        width: 28px;
        height: 28px;
        filter: brightness(0.4) contrast(1.3);
    }
    
    .nav-logo {
        gap: 0.8rem;
    }
    
    .nav-logo .logo-text {
        font-size: 1.4rem;
    }
    
    .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 ease;
        box-shadow: 0 10px 27px rgba(255, 215, 0, 0.2);
        padding: 2rem 0;
        border-top: 2px solid #FFD700;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 215, 0, 0.1);
        color: #FFD700;
    }
    
    .language-selector {
        margin-left: 1rem;
        gap: 0.4rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* New Album Section */
.new-album {
    padding: 4rem 0;
    background: transparent;
}

.album-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.album-cover-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-cover-main {
    max-width: 400px;
    width: 100%;
}

.album-main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.album-main-img:hover {
    transform: scale(1.02);
}

.spotify-widget-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.album-review-section {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.album-review {
    padding: 2rem 0;
}

.review-title {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    color: var(--corporate-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.review-text {
    font-family: 'Inter', 'Arial', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.review-text:last-child {
    margin-bottom: 0;
}

.spotify-widget-container {
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.spotify-embed {
    width: 120%;
    margin-left: -10%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: transparent;
    min-height: 352px;
}

.spotify-embed iframe {
    width: 100%;
    height: 352px;
    border: none;
    border-radius: 12px;
    display: block;
    background: transparent;
    min-height: 352px;
}

/* Asegurar que el widget de Spotify funcione */
.spotify-embed iframe[src*="spotify.com"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.album-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive adjustments for new album section */
@media (max-width: 1024px) {
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .album-cover-main {
        max-width: 350px;
    }
    
    .album-review-section {
        margin-top: 2rem;
    }
    

    
    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .album-cover-main {
        max-width: 300px;
    }
    
    .album-review-section {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    

    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    

}

@media (max-width: 480px) {
    .album-cover-main {
        max-width: 250px;
    }
    
    .album-review-section {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    

    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .spotify-embed iframe {
        height: 300px;
    }
}

/* Bio Section */
.bio {
    padding: 4rem 0;
    background: transparent;
}

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

.bio-text-mvp {
    font-family: 'Inter', 'Arial', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.bio-text-mvp:last-child {
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    font-size: 2.2rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    font-feature-settings: "tnum" 1, "lnum" 1;
    scroll-margin-top: 120px;
}

/* Tour Section */
.tour {
    padding: 4rem 0;
    background: transparent;
}

/* Corporate Colors based on Galleta pesambre.jpg - Light tones */
:root {
    --corporate-primary: #DEB887;      /* Burlywood - light main brand color */
    --corporate-secondary: #F4A460;    /* Sandy Brown - light accent color */
    --corporate-accent: #DAA520;       /* Goldenrod - light highlight color */
    --corporate-dark: #CD853F;         /* Peru - medium brown */
    --corporate-light: #F5DEB3;        /* Wheat - very light accent */
    --corporate-sepia: #D2B48C;        /* Tan - light sepia tone */
}

/* Handwritten Numbers Styling */
.number-handwritten {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: normal;
    font-size: 1em;
    opacity: 0.9;
}

/* Venue Titles Handwritten Styling */
.venue-handwritten {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: normal;
    font-size: 1.2rem;
}

/* Salatal Logo Styling */
.salatal-logo-container {
    text-align: center;
    margin: 1rem 0;
}

.salatal-logo {
    max-width: 120px;
    height: auto;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

/* Footer Section Adjustments */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
    padding: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--corporate-primary);
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.footer-section strong {
    color: var(--corporate-secondary);
}

/* Social Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}



/* Salatal Logo in Footer */
.footer-section .salatal-logo-container {
    margin: 1rem 0;
}

.footer-section .salatal-logo {
    max-width: 80px;
    height: auto;
    filter: brightness(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(222, 184, 135, 0.3);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        padding: 0.5rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

/* Streaming Platform Buttons */
.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: #DEB887;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid #DEB887;
    background: transparent;
}

.platform-btn:hover {
    background: #DEB887;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(222, 184, 135, 0.3);
}

/* Spotify Button */
.spotify-btn:hover {
    background: var(--corporate-secondary);
    border-color: var(--corporate-secondary);
    color: #000;
}

/* YouTube Button */
.youtube-btn:hover {
    background: var(--corporate-accent);
    border-color: var(--corporate-accent);
    color: #000;
}

/* Apple Music Button */
.apple-btn:hover {
    background: var(--corporate-dark);
    border-color: var(--corporate-dark);
    color: #fff;
}

/* Deezer Button */
.deezer-btn:hover {
    background: var(--corporate-primary);
    border-color: var(--corporate-primary);
    color: #000;
}

/* Album Actions Container */
.album-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Responsive adjustments for platform buttons */
@media (max-width: 768px) {
    .platform-btn {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.1rem;
    }
    
    .album-actions {
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .platform-btn {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Entradas Section Styles */
.entradas {
    padding: 4rem 0;
    background: transparent;
}

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

.entrada-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--corporate-primary);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.entrada-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--corporate-primary), var(--corporate-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.entrada-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(222, 184, 135, 0.2);
    border-color: var(--corporate-secondary);
}

.entrada-card:hover::before {
    opacity: 1;
}

.entrada-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.entrada-date {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    color: var(--corporate-primary);
    font-size: 0.95rem;
    font-weight: 600;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.entrada-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'Arial', sans-serif;
}

.entrada-status.free {
    background: var(--corporate-accent);
    color: #000;
}

.entrada-status.available {
    background: var(--corporate-secondary);
    color: #000;
}

.entrada-venue {
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.entrada-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: 'Inter', 'Arial', sans-serif;
}

.entrada-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.entrada-btn {
    background: var(--corporate-primary);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--corporate-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entrada-btn:hover {
    background: transparent;
    color: var(--corporate-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(222, 184, 135, 0.3);
}

.entrada-info {
    color: var(--corporate-primary);
    font-style: italic;
    font-size: 0.9rem;
}

/* Responsive adjustments for entradas */
@media (max-width: 768px) {
    .entradas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .entrada-card {
        padding: 1.2rem;
    }
    
    .entrada-venue {
        font-size: 1rem;
    }
    
    .entrada-date {
        font-size: 0.9rem;
    }
    
    .entrada-location {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .entradas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .entrada-card {
        padding: 1rem;
        height: auto;
        min-height: 250px;
    }
    
    .entrada-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .entrada-venue {
        font-size: 0.95rem;
    }
    
    .entrada-date {
        font-size: 0.85rem;
    }
    
    .entrada-location {
        font-size: 0.8rem;
    }
    
    .entrada-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--corporate-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    justify-content: space-between;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--corporate-primary);
    font-family: 'MvPesambre', 'Inter', 'Arial', sans-serif;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-section p {
    margin-bottom: 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    color: var(--corporate-primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    border: none !important;
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
}

.social-links a:hover {
    color: var(--corporate-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 184, 135, 0.3);
    border: none !important;
    outline: none !important;
}

/* Asegurar que los iconos no tengan líneas extrañas */
.social-links i {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.salatal-logo-container {
    margin-bottom: 1.5rem;
}

.salatal-logo {
    max-width: 120px;
    height: auto;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(222, 184, 135, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        padding: 0.6rem;
    }
    
    .salatal-logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .social-links a {
        font-size: 1.6rem;
        width: 45px;
        height: 45px;
        padding: 0.5rem;
    }
}

.nav-logo .logo-text {
    font-size: 1.5rem;
}

.nav-logo-img {
    width: 24px;
    height: 24px;
}

.nav-logo {
    gap: 0.8rem;
}

/* Album Section Responsive */
@media (max-width: 768px) {
    .new-album {
        padding: 2rem 0;
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .album-cover-main {
        max-width: 300px;
    }
    
    .album-main-img {
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }
    
    .album-review-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .album-review {
        padding: 1.5rem 0;
    }
    
    .review-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .spotify-embed {
        width: 100%;
        margin-left: 0;
        min-height: 300px;
    }
    
    .spotify-embed iframe {
        height: 300px;
    }
}

/* Spotify Alternative Widget */
.spotify-alternative {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(29, 185, 84, 0.3);
    transition: all 0.3s ease;
}

.spotify-alternative:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(29, 185, 84, 0.4);
}

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

.spotify-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spotify-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.spotify-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.album-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'MvPesambre', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.spotify-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spotify-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.spotify-listen-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.spotify-listen-btn i {
    font-size: 1.3rem;
}

.spotify-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== MOBILE-FIRST DESIGN ===== */
@media (max-width: 768px) {
    /* Reset and base mobile styles */
    * {
        box-sizing: border-box;
    }
    
    .container, .nav-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Mobile Navigation */
    .navbar {
        padding: 0.8rem 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .nav-logo {
        gap: 0.6rem;
        flex: 1;
    }
    
    .nav-logo-img {
        width: 24px;
        height: 24px;
        filter: brightness(0.8) contrast(1.1) saturate(1.2);
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        padding: 2rem 0;
        border-top: 3px solid #FFD700;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        display: block;
        border-radius: 0;
        margin: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
        color: #FFD700;
        padding-left: 2.5rem;
    }
    
    .language-selector {
        margin-left: 0.5rem;
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        border-width: 1px;
    }
    
    .hamburger {
        display: flex;
        margin-left: 0.5rem;
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 2rem 0 3rem 0;
        min-height: 60vh;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    /* Mobile Album Section */
    .new-album {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .album-cover-main {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .album-main-img {
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    }
    
    /* Mobile Spotify Widget */
    .spotify-widget-section {
        order: 2;
    }
    
    .spotify-widget-container {
        padding: 0;
    }
    
    .spotify-embed {
        width: 100%;
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
    
    .spotify-embed iframe {
        width: 100%;
        height: 300px;
        border: none;
    }
    
    /* Mobile Album Review */
    .album-review-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .album-review {
        padding: 1rem 0;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    /* Mobile Album Actions */
    .album-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .platform-btn {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 60px;
    }
    
    /* Mobile Bio Section */
    .bio {
        padding: 2rem 0;
    }
    
    .bio-content {
        padding: 0 1rem;
    }
    
    .bio-text-mvp {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: left;
    }
    
    /* Mobile Discography */
    .discography {
        padding: 2rem 0;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .album-card {
        padding: 1.5rem;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .album-cover img {
        height: 200px;
        border-radius: 12px;
    }
    
    .album-title {
        font-size: 1.3rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    /* Mobile Tour Section */
    .tour {
        padding: 2rem 0;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tour-card {
        padding: 1.5rem;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile Entradas Section */
    .entradas {
        padding: 2rem 0;
    }
    
    .entradas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .entrada-card {
        padding: 1.5rem;
        min-height: auto;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .entrada-date {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .date-day {
        font-size: 1.8rem;
    }
    
    .entrada-venue {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .entrada-actions {
        margin-top: 1rem;
        text-align: center;
    }
    
    .entrada-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .salatal-logo-container {
        margin-top: 2rem;
        text-align: center;
    }
    
    .salatal-logo {
        width: 120px;
        height: auto;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container, .nav-container {
        padding: 0 0.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .album-cover-main {
        max-width: 250px;
    }
    
    .spotify-embed iframe {
        height: 280px;
    }
    
    .album-actions {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .platform-btn {
        padding: 0.8rem;
        min-height: 55px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-logo-img {
        width: 22px;
        height: 22px;
    }
}

/* Spotify Widget Styles */
.spotify-widget-section {
    width: 100%;
    order: 2;
}

.spotify-widget-container {
    width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #000;
}

.spotify-embed {
    width: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.spotify-embed iframe {
    width: 100%;
    height: 352px;
    border: none;
    border-radius: 16px;
    background: #000;
    display: block;
}

/* Mobile Spotify Widget */
@media (max-width: 768px) {
    .spotify-widget-section {
        order: 2;
        margin-top: 1rem;
    }
    
    .spotify-widget-container {
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
    
    .spotify-embed {
        border-radius: 12px;
    }
    
    .spotify-embed iframe {
        height: 300px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .spotify-embed iframe {
        height: 280px;
    }
    
    .spotify-widget-container {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }
    
    .spotify-embed {
        border-radius: 10px;
    }
    
    .spotify-embed iframe {
        border-radius: 10px;
    }
}

/* Mobile Navigation - Fixed */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        margin-left: 0.5rem;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 60px !important;
        flex-direction: column;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        width: 100% !important;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        padding: 2rem 0;
        border-top: 3px solid #FFD700;
        overflow-y: auto;
        z-index: 1000 !important;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0 !important;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        display: block;
        border-radius: 0;
        margin: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
        letter-spacing: 1px;
        color: #fff;
        text-decoration: none;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
        color: #FFD700;
        padding-left: 2.5rem;
    }
}

/* ===== MODERN MOBILE INTERFACE ===== */
@media (max-width: 768px) {
    /* Reset and base mobile styles */
    * {
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .container, .nav-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    /* Modern Mobile Navigation */
    .navbar {
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        gap: 0.8rem;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .nav-logo-img {
        width: 32px;
        height: 32px;
        filter: brightness(0.8) contrast(1.1) saturate(1.2);
        flex-shrink: 0;
    }
    
    .nav-logo .logo-text {
        font-size: 1.4rem;
        font-weight: 600;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }
    
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
        display: block;
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.15);
        color: #FFD700;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.3);
    }
    
    .language-selector {
        margin-left: 1rem;
        gap: 0.5rem;
        display: flex;
        align-items: center;
    }
    
    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .lang-btn:hover, .lang-btn.active {
        background: #FFD700;
        color: #000000;
        border-color: #FFD700;
        transform: scale(1.05);
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        margin-left: 1rem;
    }
    
    .hamburger .bar {
        width: 100%;
        height: 3px;
        background: #FFD700;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Modern Mobile Hero Section */
    .hero {
        padding: 3rem 0 4rem 0;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .hero-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Modern Mobile Album Section */
    .new-album {
        padding: 3rem 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        padding: 0 1.5rem;
        text-align: center;
        font-weight: 700;
        color: #FFD700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2rem;
        padding: 0 1.5rem;
    }
    
    .album-cover-main {
        max-width: 320px;
        margin: 0 auto;
        position: relative;
    }
    
    .album-main-img {
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease;
    }
    
    .album-main-img:hover {
        transform: scale(1.02);
    }
    
    /* Modern Mobile Spotify Widget */
    .spotify-widget-section {
        order: 2;
        margin-top: 2rem;
    }
    
    .spotify-widget-container {
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        background: #000;
    }
    
    .spotify-embed {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        overflow: hidden;
        background: #000;
    }
    
    .spotify-embed iframe {
        width: 100%;
        height: 320px;
        border: none;
        border-radius: 20px;
        background: #000;
    }
    
    /* Modern Mobile Album Review */
    .album-review-section {
        margin-top: 3rem;
        padding: 0 1.5rem;
    }
    
    .album-review {
        padding: 2rem 0;
    }
    
    .review-text {
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 1.5rem;
        padding: 0;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
    }
    
    /* Modern Mobile Album Actions */
    .album-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 0 1.5rem;
    }
    
    .platform-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        min-height: 70px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .platform-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    /* Modern Mobile Bio Section */
    .bio {
        padding: 3rem 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .bio-content {
        padding: 0 1.5rem;
    }
    
    .bio-text-mvp {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: left;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
    }
    
    /* Modern Mobile Discography */
    .discography {
        padding: 3rem 0;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .album-card {
        padding: 2rem;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        transition: all 0.3s ease;
    }
    
    .album-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 215, 0, 0.3);
    }
    
    .album-cover img {
        height: 220px;
        border-radius: 16px;
        transition: transform 0.3s ease;
    }
    
    .album-card:hover .album-cover img {
        transform: scale(1.05);
    }
    
    .album-title {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.8rem 0;
        font-weight: 700;
        color: #FFD700;
    }
    
    /* Modern Mobile Tour Section */
    .tour {
        padding: 3rem 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .tour-card {
        padding: 2rem;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        transition: all 0.3s ease;
    }
    
    .tour-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 215, 0, 0.3);
    }
    
    /* Modern Mobile Entradas Section */
    .entradas {
        padding: 3rem 0;
    }
    
    .entradas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .entrada-card {
        padding: 2rem;
        min-height: auto;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .entrada-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .entrada-card:hover::before {
        transform: scaleX(1);
    }
    
    .entrada-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 215, 0, 0.3);
    }
    
    .entrada-date {
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .date-day {
        font-size: 2.2rem;
        font-weight: 800;
        color: #FFD700;
        display: block;
    }
    
    .entrada-venue {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        font-weight: 700;
        color: #ffffff;
    }
    
    .entrada-actions {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .entrada-btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 25px;
        font-weight: 600;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        color: #000000;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }
    
    .entrada-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
        background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    }
    
    /* Modern Mobile Footer */
    .footer {
        padding: 3rem 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-content {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .social-links a {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: #FFD700;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }
    
    .salatal-logo-container {
        margin-top: 2.5rem;
        text-align: center;
    }
    
    .salatal-logo {
        width: 140px;
        height: auto;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    
    .salatal-logo:hover {
        opacity: 1;
    }
}

/* Extra Small Mobile - Ultra Modern */
@media (max-width: 480px) {
    .container, .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .album-cover-main {
        max-width: 280px;
    }
    
    .spotify-embed iframe {
        height: 300px;
    }
    
    .album-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .platform-btn {
        padding: 1rem;
        min-height: 65px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
        max-width: 150px;
    }
    
    .nav-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1.2rem 1.5rem;
    }
    
    .entrada-card {
        padding: 1.5rem;
    }
    
    .date-day {
        font-size: 1.8rem;
    }
    
    .entrada-venue {
        font-size: 1.2rem;
    }
}

/* ===== DESKTOP SPOTIFY WIDGET - HIGH SPECIFICITY ===== */
@media (min-width: 769px) {
    .spotify-widget-container {
        padding: 1rem 0 !important;
        overflow: hidden !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .spotify-embed {
        width: 100% !important;
        margin-left: 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        background: transparent !important;
        min-height: 352px !important;
    }
    
    .spotify-embed iframe {
        width: 100% !important;
        height: 352px !important;
        border: none !important;
        border-radius: 12px !important;
        display: block !important;
        background: transparent !important;
        min-height: 352px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* Estilos responsivos para la discografía */
@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .album-card {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .album-card {
        max-width: 100%;
        min-height: 320px;
    }
    
    .album-cover {
        height: 180px;
    }
}

/* Hero Section */
.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--corporate-primary);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    text-transform: capitalize;
}

.hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Review del álbum */
.review-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--corporate-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.review-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Bio Section */
.bio-text-mvp {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}


