/* ===========================
   FONDO GENERAL
=========================== */
body {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a 60%, #0f0f0f);
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; 
    color: #eaeaea;
    font-size: 22px;
}

/* ===========================
   CONTENEDOR PRINCIPAL
=========================== */
.noticia-container {
    max-width: 850px;
    margin: 60px auto;
    padding: 35px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.noticia-container img {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 25px auto;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.noticia-container h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.noticia-container p {
    max-width: 700px;
    margin: 0 auto 25px auto;
}

/* ===========================
   BOTÓN VOLVER
=========================== */
.volver {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ff0055;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s;
}

.volver:hover {
    background: #ff3377;
}

/* ===========================
   HEADER
=========================== */
.ss-header {
    width: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ss-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #ff0055;
    text-decoration: none;
    letter-spacing: 1px;
}

.ss-nav a {
    margin-left: 25px;
    color: #eaeaea;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
}

.ss-nav a:hover {
    color: #ff0055;
}

@media (max-width: 700px) {
    .ss-header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .ss-nav a {
        margin-left: 15px;
        font-size: 0.95rem;
    }
}

/* ===========================
   PLAYER DE NOTICIA
=========================== */
.noticia-player {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px auto;
    justify-content: center;
}

.noticia-btn {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.25s;
}

.noticia-btn:hover {
    background: rgba(255,255,255,0.35);
}

/* ===========================
   INDICADOR EN VIVO
=========================== */
.noticia-live {
    opacity: 0;
    transition: 0.3s;
    color: #ff0055;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.noticia-live.activo {
    opacity: 1;
}

.noticia-live .dot {
    width: 10px;
    height: 10px;
    background: #ff0055;
    border-radius: 50%;
}

.noticia-live.activo .dot {
    animation: pulse 1s infinite;
}

/* ===========================
   ANIMACIÓN
=========================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* ===========================
   RESPONSIVE PLAYER
=========================== */
@media (max-width: 600px) {
    .noticia-player {
        flex-direction: column;
        gap: 8px;
    }
}


