/* styles.css - Versión Profesional Equilibrada */

/* ===================================
   VARIABLES CSS - PALETA DEL LOGO
   =================================== */
:root {
    /* Colores principales profesionalizados - Menos saturados, más elegantes */
    --champeta-green: #00E676;       /* Verde esmeralda brillante (antes neón puro) */
    --champeta-yellow: #FFD600;      /* Amarillo oro (antes amarillo primario) */
    --champeta-orange: #FF6D00;      /* Naranja intenso profundo */
    --champeta-lime: #C6FF00;        /* Lima suavizado */
    
    /* Gradientes principales - Transiciones más suaves */
    --gradient-logo: linear-gradient(135deg, #00E676 0%, #C6FF00 35%, #FFD600 65%, #FF6D00 100%);
    --gradient-fresh: linear-gradient(45deg, #00E676, #C6FF00, #FFD600);
    --gradient-warm: linear-gradient(45deg, #FFD600, #FF6D00);
    
    /* Colores oscuros (sin cambios, son buenos) */
    --bg-dark: #0f1419;
    --bg-card: #1a1f2e;
    
    /* Versiones con transparencia ajustadas a los nuevos colores */
    --green-alpha-low: rgba(0, 230, 118, 0.08);
    --green-alpha-mid: rgba(0, 230, 118, 0.15);
    --yellow-alpha-low: rgba(255, 214, 0, 0.08);
    --yellow-alpha-mid: rgba(255, 214, 0, 0.15);
    --orange-alpha-low: rgba(255, 109, 0, 0.08);
    
    /* Bordes */
    --border-alpha: rgba(0, 230, 118, 0.2);
    --border-yellow: rgba(255, 214, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-dark);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.95);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--champeta-green), var(--champeta-yellow));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--champeta-yellow), var(--champeta-orange));
}

/* ===================================
   HEADER
   =================================== */
.header {
    background: rgba(15, 20, 25, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--champeta-green);
    box-shadow: 0 4px 20px rgba(50, 255, 50, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-top: -2px;
    box-shadow: 0 0 15px rgba(50, 255, 50, 0.4);
    transition: box-shadow 0.3s ease;
}

.logo:hover .logo-image {
    box-shadow: 0 0 25px rgba(50, 255, 50, 0.6);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    background: var(--gradient-logo);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    filter: drop-shadow(0 2px 4px rgba(50, 255, 50, 0.3));
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    list-style: none;
    align-items: center;
    background: var(--green-alpha-low);
    padding: 0.4rem;
    border-radius: 40px;
    border: 1px solid var(--border-alpha);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.02);
}

.nav-links a:hover {
    color: #ffffff;
    background: var(--green-alpha-mid);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 255, 50, 0.2);
}

/* Menú hamburguesa */
.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    border-top: 2px solid var(--champeta-green);
    z-index: 1001;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.mobile-menu a:hover {
    background: var(--green-alpha-mid);
    color: #ffffff;
    padding-left: 2.5rem;
    border-left: 3px solid var(--champeta-yellow);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green-alpha-low);
    border: 1px solid var(--border-alpha);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--green-alpha-mid);
    border-color: var(--champeta-green);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(50, 255, 50, 0.3);
}

/* ===================================
   MAIN CONTENT
   =================================== */
.main-content {
    margin-top: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

/* Loading */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--champeta-green);
    font-size: 1.2rem;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--green-alpha-mid);
    border-top: 2px solid var(--champeta-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   HERO SLIDER
   =================================== */
.hero-slider {
    margin: 2rem 0 4rem 0;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 650px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(50, 255, 50, 0.15);
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--border-alpha);
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: white;
    max-width: 600px;
}

.slide-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 8px rgba(50, 255, 50, 0.4));
}

.slide-description {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.slide-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-fresh);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(50, 255, 50, 0.3);
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 255, 50, 0.5);
    filter: brightness(1.1);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.slider-dot.active {
    background: var(--gradient-fresh);
    border-color: var(--champeta-yellow);
    box-shadow: 0 0 10px var(--champeta-green);
}

