/* ============================================
   Reset y Variables
   ============================================ */

:root {
    --primary-color: #ff0055;
    --secondary-color: #cc0044;
    --dark-bg: #000000;
    --medium-dark: #0d0d0d;
    --light-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #999999;
    --accent-gold: #ffcc00;
    --accent-cyan: #00ffff;
    --accent-purple: #9d00ff;
    --transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 0, 85, 0.03) 2px, rgba(255, 0, 85, 0.03) 4px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Tipografía
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: glitch 5s infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 0 20px var(--primary-color);
}

/* ============================================
   Navegación
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--accent-cyan), var(--accent-purple)) 1;
    box-shadow: 0 4px 30px rgba(255, 0, 85, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--text-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a0a1a 0%, #000000 70%);
    background-image: url('../assets/Portada horizontal Álbum Restaurando la Belleza del Caos.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 85, 0.03) 2px,
        rgba(255, 0, 85, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 85, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.1), transparent 50%),
                rgba(0, 0, 0, 0.7);
    animation: pulseOverlay 10s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease, glitchTitle 3s infinite;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 0, 85, 0.7)) drop-shadow(0 0 40px rgba(0, 255, 255, 0.5));
    position: relative;
}

@keyframes glitchTitle {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-2px, 2px); }
    92% { transform: translate(2px, -2px); }
    93% { transform: translate(-2px, -2px); }
    94% { transform: translate(2px, 2px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0.3em;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* ============================================
   Botones
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-color));
    border-color: var(--accent-cyan);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.8), 0 10px 30px rgba(255, 0, 85, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 10px 30px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.8), 0 10px 20px rgba(255, 0, 85, 0.4);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   Sección Novedades
   ============================================ */

.news {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 85, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.05), rgba(0, 255, 255, 0.05));
    padding: 3rem;
    border-radius: 0;
    text-align: center;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-cyan)) 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.3), inset 0 0 40px rgba(255, 0, 85, 0.05);
}

.news-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 0, 85, 0.1), transparent 30%);
    animation: rotateBg 8s linear infinite;
}

.news-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-image: url('../assets/Pache smile.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: grayscale(1) contrast(1.5);
    mix-blend-mode: overlay;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.6);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 85, 0.6); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 85, 0.9), 0 0 40px rgba(0, 255, 255, 0.4); }
}

.news-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.news-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Sección Música
   ============================================ */

.music-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 85, 0.05), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.album-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Header del álbum con portada integrada */
.album-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.08), rgba(0, 255, 255, 0.05));
    padding: 3rem;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-cyan)) 1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
    position: relative;
    overflow: hidden;
}

.album-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 0, 85, 0.05), transparent 30%);
    animation: rotateBg 15s linear infinite;
}

.album-cover {
    position: relative;
    z-index: 1;
}

.album-cover img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 0 60px rgba(255, 0, 85, 0.6), 0 0 100px rgba(0, 255, 255, 0.3);
    transition: var(--transition);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-cyan), var(--accent-purple)) 1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    filter: contrast(1.1) saturate(1.2);
}

.album-cover img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 80px rgba(255, 0, 85, 0.8), 0 0 120px rgba(0, 255, 255, 0.5);
    filter: contrast(1.2) saturate(1.4);
}

.album-header-info {
    position: relative;
    z-index: 1;
}

.album-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--text-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.album-year {
    color: var(--accent-cyan);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.album-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.album-format {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.format-badge {
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.4), inset 0 0 10px rgba(255, 0, 85, 0.1);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    transition: var(--transition);
}

.format-badge:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.8);
}

/* Grid de contenido del álbum */
.album-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

/* Reproductor */
.music-player {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.05), rgba(157, 0, 255, 0.05));
    padding: 2rem;
    border-radius: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-purple)) 1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.2);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.music-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.music-player h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-player iframe {
    width: 100%;
    height: 315px;
    border-radius: 0;
    border: 2px solid rgba(255, 0, 85, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.3);
}

/* Tracklist */
.tracklist {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(157, 0, 255, 0.05));
    padding: 2rem;
    border-radius: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)) 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    height: fit-content;
}

