* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

#player,
#programacion,
#comunidad,
#contacto {
    scroll-margin-top: 130px;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 195, 255, 0.16), transparent 35%),
        radial-gradient(circle at top right, rgba(255, 0, 180, 0.12), transparent 35%),
        #010409;
    color: #ffffff;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 195, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* HEADER */
.site-header {
    width: min(1200px, calc(100% - 30px));
    margin: 20px auto;
    padding: 16px 22px;
    border: 1px solid rgba(0, 195, 255, 0.18);
    border-radius: 24px;
    background: rgba(3, 12, 28, 0.78);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: sticky;
    top: 15px;
    z-index: 10;
    box-shadow: 0 0 35px rgba(0, 195, 255, 0.08);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: #00111f;
    background: linear-gradient(135deg, #00c3ff, #ffffff);
    box-shadow: 0 0 22px rgba(0, 195, 255, 0.45);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.logo-box h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-box span {
    font-size: 12px;
    color: #90e0ef;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-menu a {
    color: #dff9ff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s;
}

.nav-menu a:hover {
    color: #00d9ff;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.8);
}

/* HERO */
.hero {
    width: min(1200px, calc(100% - 30px));
    margin: 70px auto 30px;
    min-height: 430px;
    border-radius: 34px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 35px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0, 12, 30, 0.94), rgba(0, 35, 70, 0.75)),
        url("https://i.postimg.cc/d0n7mft0/Banner-principal.png");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 195, 255, 0.18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.15), rgba(0,195,255,0.07));
    pointer-events: none;
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(0, 217, 255, 0.35);
    border-radius: 999px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.08);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #00c3ff, #ffffff, #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 650px;
    color: #d4f7ff;
    line-height: 1.7;
    font-size: 17px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s;
}

.btn.primary {
    color: #00111f;
    background: linear-gradient(135deg, #00c3ff, #ffffff);
    box-shadow: 0 0 24px rgba(0, 195, 255, 0.35);
}

.btn.secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.btn:hover {
    transform: translateY(-3px);
}

.hero-card {
    min-height: 260px;
    border-radius: 28px;
    padding: 28px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 195, 255, 0.24);
    box-shadow: inset 0 0 25px rgba(0, 195, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.signal {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 24px;
    background: radial-gradient(circle, #00c3ff 0 20%, transparent 22%),
                repeating-radial-gradient(circle, rgba(0,195,255,0.3) 0 6px, transparent 7px 14px);
    box-shadow: 0 0 35px rgba(0, 195, 255, 0.45);
}

.hero-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

/* MENU RAPIDO */
.quick-menu {
    width: min(1200px, calc(100% - 30px));
    margin: 28px auto 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-menu a {
    min-height: 70px;
    text-decoration: none;
    color: #ffffff;
    padding: 16px 18px;
    text-align: center;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(0, 217, 255, 0.08), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.25s ease;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18),
        inset 0 0 18px rgba(255, 255, 255, 0.02);
}

.quick-menu a:hover {
    background:
        radial-gradient(circle at top right, rgba(255, 79, 216, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(0, 195, 255, 0.12), rgba(255, 255, 255, 0.035));
    border-color: rgba(0, 217, 255, 0.35);
    transform: translateY(-4px);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.26),
        0 0 24px rgba(0, 195, 255, 0.10);
}

/* Botón destacado del staff */
.quick-menu a[href="staff.php"] {
    background:
        radial-gradient(circle at top right, rgba(255, 79, 216, 0.25), transparent 40%),
        linear-gradient(135deg, rgba(255, 166, 0, 0.95), rgba(255, 0, 180, 0.92));
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow:
        0 0 24px rgba(255, 79, 216, 0.28),
        0 16px 34px rgba(0, 0, 0, 0.25);
}

.quick-menu a[href="staff.php"]:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 0 32px rgba(255, 79, 216, 0.42),
        0 20px 42px rgba(0, 0, 0, 0.30);
}

/* SLIDER PROMOCIONAL */
.promo-slider-section {
    width: min(1200px, calc(100% - 30px));
    margin: 24px auto 50px;
}

.promo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(0, 195, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(0, 20, 45, 0.92), rgba(0, 8, 20, 0.95));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.30),
        0 0 25px rgba(0, 195, 255, 0.08);
}

