/* =========================================
   1. VARIABLES & CONFIGURACIÓN
   ========================================= */
:root {
    --primary: #ff2a2a;       /* Rojo Neón */
    --accent: #7000ff;        /* Violeta Eléctrico */
    --dark: #050505;          /* Negro casi puro */
    --gray: #1a1a1a;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --font-main: 'Montserrat', sans-serif;
    --font-alt: 'Permanent Marker', cursive;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

/* FIX CRÍTICO: Esto evita que la web baile a los lados en móvil */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important; 
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-main);
    position: relative;
}

/* =========================================
   2. EFECTOS DE FONDO
   ========================================= */
.bg-noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    animation: floatLight 10s infinite alternate ease-in-out;
}

.light-1 {
    top: -10%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent), transparent);
}

.light-2 {
    bottom: -10%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary), transparent);
    animation-delay: -5s;
}

@keyframes floatLight {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

#rain-canvas { position: fixed; inset: 0; z-index: 10; pointer-events: none; }

/* =========================================
   3. NAVEGACIÓN & LOGO
   ========================================= */
.main-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand-logo {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: flex; align-items: center;
}

.nav-links { display: flex; list-style: none; gap: 3rem; }
.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.btn-contact {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
}
.btn-contact:hover { background: #fff; color: #000 !important; }

/* Menú Móvil Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

/* =========================================
   4. HERO: MYSTERY ALBUM (NUEVO DISCO)
   ========================================= */
/* BUSCA LA CLASE .mystery-mode Y CÁMBIALA POR ESTA */
.mystery-mode {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    padding: 120px 2rem 150px;
    
    /* SOLUCIÓN AL CORTE: */
    /* El degradado empieza gris (#1a1a1a) y termina en el color EXACTO del body (--dark) */
    /* Al llegar al 90%, ya es del mismo color que lo de abajo, así que no hay borde visible */
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--dark) 80%);
    
    /* Quitamos 'cover' y 'fixed' que dan problemas y dejamos que el color base actúe */
    background-color: var(--dark); 
    
    overflow: hidden;
}

/* ELIMINA CUALQUIER .mystery-mode::after QUE TENGAS */
/* Ya no hace falta la niebla porque el propio fondo hace el trabajo limpio */
.mystery-mode::after {
    display: none;
}            

.mystery-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    
    /* CRÍTICO: Esto hace que el texto y botones floten SOBRE la niebla negra */
    position: relative; 
    z-index: 5; 
}

/* --- PORTADA MISTERIOSA --- */
.mystery-cover-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 450px;
    margin: 0 auto;
}

.glass-panel {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.restricted-badge {
    position: absolute;
    top: 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 15px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 900;
    border-radius: 4px;
    background: rgba(0,0,0,0.6);
    font-family: var(--font-main);
}

.mystery-icon i {
    font-size: clamp(5rem, 10vw, 8rem);
    color: rgba(255,255,255,0.8);
    animation: pulseQuestion 3s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.lock-status {
    position: absolute;
    bottom: 30px;
    color: #666;
    font-family: var(--font-main);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@keyframes pulseQuestion {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; text-shadow: 0 0 30px #fff; }
}

.glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
}

/* --- DATOS (TRACKLIST & PROGRESO) --- */
.mystery-data {
    color: #fff;
    font-family: var(--font-main); 
}

.data-header { margin-bottom: 2rem; }

.blinking-text {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: blink 1s infinite;
    letter-spacing: 1px;
}
@keyframes blink { 50% { opacity: 0; } }

.mystery-data h1.glitch {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

/* BARRA DE PROGRESO (MODERNA + ANIMACIÓN) */
.progress-module {
    margin: 2rem 0;
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.progress-track {
    height: 24px;
    background: #000;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.8);
}

.progress-fill {
    height: 100%;
    width: 54%; /* Progreso del álbum */
    background: linear-gradient(90deg, #ff2a2a, #ff6b6b);
    position: relative;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.5);
}

/* RAYAS ANIMADAS (Cyberpunk style) */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0.2) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.2) 75%, 
        transparent 75%, 
        transparent
    );
    background-size: 20px 20px;
    animation: moveStripes 1s linear infinite;
    border-radius: 30px;
}