.slider-dot:hover {
    background: rgba(50, 255, 50, 0.7);
    transform: scale(1.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--border-alpha);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: var(--champeta-yellow);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--green-alpha-mid);
    border-color: var(--champeta-green);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(50, 255, 50, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    margin: 5rem 0;
    position: relative;
}

.section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(50, 255, 50, 0.3));
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-fresh);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--champeta-green);
}

/* ===================================
   DJS GRID
   =================================== */
.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    padding: 0.5rem;
}

.dj-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
                0 0 15px var(--green-alpha-low);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--border-alpha);
}

.dj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(50, 255, 50, 0.3),
                0 0 25px var(--green-alpha-mid);
    border-color: var(--champeta-green);
}

.dj-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    transition: transform 0.5s ease;
    z-index: 1;
}

.dj-card:hover .dj-image {
    transform: scale(1.05);
}

.dj-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.dj-image-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.info-text {
    flex: 1;
    min-width: 0;
}

.dj-specialty {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--champeta-yellow);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--yellow-alpha-low);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.3rem;
    border: 1px solid var(--border-yellow);
}

.dj-image-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.dj-card:hover .dj-image-info h3 {
    text-shadow: 0 0 10px rgba(50, 255, 50, 0.5);
}

.dj-schedule {
    display: none; 
}

/* Botón YouTube DJ */
.dj-youtube-link {
    flex-shrink: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0; 
}

.dj-youtube-link::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFF00'%3E%3Cpath d='M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.dj-youtube-link:hover {
    background: transparent;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--champeta-orange));
}

.dj-info { display: none; }

/* ===================================
   TOP 5 VIDEOS
   =================================== */
/* ===================================
   TOP 5 VIDEOS (Sin botón superpuesto y colores pros)
   =================================== */
.top5-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.top5-item {
    display: flex;
    align-items: center;
    background: var(--green-alpha-low);
    border: 1px solid var(--border-alpha);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.top5-item:hover {
    transform: translateY(-2px);
    border-color: var(--champeta-green); /* Borde verde profesional al pasar mouse */
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.15);
}

.top5-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-fresh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
    background-color: var(--green-alpha-low);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-alpha);
    flex-shrink: 0;
}

.top5-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-alpha);
    transition: all 0.3s ease;
    cursor: pointer;
    /* SE HA ELIMINADO EL ::after (BOTÓN PLAY SUPERPUESTO) */
}

.top5-thumbnail:hover {
    border-color: var(--champeta-green); /* Marco verde al pasar mouse */
    transform: scale(1.02);
}

.top5-info {
    flex: 1;
    min-width: 0;
    margin-right: 1rem;
}

.top5-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top5-artist {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top5-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 230, 118, 0.1); /* Fondo verde suave */
    border: 2px solid var(--champeta-green); /* Borde verde profesional */
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--champeta-green); /* Ícono verde */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.top5-play-btn:hover {
    background: var(--champeta-green); /* Fondo verde sólido en hover */
    color: #000000; /* Ícono negro para contraste */
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4); /* Brillo verde suave */
}

.top5-play-btn:active {
    transform: scale(0.95);
}

/* ===================================
   MODAL
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: rgba(15, 20, 25, 0.95);
    border: 2px solid var(--champeta-green);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 50px rgba(50, 255, 50, 0.2), 
                0 20px 40px rgba(0,0,0,0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modal.show .modal-content-wrapper {
    transform: scale(1);
}

.modal-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-info {
    padding: 1.5rem 1rem 0.5rem;
    text-align: center;
}

.modal-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.modal-info p {
    background: var(--gradient-fresh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--champeta-orange);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.close-modal-btn:hover {
    background: var(--champeta-yellow);
    border-color: var(--champeta-yellow);
    color: #000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0f1419 100%);
    border-top: 2px solid var(--champeta-green);
    margin-top: 5rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green-alpha-low);
    border: 1px solid var(--border-alpha);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--green-alpha-mid);
    border-color: var(--champeta-green);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(50, 255, 50, 0.3);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright strong {
    background: var(--gradient-fresh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Debug Info */
