:root {
    --bg-color: #0a0a0a;
    --primary-red: #d90429;
    --secondary-gold: #ffd700;
    --text-white: #ffffff;
    --text-grey: #cccccc;
    --nav-bg: rgba(10, 10, 10, 0.95);
    
    --font-title: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Tipografía general */
h1, h2, h3, .logo {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navegación (Sticky Navbar) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: var(--nav-bg);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 2rem;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.nav-fan-link {
    color: var(--secondary-gold) !important;
    border-bottom: 2px solid var(--secondary-gold) !important;
}

.nav-fan-link:hover {
    color: #ffea00 !important;
    border-bottom-color: #ffea00 !important;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-social a {
    font-size: 1.3rem;
    color: var(--text-grey);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-social a:hover {
    color: var(--text-white);
    transform: scale(1.2);
}

.nav-social a:first-child:hover { color: #1DB954; }
.nav-social a:last-child:hover { color: #E1306C; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    /* Área de toque mínima de 44x44px para mobile */
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    background: rgba(255,255,255,0.1);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 800;
    font-family: var(--font-body);
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
}

.btn-primary:hover {
    background-color: #ff0531;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.6);
}

.btn-gold {
    background-color: var(--secondary-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 20px;
    width: 100%;
}

.btn-gold:hover {
    background-color: #ffea00;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000; /* Fallback mientras carga el video */
}

/* Video de fondo */
.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10,10,10,0.6) 60%, var(--bg-color) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Badge RHLM */
.hero-badge {
    display: inline-block;
    background: rgba(217, 4, 41, 0.15);
    border: 1px solid rgba(217, 4, 41, 0.5);
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    padding: 6px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 8px rgba(217,4,41,0.3); }
    50% { box-shadow: 0 0 20px rgba(217,4,41,0.7); }
}

/* Hero Buttons Row */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.hero-btn-main {
    padding: 14px 32px;
    font-size: 0.95rem;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    color: var(--text-white);
    font-weight: 800;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    border-color: var(--text-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Spotify Player in Hero */
.hero-player {
    width: 100%;
    max-width: 660px;
    margin-top: 14px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(29, 185, 84, 0.3);
    border-radius: 14px;
    padding: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(29, 185, 84, 0.1);
}

.hero-player-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.hero-player iframe {
    border-radius: 8px;
    display: block;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.6;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-grey);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-grey), transparent);
    animation: scrollDrop 1.6s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Efecto Glitch para Título Principal */
.glitch-title {
    font-size: 7rem;
    position: relative;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(217, 4, 41, 0.8), 0 0 20px rgba(217, 4, 41, 0.5);
    margin-bottom: 5px;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-title::before {
    left: 4px;
    text-shadow: -2px 0 var(--primary-red);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -4px;
    text-shadow: -2px 0 rgba(0,255,255,0.5); /* Contraste ligero neón */
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(90% 0 5% 0); }
    100% { clip-path: inset(40% 0 30% 0); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-grey);
    margin-bottom: 40px;
    letter-spacing: 5px;
}

/* Layout Secciones */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 25%;
}

/* Fondos de la sección Álbumes */
.albums-bg-collage {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.albums-bg-collage .bg-img {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    /* Mantiene los colores originales, se difumina (blur) y se oscurece para no afectar la legibilidad */
    filter: blur(5px) brightness(0.5) contrast(1.1);
    opacity: 0.85;
    /* Se escala ligeramente para evitar bordes blancos por el blur */
    transform: scale(1.05);
}

.albums-bg-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(10,10,10,0.4) 20%, rgba(10,10,10,0.85) 80%, var(--bg-color) 100%);
    z-index: 2;
}

/* Grid de Álbumes */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.album-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.7) contrast(1.2);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Efecto Hover en Álbumes */
.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 4, 41, 0.2);
}

.album-card:hover img {
    transform: scale(1.08); /* Suave zoom in */
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.album-overlay p {
    color: var(--secondary-gold);
    font-weight: 600;
}

/* Placeholder Sections */
.placeholder-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #0c0c0c;
    border-top: 1px solid #1a1a1a;
}

