* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0f1419;
    color: #ffffff;
    overflow-x: hidden;
    padding-bottom: 100px;
    position: relative;
    box-sizing: border-box;
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(15, 20, 25, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* backdrop-filter: blur(10px); ELIMINADO */
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.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.2s ease;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-top: -2px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #32ff32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    list-style: none;
    align-items: center;
    background: rgba(0, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    /* backdrop-filter: blur(8px); ELIMINADO */
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.2s 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: rgba(0, 255, 255, 0.1);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    color: #00ffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.8rem;
    transition: all 0.2s ease;
    /* backdrop-filter: blur(8px); ELIMINADO */
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    /* backdrop-filter: blur(15px); ELIMINADO */
    border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1.5rem 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: rgba(0, 255, 255, 0.08);
    color: #ffffff;
    padding-left: 2.5rem;
}

/* 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: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    /* backdrop-filter: blur(8px); ELIMINADO */
}

.social-icon:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px) scale(1.05);
}

/* 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: #00ffff;
    font-size: 1.2rem;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-top: 2px solid #00ffff;
    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%;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
}

.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: linear-gradient(45deg, #00ffff, #32ff32, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.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: linear-gradient(45deg, #00ffff, #32ff32);
    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.2s ease;
    border: none;
    cursor: pointer;
}

.slide-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.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.2s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.slider-dot.active {
    background: linear-gradient(45deg, #00ffff, #32ff32);
    border-color: rgba(255,255,255,0.6);
}

.slider-dot:hover {
    background: rgba(255,255,255,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 rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #00ffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    /* backdrop-filter: blur(8px); ELIMINADO */
}

.slider-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.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: linear-gradient(135deg, #00ffff 0%, #32ff32 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    border-radius: 2px;
}

/* DJs Grid */
.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.dj-card {
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); ELIMINADO */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.dj-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    /* RESPLANDOR ELIMINADO */
}

.dj-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dj-card:hover .dj-image {
    transform: scale(1.05);
}

.dj-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%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
}

.dj-image-info {
    position: relative;
    z-index: 2;
    color: white;
}

.dj-image-info h3 {
    margin-bottom: 0.3rem;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.dj-image-info .dj-specialty {
    color: #ff00ff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.dj-info {
    padding: 1.5rem;
}

.dj-info h3 {
    margin-bottom: 0.5rem;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Orbitron', monospace;
}

.dj-specialty {
    color: #ff00ff;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dj-schedule {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.dj-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 25px;
    background: rgba(255, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.dj-youtube-link:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-1px);
    color: #ff3333;
}

/* Top 5 Videos */
.top5-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.top5-item {
    display: flex;
    align-items: center;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); ELIMINADO */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.top5-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.3);
    /* RESPLANDOR ELIMINADO */
}

.top5-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 255, 0.2);
    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 rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.top5-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.top5-thumbnail:hover::after {
    background: rgba(0, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.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, 255, 255, 0.15);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #00ffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.top5-play-btn:hover {
    background: rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
    color: #ffffff;
}

.top5-play-btn:active {
    transform: scale(0.95);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    /* backdrop-filter: blur(8px); ELIMINADO */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item:hover {
    transform: translateY(-3px);
    /* RESPLANDOR ELIMINADO */
}

.gallery-image {
    width: 100%;
    height: 175px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    /* backdrop-filter: blur(10px); ELIMINADO */
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    position: relative;
    margin: 0 auto;
    max-width: 90vw;
    max-height: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 40px);
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.modal-info {
    background: rgba(15, 20, 25, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    /* backdrop-filter: blur(15px); ELIMINADO */
    border: 1px solid rgba(0, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
}

.modal-info h3 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.modal-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* backdrop-filter: blur(10px); ELIMINADO */
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2001;
}

.close:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    /* backdrop-filter: blur(10px); ELIMINADO */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.modal-nav-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.modal-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-prev-btn {
    left: 30px;
}

.modal-next-btn {
    right: 30px;
}

.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.modal-nav-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: none;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.video-container {
    background: rgba(50, 255, 50, 0.03);
    border: 1px solid rgba(50, 255, 50, 0.15);
    border-radius: 20px;
    overflow: hidden;
    /* backdrop-filter: blur(10px); ELIMINADO */
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.video-container:hover {
    transform: translateY(-5px);
    /* RESPLANDOR ELIMINADO */
    border-color: rgba(50, 255, 50, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.video-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.video-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Radio Player */
.radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
    /* backdrop-filter: blur(10px); ELIMINADO */
    z-index: 1000;
    border-top: 2px solid rgba(0, 255, 255, 0.15);
    height: 70px;
}

.player-artwork {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.player-artwork .default-icon {
    font-size: 1.5rem;
    color: #666;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.15);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #00ffff;
    position: relative;
}

.play-btn:hover {
    background: rgba(0, 255, 255, 0.25);
    transform: scale(1.05);
}

.play-btn.paused {
    animation: pulse 2s infinite;
}

.play-btn.paused::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 12px;
    animation: ripple 2s infinite;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(25, 25, 35, 0.6);
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.15);
}

.volume-slider {
    width: 70px;
    height: 6px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00ffff, #0099cc);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgb(0, 0, 0);
    padding: 0.4rem 0.7rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    position: relative;
    animation: livePulse 1.5s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

.live-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 0, 0, 0.4);
    border-radius: 50%;
    animation: liveRipple 2s infinite;
    pointer-events: none;
}

.live-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
    }
}