.promo-slides {
    display: flex;
    transition: transform 0.55s ease;
    width: 100%;
}

.promo-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.promo-slide a {
    display: block;
    text-decoration: none;
}

.promo-slide img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 28px;
}

.promo-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.25s ease;
    padding: 0;
}

.promo-dot:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.6);
}

.promo-dot.active {
    background: #ff4fd8;
    box-shadow:
        0 0 12px rgba(255, 79, 216, 0.9),
        0 0 24px rgba(255, 79, 216, 0.4);
    transform: scale(1.15);
}

/* TITULOS DE SECCION */
.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading span {
    color: #00d9ff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-heading h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    margin-top: 8px;
}

/* REPRODUCTOR */
.player-section {
    width: min(1250px, calc(100% - 30px));
    margin: 70px auto;
}

.player-shell {
    width: 100%;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 42px;
    padding: 38px 48px;
    border: 1px solid rgba(0, 195, 255, 0.08);
    box-shadow:
        0 0 70px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(0, 195, 255, 0.08);
    overflow: hidden;
}

.player-frame {
    width: 100%;
    height: 670px;
    border: none;
    border-radius: 32px;
    display: block;
    overflow: hidden;
}

/* PROGRAMACION Y COMUNIDAD */

/* PROGRAMACION DESTACADA MEJORADA */
.schedule-feature {
    margin-bottom: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at right, rgba(255, 0, 180, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(0, 28, 55, 0.9), rgba(0, 8, 20, 0.92));
    border: 1px solid rgba(0, 195, 255, 0.16);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.schedule-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.08), transparent);
    transform: translateX(-100%);
    animation: neonSweep 6s infinite;
    pointer-events: none;
}

@keyframes neonSweep {
    0% {
        transform: translateX(-100%);
    }
    45%, 100% {
        transform: translateX(100%);
    }
}

.schedule-feature-content,
.schedule-feature-panel {
    position: relative;
    z-index: 2;
}

.schedule-live {
    display: inline-flex;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 0, 85, 0.12);
    border: 1px solid rgba(255, 0, 120, 0.35);
    color: #ff78d6;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
}

.schedule-feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    margin-bottom: 12px;
    color: #ffffff;
}

.schedule-feature p {
    color: #c9eef7;
    line-height: 1.7;
    max-width: 760px;
}

.schedule-feature-panel {
    min-height: 170px;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(0, 217, 255, 0.2), transparent 55%),
        rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 217, 255, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.08);
}

.schedule-feature-panel span {
    color: #00d9ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.schedule-feature-panel strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    margin: 8px 0;
    color: #ffffff;
}

.schedule-feature-panel small {
    color: #9bdff0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.schedule-card {
    min-height: 310px;
    padding: 24px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(0, 20, 45, 0.9), rgba(0, 8, 20, 0.92));
    border: 1px solid rgba(0, 195, 255, 0.14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, #00c3ff, #ff4fd8);
    opacity: 0;
    transition: 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.38);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(0, 195, 255, 0.12);
}

.schedule-card:hover::after {
    opacity: 1;
}

.schedule-card.active {
    border-color: rgba(0, 217, 255, 0.35);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 26px rgba(0, 195, 255, 0.12);
}

.schedule-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    margin-bottom: 18px;
}

.schedule-time {
    margin-bottom: 18px;
}

.schedule-time span {
    display: block;
    color: #90e0ef;
    font-size: 13px;
    margin-bottom: 4px;
}