/* Modal Vista Detallada */
.modal {
    display: block;         /* Siempre en DOM, controlado con visibility+opacity */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    z-index: 2000;          /* Por encima de TODO */
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-content {
    background-color: #121212;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 15px;
    position: relative;
    border: 1px solid #222;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(217, 4, 41, 0.1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-grey);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.modal-layout {
    display: flex;
    flex-direction: row;
}

.modal-left {
    width: 40%;
    padding: 40px;
    background-color: #0a0a0a;
    border-radius: 15px 0 0 15px;
    text-align: center;
}

.modal-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.modal-right {
    width: 60%;
    padding: 40px;
}

#modal-title {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.1;
}

#modal-year {
    color: var(--secondary-gold);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Tracklist interactivo */
.tracklist {
    list-style: none;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Scrollbar personalizado para la lista */
.tracklist::-webkit-scrollbar {
    width: 6px;
}
.tracklist::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
.tracklist::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    color: var(--text-grey);
    border-radius: 8px;
    margin-bottom: 5px;
}

.track-item:hover {
    background-color: #1a1a1a;
    color: var(--text-white);
    transform: translateX(5px);
    border-left: 3px solid var(--primary-red);
}

.track-item a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.track-number {
    font-size: 0.9rem;
    width: 20px;
    color: #555;
    font-weight: 800;
}

.track-play-icon {
    color: var(--primary-red);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.8);
}

.track-item:hover .track-play-icon {
    opacity: 1;
    transform: scale(1);
}

.track-title {
    flex-grow: 1;
    font-weight: 600;
}

.track-duration {
    font-size: 0.85rem;
    color: #888;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid #151515;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--text-grey);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--text-white);
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.signature {
    font-size: 1.5rem;
    font-family: var(--font-title);
    color: var(--primary-red);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Animaciones AOS (Fade In Up) */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE DESIGN — MOBILE FIRST
   ===================================================== */

/* --- Menu movil desplegable --- */
.nav-links.nav-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 35px;
    z-index: 999;
    animation: menuSlideIn 0.3s ease;
}

@keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-links.nav-open a {
    font-size: 1.8rem;
    font-family: var(--font-title);
    letter-spacing: 4px;
}

.nav-links.nav-open li:last-child {
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 10px;
}

/* --- Tablet 900px --- */
@media (max-width: 900px) {
    .modal-layout { flex-direction: column; }
    .modal-left, .modal-right { width: 100%; border-radius: 15px; }
    .modal-left { padding: 30px; background: transparent; }
    .modal-left img { max-width: 280px; margin: 0 auto; }
    .modal-right { padding: 10px 20px 40px; }
    .glitch-title { font-size: 5rem; }
    .fan-grid { grid-template-columns: 1fr; }
    .fan-side-panel { display: none; }
    .tour-layout { grid-template-columns: 1fr; }
    .tour-poster-wrapper { position: static; max-width: 300px; margin: 0 auto; }
}

/* --- Mobile 768px --- */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-social { gap: 10px; }
    .nav-social a { font-size: 1.1rem; }

    /* Hero */
    .glitch-title { font-size: 3.2rem; letter-spacing: 1px; }
    .subtitle { font-size: 0.9rem; letter-spacing: 3px; }
    .hero-badge { font-size: 0.65rem; padding: 5px 14px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
    .hero-btn-main, .btn-outline-hero { width: 100%; justify-content: center; padding: 14px 20px; }
    .hero-player { padding: 12px; margin-top: 10px; }
    .hero-scroll-indicator { display: none; }

    /* Layout general */
    .section-title { font-size: 2rem; }
    .container { padding: 60px 16px; }

    /* Albums */
    .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Modal */
    .modal-content { margin: 10px; max-height: 95vh; overflow-y: auto; }
    #modal-title { font-size: 1.8rem; }
    .tracklist { max-height: 250px; }

    /* Zona Fan */
    .fan-banner { height: 200px; }
    .fan-banner-overlay { padding: 0 24px; }
    .fan-banner-title { font-size: 1.6rem; }
    .fan-banner-sub { display: none; }
    .fan-stats-row { padding: 14px 10px; margin-bottom: 30px; }
    .fan-stat-num { font-size: 1.8rem; }
    .fan-stat-label { font-size: 0.62rem; letter-spacing: 1px; }
    .fan-stat-divider { height: 36px; margin: 0 6px; }
    .fan-card { padding: 20px 16px; }

    /* Tour */
    .tour-date-card { flex-wrap: wrap; gap: 14px; padding: 16px; }
    .btn-ticket { width: 100%; justify-content: center; }
    .tour-all-btn { padding: 14px 20px; font-size: 0.9rem; }

    /* Biografia */
    .bio-content { padding: 24px 16px; }
    .bio-text-block h2 { font-size: 1.6rem; }
    .video-grid { grid-template-columns: 1fr; }
    
    /* Timeline Responsive */
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 15px; }
    .timeline-item.right { left: 0; }
    .timeline-item.left::after, .timeline-item.right::after { left: 19px; }

    /* Footer */
    .social-icons { gap: 20px; }
    .social-icons a { font-size: 1.5rem; }
    .signature { font-size: 1.1rem; }
}