.tracklist h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tracklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.disc h5 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.disc ol {
    list-style-position: inside;
    color: var(--text-gray);
}

.disc ol li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 0, 85, 0.1);
    transition: var(--transition);
    position: relative;
    padding-left: 0.5rem;
}

.disc ol li:hover {
    color: var(--accent-cyan);
    padding-left: 1rem;
    border-left: 3px solid var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Créditos */
.credits {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.05), rgba(255, 0, 85, 0.03));
    padding: 2rem;
    border-radius: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-purple), var(--primary-color)) 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    grid-column: 1 / -1;
}

.credits h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credits ul {
    list-style: none;
    margin-bottom: 1rem;
}

.credits ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.production-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ============================================
   Sección Videos
   ============================================ */

.videos-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(157, 0, 255, 0.05), transparent 40%);
    pointer-events: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-cyan), var(--accent-purple), var(--primary-color));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    animation: gradientShift 3s ease infinite;
}

.video-card:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.video-thumbnail {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(30%) contrast(1.1);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.15);
    filter: grayscale(0%) contrast(1.2) saturate(1.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    transition: var(--transition);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.video-card:hover .play-button {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-color));
    transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.9), inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.video-card h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, var(--text-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modal de Video */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-video-container {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Sección Biografía
   ============================================ */

.biography-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.biography-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 350px;
    height: 350px;
    background-image: url('../assets/Adán Pache.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: grayscale(1) contrast(1.3);
    transform: rotate(15deg);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.biography-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -80px;
    width: 300px;
    height: 300px;
    background-image: url('../assets/E y G.png');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    filter: grayscale(1);
    transform: rotate(-10deg);
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.biography-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-text h3 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.bio-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.1), transparent);
    padding: 2rem;
    border-radius: 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

/* Miembros de la Banda */
.band-members {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.05), rgba(0, 255, 255, 0.05));
    border-radius: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-cyan)) 1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    position: relative;
}

.band-members h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.member-card {
    text-align: center;
    transition: var(--transition);
    padding: 1.5rem;
    border: 2px solid transparent;
    position: relative;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-cyan)) 1;
    opacity: 0;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.member-card:hover::before {
    opacity: 1;
}

.member-card:hover {
    transform: translateY(-15px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 0;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple), var(--accent-cyan));
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.5), 0 0 50px rgba(0, 255, 255, 0.3);
    clip-path: polygon(0% 20%, 20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%);
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.member-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Tripsichore */
.tripsichore-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.08), rgba(255, 0, 85, 0.05));
    border-radius: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-purple), var(--primary-color)) 1;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.2);
}

/* ============================================
   Sección Galería
   ============================================ */

.gallery-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 85, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 0, 85, 0.3);
    background: var(--dark-bg);
}

/* Variaciones de tamaño para layout dinámico */
.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: 1 / 2;
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

/* Clip-paths alternados para cada imagen */
.gallery-item:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-purple)) 1;
}

.gallery-item:nth-child(2) {
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--primary-color)) 1;
}

.gallery-item:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    border-image: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan)) 1;
}

.gallery-item:nth-child(4) {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-gold)) 1;
}

.gallery-item:nth-child(5) {
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)) 1;
}

.gallery-item:nth-child(6) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    border-image: linear-gradient(135deg, var(--accent-gold), var(--primary-color)) 1;
}

.gallery-item:nth-child(7) {
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-cyan)) 1;
}

.gallery-item:nth-child(8) {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
    border-image: linear-gradient(135deg, var(--accent-purple), var(--accent-gold)) 1;
}

.gallery-item:nth-child(9) {
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--primary-color)) 1;
}

.gallery-item:nth-child(10) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    border-image: linear-gradient(135deg, var(--accent-gold), var(--accent-cyan)) 1;
}

.gallery-item:nth-child(11) {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-purple)) 1;
}

.gallery-item:nth-child(12) {
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold)) 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.3) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0) contrast(1.2) saturate(1.3);
}

/* Overlay con gradiente y texto */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.8), 0 0 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Efecto de glow en hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

.gallery-item:hover::before {
    opacity: 0.8;
}

