/* ===== VARIABLES Y ESTILOS BASE ===== */
:root {
    --neon-cyan: #0ff;
    --neon-pink: #f0f;
    --neon-yellow: #ff0;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(16, 16, 32, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --font-main: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== ESTILOS BASE PARA IMÁGENES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER Y NAVEGACIÓN ===== */
header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-cyan);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-text h2 {
    font-family: var(--font-display);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.channel-text p {
    color: var(--neon-pink);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Widget de Fecha y Hora */
.datetime-widget {
    text-align: center;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    min-width: 200px;
}

.current-date {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-primary);
}

.current-time {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Navegación */
.nav-container {
    background: rgba(5, 5, 8, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 500;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(0, 255, 255, 0.1);
    min-width: 100px;
}

.nav-link:last-child {
    border-right: none;
}

.nav-link i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--neon-cyan);
}

.nav-link span {
    font-size: 0.85rem;
}

.nav-link:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-container {
    position: relative;
    background: linear-gradient(135deg, #0a0a1f 0%, #151530 50%, #0a0a1f 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    overflow: hidden;
    border-bottom: 2px solid var(--neon-cyan);
}

.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.bg-effect-1, .bg-effect-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.bg-effect-1 {
    background: var(--neon-cyan);
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.bg-effect-2 {
    background: var(--neon-pink);
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    width: 90%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-section {
    text-align: left;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 25px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
    transform: translateY(-2px);
}

.video-section {
    display: flex;
    justify-content: center;
}

.hero-video {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-cyan);
}

.hero-video iframe {
    width: 100%;
    height: 280px;
    border: none;
}

/* ===== SECCIONES PRINCIPALES ===== */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 80px;
    padding: 40px 0;
}

h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== SECCIÓN ÁLBUMES ===== */
.albums-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.albums-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.album {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    text-align: center;
}

.album img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.album img:hover {
    transform: scale(1.05);
}

.album h3 {
    margin: 15px 0;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

/* ===== SECCIÓN VIDEOS ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.video-embed {
    position: relative;
    width: 100%;
    height: 200px;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== SECCIÓN JUEGOS ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.game-title {
    color: var(--neon-pink);
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    background: var(--darker-bg);
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.game-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.game-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5);
}

/* ===== GALERÍA ===== */
.art-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.art-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.art-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-card:hover .art-image img {
    transform: scale(1.05);
}

.art-info {
    padding: 20px;
}

.art-info h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ===== SECCIÓN RADIO ===== */
.radio-section {
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.9) 0%, rgba(20, 20, 50, 0.9) 100%);
    padding: 60px 20px;
    border-radius: 15px;
    border: 1px solid var(--neon-cyan);
    margin: 60px 0;
}

.radio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.radio-player {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.radio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.radio-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
}

.radio-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radio-info h3 {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.radio-since {
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.radio-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    color: #00ff00;
    font-size: 0.9rem;
    font-weight: 600;
}

.player-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.play-btn, .stop-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn {
    background: linear-gradient(45deg, var(--neon-cyan), #00ccff);
    color: #000;
}

.stop-btn {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5);
}

.stop-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.volume-control i {
    color: var(--neon-cyan);
}

.volume-control input {
    width: 100px;
}

.now-playing {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.now-playing h4 {
    color: var(--neon-pink);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

#current-track {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.radio-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.detail-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.detail-content h4 {
    color: var(--neon-pink);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.detail-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.stream-link, .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.stream-link:hover, .social-link:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: scale(1.05);
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 255, 0, 0.2);
    color: var(--neon-yellow);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.radio-about {
    max-width: 1000px;
    margin: 50px auto 0;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.radio-about h3 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-display);
}

.radio-about p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.radio-about strong {
    color: var(--neon-pink);
}

.radio-workart {
    margin-top: 50px;
}

.workart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.workart-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.workart-item:hover {
    transform: scale(1.05);
}

.workart-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* ===== SECCIÓN DESCARGAS ===== */
.downloads-section {
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.9) 0%, rgba(30, 15, 45, 0.9) 100%);
    padding: 60px 20px;
    border-radius: 15px;
    border: 1px solid var(--neon-pink);
    margin: 60px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.download-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.2);
    border-color: var(--neon-pink);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--neon-pink), #ff00cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-title {
    color: var(--neon-pink);
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-content {
    flex: 1;
    margin-bottom: 25px;
}

.file-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: var(--text-secondary);
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-tag {
    padding: 4px 10px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--neon-pink), #ff00cc);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: auto;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.5);
}

.btn-icon {
    font-size: 1.1rem;
}

/* ===== SECCIÓN SPONSORS ===== */
.sponsors-section {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    margin: 60px 0;
    border-top: 1px solid var(--neon-cyan);
    border-bottom: 1px solid var(--neon-cyan);
}

.sponsors-section h3 {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 40px;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sponsor-logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
footer {
    background: rgba(5, 5, 8, 0.95);
    border-top: 1px solid var(--neon-cyan);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.streaming-platforms, .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.streaming-platforms a, .footer-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.streaming-platforms a:hover, .footer-links a:hover {
    color: var(--neon-pink);
}

/* ===== ELEMENTOS FLOTANTES ===== */
.quality-indicator {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    z-index: 1000;
    border: 1px solid var(--neon-cyan);
    font-family: var(--font-display);
}

.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5);
}

.radio-comments-bubble {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
    transition: all 0.3s ease;
}

.radio-comments-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
}

.radio-comments-bubble i {
    font-size: 1.5rem;
    color: white;
}

.comments-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--neon-yellow);
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===== BOTONES DE COMENTARIOS ===== */
.comments-toggle {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.comments-toggle:hover {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .text-section {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .radio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 5%;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
    
    .nav-link {
        min-width: 80px;
        padding: 10px 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .art-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .player-controls {
        justify-content: center;
    }
    
    .datetime-widget {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-link {
        min-width: 70px;
        padding: 8px 10px;
    }
    
    .nav-link span {
        font-size: 0.8rem;
    }
    
    .sponsors-section {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .sponsors-section h3 {
        font-size: 1.5rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .sponsor-logo {
        max-width: 120px;
    }
}