/* --- Mobile pequeno 430px --- */
@media (max-width: 430px) {
    .glitch-title { font-size: 2.6rem; }
    .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fan-banner-title { font-size: 1.3rem; }
    .nav-container { padding: 0 14px; }
    .logo { font-size: 1.6rem; }
    .hero-player iframe { height: 130px; }
    .fan-stats-row { flex-wrap: wrap; gap: 16px; }
    .fan-stat-divider { display: none; }
    .fan-stat-item { flex: 1 1 40%; }
}

/* --- Estilos Biografía --- */
.bio-section {
    padding-top: 150px; /* Compensa el navbar */
    min-height: 100vh;
    position: relative;
    background: #000;
}

.bio-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.2);
    z-index: 0;
}

.bio-bg-color-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-red); /* Un mismo color base para todas */
    mix-blend-mode: multiply; /* Pinta las fotos grises de rojo oscuro */
    z-index: 1;
    opacity: 0.8; /* Intensidad del teñido */
}

.bio-bg-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(10,10,10,0.5) 20%, rgba(10,10,10,0.85) 75%, var(--bg-color) 100%);
    z-index: 2;
}

.bio-section .container {
    position: relative;
    z-index: 2;
}

.bio-content {
    background: #111;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid #222;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-red), var(--secondary-gold));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 50px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background: var(--bg-color);
    border: 4px solid var(--secondary-gold);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transition: background 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover::after {
    background: var(--secondary-gold);
    transform: scale(1.2);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-content {
    padding: 30px;
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(217, 4, 41, 0.2);
}

.timeline-content h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-title);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-content p {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.bio-text-block {
    margin-bottom: 40px;
}

.bio-text-block h2 {
    color: var(--primary-red);
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-title);
}

.bio-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.bio-text-block strong, .bio-text-block em {
    color: var(--text-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 1px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.2);
    border-color: var(--primary-red);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 8px;
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.video-info p {
    font-size: 1rem;
    color: #888;
}

/* --- Nuevas Características Urbanas y Zona Fan --- */

/* Video Background en Hero */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* No clickable */
    filter: brightness(0.6) contrast(1.2);
}

.hero-overlay {
    z-index: 1; /* Encima del video */
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), var(--bg-color));
}

/* Efectos Neón */
.btn-neon {
    box-shadow: 0 0 10px var(--primary-red), 0 0 20px var(--primary-red), 0 0 40px var(--primary-red);
    border: 1px solid var(--primary-red);
}
.btn-neon:hover {
    box-shadow: 0 0 20px var(--primary-red), 0 0 40px var(--primary-red), 0 0 80px var(--primary-red);
}

.neon-text {
    text-shadow: 0 0 5px var(--secondary-gold), 0 0 15px var(--secondary-gold);
}

/* Zona Fan */
.fan-section {
    position: relative;
    padding: 0;
    background: #050505;
    border-top: 1px solid #222;
    overflow: hidden;
}

/* Banner Full Width */
.fan-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.fan-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(0.4) brightness(0.5);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.fan-banner:hover .fan-banner-img {
    transform: scale(1.12);
}

.fan-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, transparent 100%),
                linear-gradient(to top, rgba(5,5,5,1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.fan-banner-content {
    max-width: 600px;
}

.fan-banner-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fan-banner-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(217,4,41,0.6);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.fan-banner-sub {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.5;
}

/* Stats Row */
.fan-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(217,4,41,0.07);
    border: 1px solid rgba(217,4,41,0.2);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 50px;
}

.fan-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.fan-stat-num {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--secondary-gold);
    line-height: 1;
}

.fan-stat-label {
    font-size: 0.72rem;
    color: var(--text-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.fan-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    margin: 0 10px;
}

/* Fan Grid (now 2 columns) */
.fan-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    position: relative;
    z-index: 10;
    align-items: start;
}