@keyframes moveStripes {
    0% { background-position: 20px 0; }
    100% { background-position: 0 0; }
}

.status-msg {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #aaa;
    font-family: monospace;
    text-align: right;
}

/* TRACKLIST SIN SCROLL */
.tracklist-terminal {
    margin-bottom: 2rem;
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    
    height: auto;       /* Altura automática */
    max-height: none;   /* Sin límite */
    overflow: visible;  /* Sin scroll */
    
    -webkit-mask-image: none;
    mask-image: none;
}

.tracklist-terminal h3 {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    position: relative; 
    background: transparent;
}

.tracklist-terminal ul { list-style: none; padding: 0; }

.tracklist-terminal li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.tracklist-terminal li:last-child {
    border-bottom: none;
}

.track-num { color: var(--primary); font-weight: 700; margin-right: 10px; }
.track-name { font-weight: 600; white-space: normal; line-height: 1.3; }

.ready { color: #1DB954; } 
.loading { color: var(--primary); }
.locked { color: #555; }

/* EFECTO CENSURA (Hover para ver) */
.redacted {
    cursor: help;
    transition: 0.3s;
}
.redacted .blur {
    color: transparent; 
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9); 
    user-select: none;
    transition: all 0.4s ease;
}
.redacted:hover .blur {
    color: var(--primary);
    text-shadow: none; 
}
.redacted:hover i { color: #fff; }

/* BOTONES */
.cta-button {
    text-decoration: none; color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px; 
    font-weight: 800; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
    background: #000; border: 1px solid rgba(255,255,255,0.2);
}

.notify-btn {
    background: #fff; color: #000; border: none; font-weight: 900; letter-spacing: 1px;
}
.notify-btn:hover {
    background: var(--primary); color: #fff; box-shadow: 0 0 20px var(--primary);
}

.hero-actions {
    display: flex; 
    gap: 1.5rem; 
    margin-top: 2rem; 
    flex-wrap: wrap; 
    justify-content: flex-start;
    /* Z-index importante para que flote sobre el fondo */
    position: relative;
    z-index: 10;
}

.scroll-down {
    position: absolute; bottom: 30px;
    display: flex; flex-direction: column; align-items: center; left: 0; right: 0; margin: auto;
    font-size: 0.7rem; letter-spacing: 2px; opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 10;
}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }


/* =========================================
   5. MARQUEE STRIP
   ========================================= */
.marquee-strip {
    background: var(--primary);
    color: #000;
    padding: 0.8rem 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.05);
    position: relative; z-index: 20;
    margin-bottom: 4rem;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.5);
    border-top: 2px solid #fff; border-bottom: 2px solid #fff;
    width: 105%; 
    left: -2.5%; 
}

.marquee-content {
    display: flex; white-space: nowrap; animation: marquee 20s linear infinite;
}
.marquee-content span {
    font-weight: 900; font-size: 1.2rem; text-transform: uppercase; padding-right: 2rem;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   6. SECCIONES MÚSICA & LOGO HERO
   ========================================= */
#musica { max-width: 1200px; margin: 0 auto 8rem; padding: 0 2rem; }
.music-section { max-width: 1200px; margin: 0 auto 6rem; padding: 0 2rem; }

.hero-logo {
    max-width: 350px; width: 80%; height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 42, 42, 0.2));
    user-select: none; pointer-events: none; -webkit-user-drag: none;
}

.section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 3rem; }
.section-header h2 { font-size: 3rem; font-weight: 900; text-transform: uppercase; line-height: 1; }
.text-stroke { -webkit-text-stroke: 1px #fff; color: transparent; }
.line { flex-grow: 1; height: 1px; background: rgba(255,255,255,0.2); }

.music-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem;
}