.debug-info {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--champeta-green);
    padding: 1rem;
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.8rem;
    max-width: 300px;
    z-index: 1500;
    display: none;
    border: 1px solid var(--border-alpha);
}

/* ===================================
   BOTÓN COMPARTIR
   =================================== */
.sticky-share-label {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 5px;
    background: rgba(15, 20, 25, 0.85);
    border: 1px solid var(--border-alpha);
    border-left: none;
    border-radius: 0 8px 8px 0;
    color: var(--champeta-yellow);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-share-label:hover {
    opacity: 1;
    background: rgba(15, 20, 25, 0.95);
    box-shadow: 0 0 15px var(--green-alpha-mid);
    padding-left: 8px;
    border-color: var(--champeta-green);
}

.share-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.share-icon {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.sticky-share-label:hover .share-icon {
    transform: scale(1.1);
    color: var(--champeta-green);
}

/* ===================================
   NOTIFICACIONES TOAST
   =================================== */
.toast {
    visibility: hidden;
    min-width: 100px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 3000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    border: 1px solid var(--champeta-green);
    box-shadow: 0 4px 15px rgba(50, 255, 50, 0.3);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

.toast strong {
    background: var(--gradient-fresh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets y menores - Mostrar hamburguesa */
@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }
    
    .social-icons {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1002;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        padding: 2rem 1.5rem 1.5rem;
        gap: 1.5rem;
    }
}

/* Desktop - Ocultar hamburguesa */
@media (min-width: 1025px) {
    .nav-links {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .slider-container {
        aspect-ratio: 16 / 10;
        border-radius: 15px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .djs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-content {
        padding: 2rem 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .top5-container {
        padding: 0.8rem;
    }
    
    .top5-item {
        padding: 0.8rem;
    }
    
    .top5-number {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .top5-thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .top5-play-btn {
        width: 45px;
        height: 45px;
    }
    
    .modal {
        padding: 10px;
    }
    
    .modal-content-wrapper {
        max-width: 100%;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    
    .modal-info h3 {
        font-size: 1.2rem;
    }
    
    .close-modal-btn {
        width: 44px;
        height: 44px;
        font-size: 24px;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        z-index: 100;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1rem;
    }
    
    .main-content {
        padding: 0.8rem;
    }
    
    .slider-container {
        aspect-ratio: 3 / 2;
        border-radius: 10px;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-nav {
        bottom: 10px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .djs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .footer-content {
        padding: 1.5rem 1rem;
    }
    
    .top5-container {
        padding: 0.5rem;
    }
    
    .top5-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
        flex-wrap: wrap;
    }
    
    .top5-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .top5-thumbnail {
        width: 60px;
        height: 45px;
        margin-right: 0.8rem;
    }
    
    .top5-info {
        margin-right: 0.8rem;
    }
    
    .top5-title {
        font-size: 0.9rem;
    }
    
    .top5-artist {
        font-size: 0.8rem;
    }
    
    .top5-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===================================
   ANIMACIÓN MENÚ HAMBURGUESA
   =================================== */

/* Las tres líneas del hamburguesa */
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--champeta-yellow);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Estado activo (X) */
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--champeta-orange);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--champeta-orange);
}

/* ===================================
   ENLACE YOUTUBE
   =================================== */
.watch-on-youtube {
    display: inline-block;
    margin-top: 12px;
    color: var(--champeta-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.watch-on-youtube:hover {
    color: var(--champeta-yellow);
    text-decoration: underline;
}

/* ===================================
   MEJORAS PROFESIONALES
   =================================== */

/* Mejora accesibilidad - Focus visible */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--champeta-yellow);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Transiciones suaves para imágenes */
img {
    transition: opacity 0.3s ease;
}

/* Optimización de rendimiento */
.slider-btn,
.top5-play-btn,
.dj-card,
.nav-links a {
    will-change: transform;
}