/* Side Panel */
.fan-side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fan-quote-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 240px;
}

.fan-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.6);
    transition: filter 0.5s ease;
}

.fan-quote-card:hover .fan-side-img {
    filter: brightness(0.5) saturate(0.8);
}

.fan-quote-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.fan-quote {
    font-size: 1rem;
    color: var(--text-white);
    font-style: italic;
    line-height: 1.5;
    border-left: 3px solid var(--primary-red);
    padding-left: 12px;
    margin-bottom: 8px;
}

.fan-quote-author {
    font-size: 0.8rem;
    color: var(--secondary-gold);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Levels Guide */
.fan-levels-guide {
    background: rgba(15,15,15,0.9);
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 20px;
}

.fan-levels-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fan-level-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.85rem;
    color: var(--text-grey);
}

.fan-level-row:last-child { border-bottom: none; }

.fan-level-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lv1 { background: rgba(100,200,100,0.15); color: #6dca6d; border: 1px solid rgba(100,200,100,0.3); }
.lv2 { background: rgba(100,180,255,0.15); color: #64b4ff; border: 1px solid rgba(100,180,255,0.3); }
.lv3 { background: rgba(255,200,50,0.15); color: #ffc832; border: 1px solid rgba(255,200,50,0.3); }
.lv4 { background: rgba(255,140,0,0.15); color: #ff8c00; border: 1px solid rgba(255,140,0,0.3); }
.lv5 { background: rgba(217,4,41,0.15); color: var(--primary-red); border: 1px solid rgba(217,4,41,0.3); }
.lv6 { background: rgba(180,0,180,0.15); color: #cc44cc; border: 1px solid rgba(180,0,180,0.3); }

.trivia-container {
    width: 100%;
}

.fan-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.fan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Ranking de Canciones */
.ranking-list {
    list-style: none;
}

.ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #222;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    background: rgba(217, 4, 41, 0.1);
    transform: translateX(5px);
    border-left: 3px solid var(--primary-red);
}

.ranking-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ranking-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-gold);
}

.ranking-title {
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Modificaciones para Ranking PRO / Votaciones */
.poll-section {
    transition: all 0.3s ease;
}

.poll-section.locked {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    filter: grayscale(80%);
}

.locked-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* Se muestra si el padre tiene .locked */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

.poll-section.locked .locked-overlay {
    display: flex;
}

.locked-overlay i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary-red);
}

.locked-overlay span {
    font-weight: 800;
    text-align: center;
    padding: 0 20px;
}

.poll-bar-container {
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: rgba(217, 4, 41, 0.2);
    z-index: 0;
    transition: width 1s cubic-bezier(0.1, 0.7, 0.1, 1);
    border-radius: 5px 0 0 5px;
}

.ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #222;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.poll-percentage {
    font-size: 0.9rem;
    color: #fff;
    margin-left: 10px;
    font-weight: bold;
    z-index: 2;
    min-width: 45px;
    display: inline-block;
    text-align: right;
}

.vote-btn {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.vote-btn:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-red);
}

/* Tooltip (Preview Visual) */
.song-preview-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.song-preview-link:hover {
    color: var(--secondary-gold);
}

.song-preview-link::after {
    content: "▶ YouTube";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    background: var(--primary-red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.song-preview-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(5px);
}

/* Trivia */
.trivia-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trivia-btn {
    background: #111;
    border: 1px solid #444;
    color: #ccc;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trivia-btn:hover {
    background: #222;
    border-color: var(--secondary-gold);
    color: #fff;
}

.trivia-btn.correct {
    background: rgba(0, 255, 0, 0.2);
    border-color: #0f0;
    color: #0f0;
}

.trivia-btn.incorrect {
    background: rgba(255, 0, 0, 0.2);
    border-color: #f00;
    color: #f00;
}

/* Humo CSS Animation */
.smoke-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.smoke {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    bottom: -150px;
    animation: smokeAnim 15s infinite linear;
}

.smoke:nth-child(1) { left: 10%; animation-duration: 20s; }
.smoke:nth-child(2) { left: 50%; animation-duration: 18s; animation-delay: -5s; }
.smoke:nth-child(3) { left: 80%; animation-duration: 22s; animation-delay: -10s; }

@keyframes smokeAnim {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-800px) scale(3); opacity: 0; }
}

