/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* =========================
   OVERRIDE BOOTSTRAP ROOT
========================= */
:root[b-j9tstqawkj] {
    --bs-body-bg: #141025; /* fondo oscuro por defecto */
    --bs-body-color: #fff; /* texto blanco */
}

/* =========================
   NAVBAR MORADA
========================= */
.dark-navbar[b-j9tstqawkj] {
    background: linear-gradient(90deg,#2a0a57,#4c1d95);
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 0 18px rgba(124,58,237,.55);
}

.brand-name[b-j9tstqawkj] {
    font-size: 2rem;
    font-weight: 900;
}

.dark-navbar .navbar-brand[b-j9tstqawkj] {
    color: white !important;
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(168,85,247,.7);
}

.dark-navbar .navbar-nav .nav-link[b-j9tstqawkj] {
    font-size: 2rem !important;
    font-weight: 700;
    margin-left: 28px;
    color: white !important;
}

    .dark-navbar .navbar-nav .nav-link:hover[b-j9tstqawkj] {
        color: #e9d5ff !important;
        text-shadow: 0 0 10px rgba(168,85,247,.7);
    }
/* =========================
   STREAM STATUS BUTTON
========================= */

.stream-status-container[b-j9tstqawkj] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.stream-btn[b-j9tstqawkj] {
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s ease;
}

    /* OFFLINE */

    .stream-btn.offline[b-j9tstqawkj] {
        background: #3f3f46;
        color: white;
    }

    /* LIVE */

    .stream-btn.live[b-j9tstqawkj] {
        background: #dc2626;
        color: white;
        box-shadow: 0 0 14px rgba(220,38,38,.7);
    }

        /* PUNTO ROJO ANIMADO */

        .stream-btn.live[b-j9tstqawkj]::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-right: 8px;
            border-radius: 50%;
            background: #ff0000;
            animation: pulse-b-j9tstqawkj 1.5s infinite;
        }
.stream-extra[b-j9tstqawkj] {
    margin-left: 6px;
}
@media (max-width: 768px) {

    .stream-btn[b-j9tstqawkj] {
        font-size: 0.9rem; /* texto un poco más pequeño */
        padding: 4px 10px; /* menos espacio interno */
        white-space: nowrap; /* evita salto de línea */
    }
    .dark-navbar .navbar-nav .nav-link[b-j9tstqawkj] {
        margin-left: 10px;
        font-size: 1.2rem;
    }
}
@keyframes pulse-b-j9tstqawkj {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}
/* =========================
   FOOTER
========================= */
.dark-footer[b-j9tstqawkj] {
    background: linear-gradient(90deg,#2a0a57,#4c1d95);
    padding-top: 34px;
    padding-bottom: 34px;
    color: white;
}

    .dark-footer a[b-j9tstqawkj] {
        color: white;
    }

        .dark-footer a:hover[b-j9tstqawkj] {
            color: #e9d5ff;
        }

.footer-link[b-j9tstqawkj] {
    color: #a855f7;
}

    .footer-link:hover[b-j9tstqawkj] {
        color: #c084fc;
        text-shadow: 0 0 6px rgba(168,85,247,.6);
    }

/* =========================
   FONDO GENERAL
========================= */
html[b-j9tstqawkj], body[b-j9tstqawkj] {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #9333ea 0%, #6d28d9 50%, #4c1d95 100%) !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
}

/* =========================
   CONTENIDO CENTRAL
========================= */
main.container[b-j9tstqawkj] {
    background-color: #141025; /* bloque oscuro en escritorio */
    color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 55% !important; /* ancho controlado */
    margin: 0 auto; /* centrado */
}

/* =========================
   AJUSTES PARA MÓVIL
========================= */
@media (max-width: 767px) {
    main.container[b-j9tstqawkj] {
        /* degradado interno en móvil */
        background: linear-gradient(180deg, #1a102f 0%, #141025 50%, #0d0a1a 100%);
        max-width: 100% !important; /* ancho completo */
        min-height: 100vh; /* altura completa */
        padding: 1.5rem; /* menos padding */
        border-radius: 0; /* sin esquinas redondeadas */
        margin: 0 !important; /* sin márgenes */
    }
}