@keyframes liveRipple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0f1419 100%);
    border-top: 2px solid rgba(0, 255, 255, 0.15);
    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: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    /* backdrop-filter: blur(8px); ELIMINADO */
}

.footer-social-icon:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px) scale(1.05);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright strong {
    color: #00ffff;
    font-weight: 700;
}

/* Debug Info */
.debug-info {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    padding: 1rem;
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.8rem;
    max-width: 300px;
    z-index: 1500;
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .social-icons { display: none; }
    .mobile-menu-btn { display: block; }
    .main-content { padding: 1.5rem; }
    .section h2 { font-size: 1.8rem; }
    .footer-content { padding: 2rem 1.5rem 1.5rem; gap: 1.5rem; }
}

@media (min-width: 1025px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
}

@media (max-width: 768px) {
    .main-content { padding: 1rem; }
    .slider-container { height: 350px; }
    .slide-title { font-size: 1.8rem; }
    .slide-description { font-size: 1rem; }
    .slide-content { padding: 2rem; }
    .slider-btn { width: 50px; height: 50px; font-size: 1.5rem; }
    .section h2 { font-size: 1.6rem; margin-bottom: 2rem; }
    .djs-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .videos-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .radio-player { padding: 0.6rem 1rem; height: 60px; }
    .player-artwork { width: 45px; height: 45px; }
    .play-btn { width: 45px; height: 45px; }
    .volume-slider { width: 60px; }
    .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; }
}

@media (max-width: 480px) {
    .header { padding: 0.8rem 1rem; }
    .main-content { padding: 0.8rem; }
    .slider-container { height: 280px; }
    .slide-title { font-size: 1.4rem; }
    .slide-description { font-size: 0.9rem; }
    .slide-content { padding: 1.5rem; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    .section h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
    .djs-grid, .videos-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
        padding: 0.5rem;
    }
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.8rem; 
        padding: 0.5rem;
    }
    .radio-player { 
        padding: 0.5rem 0.8rem; 
        height: 55px;
        gap: 0.8rem;
    }
    .player-artwork { width: 40px; height: 40px; }
    .play-btn { width: 42px; height: 42px; }
    .volume-slider { width: 50px; }
    .volume-control { padding: 0.4rem 0.6rem; }
    .live-indicator { padding: 0.3rem 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;
    }
    
    /* Modal mobile improvements */
    .modal {
        padding: 10px;
    }
    .modal-content {
        min-height: calc(100vh - 20px);
    }
    .modal-image {
        max-height: 60vh;
    }
    .modal-info {
        padding: 1rem;
        margin-top: 0.8rem;
    }
    .modal-info h3 {
        font-size: 1rem;
    }
    .modal-info p {
        font-size: 0.9rem;
    }
    .close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .modal-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .modal-prev-btn {
        left: 15px;
    }
    
    .modal-next-btn {
        right: 15px;
    }
}

@media (max-width: 360px) {
    .header { padding: 0.6rem 0.8rem; }
    .logo-text { font-size: 1rem; }
    .main-content { padding: 0.6rem; }
    .slider-container { height: 250px; }
    .slide-title { font-size: 1.2rem; }
    .slide-content { padding: 1rem; }
    .section h2 { font-size: 1.2rem; }
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.6rem; 
        padding: 0.3rem;
    }
    .radio-player { 
        padding: 0.4rem 0.6rem; 
        height: 50px;
        gap: 0.6rem;
    }
    .player-artwork { width: 35px; height: 35px; }
    .play-btn { width: 38px; height: 38px; }
    .song-title { font-size: 0.85rem; }
    .song-artist { font-size: 0.75rem; }
    .volume-control { display: none; }
}