@media (max-width: 768px) {
    .fan-grid { grid-template-columns: 1fr; }
    .video-background iframe {
        width: 300vw; /* Asegurar que cubra en movil */
        height: 168vw;
    }
}

/* --- Estilos del Timeline Animado (Biografía) --- */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-red);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    box-shadow: 0 0 15px var(--primary-red);
    border-radius: 5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--bg-color);
    border: 4px solid var(--secondary-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--secondary-gold);
}

.left { left: 0; }
.right { left: 50%; }

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #111;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #111;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #111;
    border-width: 10px 10px 10px 0;
    border-color: transparent #111 transparent transparent;
}

.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #111;
    position: relative;
    border-radius: 6px;
    border: 1px solid #222;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(217, 4, 41, 0.3);
    border-color: var(--primary-red);
}

.timeline-content h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-title);
    text-shadow: 0 0 5px rgba(217,4,41,0.5);
}

.timeline-content p {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::before { left: 60px; border: medium solid #111; border-width: 10px 10px 10px 0; border-color: transparent #111 transparent transparent; }
    .left::after, .right::after { left: 15px; }
    .right { left: 0%; }
}

/* --- Animación Typing Dots (Trivia IA) --- */
.typing-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.typing-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: typingBounce 1.2s infinite ease-in-out;
    box-shadow: 0 0 6px var(--primary-red);
}
.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* =====================================================
   TOUR SECTION — Real Hasta La Muerte 2 Tour 2026
   ===================================================== */

.tour-section {
    background: #050505;
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.tour-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(217,4,41,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tour-subtitle {
    text-align: center;
    color: var(--secondary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -30px;
    margin-bottom: 60px;
}

.tour-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}

.tour-poster-wrapper {
    position: sticky;
    top: 120px;
}

.tour-poster-link {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(217,4,41,0.35), 0 20px 60px rgba(0,0,0,0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-poster-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 60px rgba(217,4,41,0.55), 0 30px 80px rgba(0,0,0,0.9);
}

.tour-poster-img {
    width: 100%;
    display: block;
    border-radius: 18px;
    filter: brightness(0.92);
    transition: filter 0.4s ease;
}

.tour-poster-link:hover .tour-poster-img {
    filter: brightness(0.7);
}

.tour-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: rgba(217,4,41,0.15);
}

.tour-poster-link:hover .tour-poster-overlay {
    opacity: 1;
}

.tour-poster-cta {
    background: var(--primary-red);
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(217,4,41,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-dates-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tour-dates-heading {
    font-family: var(--font-title);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-date-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(15,15,15,0.9);
    border: 1px solid #222;
    border-radius: 14px;
    padding: 22px 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.tour-date-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.35s ease;
    border-radius: 4px 0 0 4px;
}

.tour-date-card:hover::before {
    transform: scaleY(1);
}

.tour-date-card:hover {
    background: rgba(217,4,41,0.07);
    border-color: var(--primary-red);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(217,4,41,0.15);
}

.tour-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 58px;
    background: rgba(217,4,41,0.12);
    border: 1px solid rgba(217,4,41,0.3);
    border-radius: 10px;
    padding: 10px 12px;
}

.tour-day {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--text-white);
    line-height: 1;
}

.tour-month {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-top: 2px;
}

.tour-info {
    flex: 1;
}

.tour-venue {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.tour-city {
    font-size: 0.9rem;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-city i {
    color: var(--secondary-gold);
    font-size: 0.8rem;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ticket:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 15px rgba(217,4,41,0.5);
    transform: scale(1.05);
}

.tour-all-btn {
    margin-top: 10px;
    text-align: center;
    padding: 16px 36px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pulseTour 2.5s ease-in-out infinite;
}

@keyframes pulseTour {
    0%, 100% { box-shadow: 0 0 10px var(--primary-red), 0 0 20px var(--primary-red), 0 0 40px var(--primary-red); }
    50% { box-shadow: 0 0 20px var(--primary-red), 0 0 40px var(--primary-red), 0 0 70px var(--primary-red); }
}

@media (max-width: 1000px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
    .tour-poster-wrapper {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .tour-date-card {
        flex-wrap: wrap;
        gap: 16px;
        padding: 18px 20px;
    }
    .btn-ticket {
        width: 100%;
        justify-content: center;
    }
}