.music-card {
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
    position: relative;
    display: flex; flex-direction: column; height: 100%;
}
.music-card:hover { transform: translateY(-10px); border-color: var(--primary); }

a.card-image {
    display: block; width: 100%; aspect-ratio: 1/1; overflow: hidden;
    position: relative; cursor: pointer; background-color: #000; border-radius: 8px;
}
.card-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    display: block; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    image-rendering: -webkit-optimize-contrast;
}
.music-card:hover .card-image img { transform: scale(1.1); opacity: 0.8; }

.card-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.card-overlay i { font-size: 4rem; color: #fff; text-shadow: 0 0 20px var(--primary); }
.music-card:hover .card-overlay { opacity: 1; }

.card-info { padding: 1.5rem; position: relative; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-info h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.date { color: #666; font-size: 0.8rem; font-family: monospace; }
.platform-links { position: absolute; right: 1.5rem; top: 1.5rem; display: flex; gap: 10px; }
.platform-links a { color: #fff; font-size: 1.2rem; transition: 0.2s; }
.platform-links a:hover { color: var(--primary); transform: scale(1.2); }

.music-card.popular .card-overlay i { color: var(--accent); text-shadow: 0 0 20px var(--accent); }
.music-card.popular:hover { border-color: var(--accent); }

/* =========================================
   7. FOOTER
   ========================================= */
.footer-rock {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 5rem 2rem;
    background: #000;
}
.social-huge {
    display: flex; justify-content: center; gap: 5vw; flex-wrap: wrap; margin-bottom: 3rem;
}
.social-huge a {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    text-decoration: none;
    transition: 0.4s;
}
.social-huge a:hover {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 30px var(--primary);
}
.footer-meta { text-align: center; color: #555; font-size: 0.9rem; }
.footer-meta a { color: #777; text-decoration: none; }

/* =========================================
   8. ESTILOS PÁGINA CONTACTO
   ========================================= */
#contact-page { padding-top: 120px; padding-bottom: 5rem; min-height: 90vh; }
.contact-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.page-header { text-align: center; margin-bottom: 4rem; }
.page-header h1.glitch { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 0.5rem; }
.handwritten {
    font-family: var(--font-alt); color: var(--primary); font-size: 1.5rem;
    transform: rotate(-2deg); display: inline-block;
}
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1rem; color: #fff; text-transform: uppercase; }
.contact-info p { color: #ccc; margin-bottom: 2rem; line-height: 1.6; }
.info-item {
    display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem;
    background: rgba(255,255,255,0.02); padding: 1rem; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.info-item:hover { background: rgba(255,255,255,0.05); border-color: var(--primary); transform: translateX(5px); }
.info-item i {
    font-size: 1.5rem; color: var(--primary); background: rgba(255, 42, 42, 0.1);
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.info-item div span { display: block; font-size: 0.8rem; color: #888; text-transform: uppercase; font-weight: 700; }
.info-item div a { color: #fff; text-decoration: none; font-size: 1.1rem; font-weight: 600; }
.social-connect { margin-top: 3rem; }
.social-connect .icons { display: flex; gap: 1.5rem; }
.social-connect .icons a { font-size: 1.8rem; color: #fff; transition: 0.3s; }
.social-connect .icons a:hover { color: var(--primary); transform: scale(1.2); }

.contact-form-box {
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px);
    padding: 2.5rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; color: #aaa; font-size: 0.9rem; font-weight: 700; margin-left: 0.5rem; }
.contact-form-box input, .contact-form-box textarea {
    width: 100%; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.2rem; border-radius: 8px; color: #fff; font-family: var(--font-main);
    font-size: 1rem; transition: 0.3s;
}
.contact-form-box textarea { resize: vertical; }
.contact-form-box input:focus, .contact-form-box textarea:focus {
    outline: none; border-color: var(--primary); background: #111; box-shadow: 0 0 15px rgba(255, 42, 42, 0.1);
}
.submit-btn {
    width: 100%; padding: 1.2rem; background: var(--primary); color: #fff; border: none;
    border-radius: 8px; font-weight: 900; font-size: 1rem; text-transform: uppercase;
    cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center;
    gap: 10px; letter-spacing: 1px;
}
.submit-btn:hover { background: #ff0000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); }

/* =========================================
   9. CORRECCIÓN MÓVIL (RESPONSIVE FINAL)
   ========================================= */
@media (max-width: 900px) {
    /* Menú Móvil */
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #000; display: flex; flex-direction: column;
        justify-content: center; align-items: center; gap: 2.5rem;
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: all 0.4s ease-in-out; z-index: 10000;
    }
    .nav-links.active { opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-links a { font-size: 1.5rem; }

    /* Ajuste Hero Móvil */
    .mystery-mode {
        padding-top: 150px;
        padding-bottom: 80px;
        height: auto;
        display: block;
        
        /* EN MÓVIL: */
        /* Usamos el mismo degradado que funde a negro suavemente */
        background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, var(--dark) 70%);
        background-color: var(--dark); /* Color de seguridad */
    }
    .mystery-container {
        display: flex; flex-direction: column; gap: 2.5rem; width: 100%;
        /* Aseguramos que el contenido esté por encima del difuminado negro */
        position: relative;
        z-index: 5;
    }
    .mystery-cover-box {
        max-width: 260px; margin: 0 auto; flex-shrink: 0;
    }
    /* Contenedor de datos (título, pistas) */
    .mystery-data {
        width: 100%;
        text-align: center;
        padding: 0 1rem; /* Padding lateral */
        overflow: hidden; /* Evita que el texto glitch rompa el ancho */
    }
    .data-header h1.glitch { font-size: 2.2rem; }
    
    /* Alinear contenido interior a la izquierda */
    .progress-module, .tracklist-terminal { text-align: left; }
    .tracklist-terminal li { font-size: 0.85rem; padding: 10px 0; }
    .track-name { white-space: normal; line-height: 1.3; }

    /* Botones */
    .hero-actions { justify-content: center !important; width: 100%; margin-top: 2rem; }
    .cta-button { width: 100%; justify-content: center; }

    /* Cinta Roja ajustada para móvil */
    .marquee-strip {
        margin-top: 0;
        background-color: var(--primary); /* Asegura que no tenga transparencia */
        width: 120%; /* Más ancha para asegurar que cubra al rotar */
        margin-left: -10%;
        transform: rotate(-2deg);
        box-shadow: 0 -10px 40px var(--dark); /* Sombra hacia arriba para tapar imperfecciones */
    }
    /* Contacto Móvil */
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-box { padding: 1.5rem; }
}

/* =========================================
   MODAL DE NOTIFICACIÓN (SUSCRIPCIÓN)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 20000; /* Por encima de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-box {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(255, 42, 42, 0.2);
    width: 100%;
    max-width: 450px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover { color: var(--primary); transform: rotate(90deg); }

.modal-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 42, 42, 0.4);
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
}

.modal-header p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.notify-form .input-wrapper {
    margin-bottom: 1.5rem;
}

.notify-form input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    transition: 0.3s;
    font-family: var(--font-main);
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.2);
}

.modal-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.modal-submit-btn:hover {
    background: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.modal-footer-text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   BOTÓN VER DISCOGRAFÍA (HOME)
   ========================================= */

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.outline-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 42, 42, 0.1);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.outline-btn i {
    font-size: 1.2rem;
}

/* Ajuste Móvil */
@media (max-width: 900px) {
    .view-all-wrapper {
        margin-top: 2rem;
        padding: 0 1rem; /* Margen lateral */
    }
    
    .outline-btn {
        width: 100%; /* Botón ancho completo en móvil */
    }
}