.schedule-time strong {
    font-family: 'Orbitron', sans-serif;
    color: #00d9ff;
    font-size: 24px;
}

.schedule-card h3 {
    color: #ffffff;
    font-size: 21px;
    margin-bottom: 12px;
}

.schedule-card p {
    color: #c9eef7;
    line-height: 1.6;
    font-size: 14px;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.schedule-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dff9ff;
    font-size: 12px;
    font-weight: 700;
}

.programacion,
.community {
    width: min(1200px, calc(100% - 30px));
    margin: 70px auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.info-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(0, 20, 45, 0.88), rgba(0, 8, 20, 0.88));
    border: 1px solid rgba(0, 195, 255, 0.14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: 0.25s;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 255, 0.35);
    box-shadow: 0 22px 55px rgba(0, 195, 255, 0.12);
}

.info-card h3 {
    color: #00d9ff;
    font-size: 20px;
    margin-bottom: 12px;
}

.info-card p {
    color: #c9eef7;
    line-height: 1.6;
}

.community-box {
    padding: 40px;
    border-radius: 30px;
    background:
        radial-gradient(circle at right, rgba(255, 0, 180, 0.15), transparent 35%),
        linear-gradient(145deg, rgba(0, 20, 45, 0.9), rgba(0, 8, 20, 0.9));
    border: 1px solid rgba(0, 195, 255, 0.16);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.community-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    margin-bottom: 14px;
}

.community-box p {
    color: #d4f7ff;
    max-width: 700px;
    line-height: 1.7;
}

/* REDES Y CONTACTO */
.social-contact {
    width: min(1200px, calc(100% - 30px));
    margin: 70px auto;
}

.social-contact-box {
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 0, 180, 0.14), transparent 35%),
        radial-gradient(circle at bottom left, rgba(0, 195, 255, 0.12), transparent 35%),
        linear-gradient(145deg, rgba(0, 20, 45, 0.92), rgba(0, 8, 20, 0.94));
    border: 1px solid rgba(0, 195, 255, 0.16);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-main-card {
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(0, 28, 55, 0.88), rgba(0, 8, 20, 0.86));
    border: 1px solid rgba(0, 217, 255, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #00c3ff, #ffffff, #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-main-card p {
    color: #c9eef7;
    line-height: 1.7;
    font-size: 15px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 24px;
    text-decoration: none;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.social-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    right: -45px;
    top: -45px;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(2px);
    pointer-events: none;
}

.social-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 217, 255, 0.35);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(0, 195, 255, 0.12);
}

.social-card:hover::before {
    opacity: 1;
}

.social-logo-wrap {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 65%),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.04),
        0 0 18px rgba(0, 195, 255, 0.08);
}

.social-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}

.social-card:hover .social-logo {
    transform: scale(1.12) rotate(-3deg);
}

.social-card strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.social-card small {
    color: #c9eef7;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.social-card.instagram::before {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 180, 0.25), transparent 45%),
        radial-gradient(circle at bottom left, rgba(255, 180, 0, 0.14), transparent 45%);
}

.social-card.youtube::before {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 55, 0.26), transparent 45%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 45%);
}

.social-card.discord::before {
    background:
        radial-gradient(circle at top right, rgba(88, 101, 242, 0.30), transparent 45%),
        radial-gradient(circle at bottom left, rgba(0, 217, 255, 0.10), transparent 45%);
}

.social-card.tiktok::before {
    background:
        radial-gradient(circle at top right, rgba(0, 217, 255, 0.25), transparent 45%),
        radial-gradient(circle at bottom left, rgba(255, 0, 180, 0.18), transparent 45%);
}

.instagram .social-logo-wrap {
    box-shadow: 0 0 22px rgba(255, 0, 180, 0.15);
}

.youtube .social-logo-wrap {
    box-shadow: 0 0 22px rgba(255, 0, 55, 0.15);
}