.gallery-item:nth-child(odd):hover {
    box-shadow: 
        0 0 30px rgba(255, 0, 85, 0.6),
        0 0 60px rgba(255, 0, 85, 0.3),
        inset 0 0 20px rgba(255, 0, 85, 0.1);
}

.gallery-item:nth-child(even):hover {
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

/* ============================================
   Sección Tour
   ============================================ */

.tour-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.tour-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 85, 0.08), transparent 60%);
    pointer-events: none;
}

.tour-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 400px;
    height: 400px;
    background-image: url('../assets/Gaby Edward Abraham.png');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    filter: grayscale(1) blur(2px);
    transform: translateY(-50%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.tour-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.tour-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.05), transparent);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 0;
    border: 2px solid transparent;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 15px, calc(100% - 15px) 100%, 0 100%);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.tour-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 85, 0.1), transparent);
    transition: var(--transition);
}

.tour-item:hover::before {
    left: 100%;
}

.tour-item:hover {
    border-left-color: var(--accent-cyan);
    transform: translateX(20px);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.3), -10px 0 30px rgba(0, 255, 255, 0.2);
}

.tour-date {
    text-align: center;
}

.tour-date .day {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.tour-date .month {
    display: block;
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.tour-info p {
    color: var(--text-gray);
}

.tour-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-gray);
}

/* ============================================
   Sección Newsletter
   ============================================ */

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.9), rgba(157, 0, 255, 0.8), rgba(0, 255, 255, 0.6));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% { transform: translateX(0); }
    100% { transform: translateX(28px); }
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--text-light);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   Sección Contacto
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.download-links {
    margin-top: 1rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--medium-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--accent-cyan), var(--accent-purple)) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-gray);
    font-style: italic;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* ============================================
   Animaciones
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* ============================================
   Efectos Glitch y Experimentales
   ============================================ */

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    92% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    94% {
        transform: translate(2px, -2px);
        filter: hue-rotate(180deg);
    }
    96% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(270deg);
    }
    98% {
        transform: translate(2px, 2px);
        filter: hue-rotate(360deg);
    }
}

/* Efecto de escaneo */
@keyframes scan {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* Efecto de parpadeo neón */
@keyframes flicker {
    0%, 100% { opacity: 1; }
    41%, 43% { opacity: 0.8; }
    45% { opacity: 0.2; }
    47%, 49% { opacity: 0.9; }
    51% { opacity: 0.3; }
    53% { opacity: 1; }
}

/* Efecto de distorsión RGB */
.glitch-effect {
    position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-effect::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(39px, 9999px, 64px, 0);
    }
    20% {
        clip: rect(76px, 9999px, 95px, 0);
    }
    40% {
        clip: rect(23px, 9999px, 51px, 0);
    }
    60% {
        clip: rect(68px, 9999px, 12px, 0);
    }
    80% {
        clip: rect(91px, 9999px, 34px, 0);
    }
    100% {
        clip: rect(45px, 9999px, 78px, 0);
    }
}

/* Línea de escaneo CRT */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    animation: scan 3s linear infinite;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* Efecto de ruido de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    animation: noise 0.2s infinite;
}

@keyframes noise {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.05; }
}

/* Efecto hover con distorsión */
.distortion-hover {
    transition: var(--transition);
}

.distortion-hover:hover {
    animation: distort 0.3s ease;
}

@keyframes distort {
    0%, 100% {
        transform: scale(1) skew(0deg);
    }
    25% {
        transform: scale(1.02) skew(1deg);
    }
    50% {
        transform: scale(0.98) skew(-1deg);
    }
    75% {
        transform: scale(1.01) skew(0.5deg);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .album-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-content-grid {
        grid-template-columns: 1fr;
    }

    .tracklist-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .news-card {
        padding: 2rem 1rem;
    }

    .news-card h2 {
        font-size: 1.8rem;
    }

    .album-title {
        font-size: 2rem;
    }

    .album-year {
        font-size: 1rem;
    }

    .album-content-grid {
        gap: 1.5rem;
    }

    .music-player,
    .tracklist {
        padding: 1.5rem;
    }

    .tracklist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .format-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item-wide,
    .gallery-item-tall {
        aspect-ratio: 1;
    }

    .gallery-label {
        font-size: 0.9rem;
    }
}