.discord .social-logo-wrap {
    box-shadow: 0 0 22px rgba(88, 101, 242, 0.18);
}

.tiktok .social-logo-wrap {
    box-shadow: 0 0 22px rgba(0, 217, 255, 0.15);
}

.contact-info-row {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-info-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: 0.25s;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 255, 0.25);
    background: rgba(0, 195, 255, 0.08);
}

.contact-info-card span {
    font-size: 28px;
}

.contact-info-card strong {
    color: #00d9ff;
    display: block;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: #c9eef7;
    line-height: 1.5;
    font-size: 14px;
}

/* FOOTER */
.footer {
    width: min(1200px, calc(100% - 30px));
    margin: 40px auto 25px;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    color: #9bdff0;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE PROGRAMACION */
@media (max-width: 1050px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-feature {
        grid-template-columns: 1fr;
    }

    .schedule-feature-panel {
        min-height: 140px;
    }
}

/* RESPONSIVE GENERAL */
@media (max-width: 560px) {
    .site-header {
        flex-direction: column;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

    .quick-menu {
    grid-template-columns: 1fr;
}

    .promo-slide img {
        height: 320px;
    }

    .player-shell {
        padding: 24px;
        border-radius: 32px;
    }

    .player-frame {
        height: 820px;
        border-radius: 26px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-contact-box {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .logo-box h1 {
        font-size: 16px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .quick-menu {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 35px;
    }

    .promo-slider-section {
        margin: 20px auto 40px;
    }

    .promo-slider {
        border-radius: 22px;
    }

    .promo-slide img {
        height: 220px;
        border-radius: 22px;
    }

    .promo-dot {
        width: 10px;
        height: 10px;
    }

    .player-shell {
        padding: 14px;
        border-radius: 24px;
    }

    .player-frame {
        height: 880px;
        border-radius: 20px;
    }

    .schedule-feature {
        padding: 24px;
        border-radius: 24px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        min-height: auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .social-contact-box {
        padding: 22px;
        border-radius: 26px;
    }

    .contact-main-card {
        padding: 24px;
        border-radius: 22px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        min-height: 160px;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .social-logo-wrap {
        width: 72px;
        height: 72px;
    }

    .social-logo {
        width: 46px;
        height: 46px;
    }
}

/* =========================
   CUENTAS EN HEADER / HOME
========================= */

.nav-menu .nav-register-link {
    color: #00111f;
    background: linear-gradient(135deg, #22d3ee, #ffffff);
    border: 1px solid rgba(34, 211, 238, .55);
    box-shadow: 0 0 22px rgba(34, 211, 238, .28);
}

.nav-menu .nav-register-link:hover {
    color: #00111f;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34, 211, 238, .45);
}

.nav-menu .nav-account-link {
    color: #fef3c7;
    border-color: rgba(250, 204, 21, .45);
    background: rgba(250, 204, 21, .10);
    box-shadow: 0 0 18px rgba(250, 204, 21, .12);
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.85);
}

.live-status-badge.is-online .live-status-dot {
    background: #22c55e;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.95);
    animation: livePulseGreen 1.4s infinite;
}

.live-status-badge.is-offline .live-status-dot {
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.85);
}

@keyframes livePulseGreen {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
    }

    50% {
        transform: scale(1.22);
        box-shadow: 0 0 22px rgba(34, 197, 94, 1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
    }
}

.hero-user-avatar {
    width: 112px;
    height: 112px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 32px;
    border: 2px solid rgba(34, 211, 238, 0.5);
    background:
        radial-gradient(circle at top, rgba(34, 211, 238, 0.22), transparent 55%),
        rgba(2, 6, 23, 0.75);
    box-shadow:
        0 0 30px rgba(34, 211, 238, 0.28),
        inset 0 0 24px rgba(236, 72, 153, 0.12);
    overflow: hidden;
}

.hero-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.hero-user-avatar span {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.55));
}