@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0e1a;
    overflow: hidden;
}

.newsroom {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 30%, #001a33 0%, #000a14 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Degradados azul profundo y eléctrico */
.newsroom::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 70% 40%, rgba(0, 100, 255, 0.15) 0%, rgba(0, 50, 150, 0.05) 50%, transparent 70%);
    animation: slowDrift 25s infinite alternate;
}

.newsroom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(0, 150, 255, 0.02) 0px, rgba(0, 150, 255, 0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

/* Pantallas de broadcast abstractas */
.screen {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 80, 200, 0.2), rgba(0, 40, 100, 0.1));
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 100, 255, 0.2);
    backdrop-filter: blur(3px);
    animation: pulseGlow 8s infinite alternate;
}

.screen-1 {
    top: 15%;
    right: 8%;
    width: 280px;
    height: 180px;
    transform: skewX(-5deg);
    border-top: 2px solid rgba(255, 50, 50, 0.3);
}

.screen-2 {
    bottom: 20%;
    left: 5%;
    width: 220px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.15), rgba(0, 60, 150, 0.05));
    border-bottom: 2px solid rgba(0, 200, 255, 0.4);
}

.screen-3 {
    top: 40%;
    left: 15%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.1) 0%, transparent 70%);
    border: 1px dashed rgba(0, 150, 255, 0.3);
}

/* Líneas técnicas dinámicas */
.tech-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.6), rgba(0, 100, 255, 0.9), rgba(0, 200, 255, 0.6), transparent);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.5);
    animation: scanMove 12s infinite linear;
}

.line-1 {
    top: 25%;
    width: 100%;
    opacity: 0.4;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    width: 80%;
    left: 10%;
    opacity: 0.3;
    animation-delay: 4s;
}

.line-3 {
    top: 80%;
    width: 70%;
    left: 15%;
    opacity: 0.25;
    animation-delay: 8s;
}

/* Cuadrícula de estudio */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

/* Acentos rojos sutiles */
.red-accent {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.2) 0%, transparent 70%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
}

.accent-1 {
    top: -50px;
    right: 10%;
    animation: pulseRed 15s infinite alternate;
}

.accent-2 {
    bottom: -50px;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 30, 30, 0.15) 0%, transparent 70%);
    animation: pulseRed 20s infinite alternate-reverse;
}

/* Iluminación cinematográfica */
.cinematic-light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, rgba(255, 255, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.light-1 {
    top: -20%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at 20% 30%, rgba(200, 220, 255, 0.08) 0%, transparent 60%);
    animation: lightMove 18s infinite alternate;
}

.light-2 {
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 80% 70%, rgba(180, 200, 255, 0.06) 0%, transparent 60%);
    animation: lightMove 22s infinite alternate-reverse;
}

/* Centro limpio para logo */
.logo-container {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 30px 50px;
    background: rgba(0, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 50, 150, 0.3);
    animation: float 6s infinite alternate;
}

.logo {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.lau {
    color: white;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.7);
}

.tv {
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 50, 50, 0.5);
}

.domain {
    font-size: 40px;
    color: rgba(200, 220, 255, 0.8);
    font-weight: 400;
    margin-left: 5px;
}

.tagline {
    color: rgba(200, 220, 255, 0.9);
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.news-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid rgba(255, 50, 50, 0.6);
    border-radius: 30px;
    color: #ff9999;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.3);
    animation: blink 4s infinite;
}

/* Elementos de movimiento dinámico */
.pulse-circle {
    position: absolute;
    bottom: 15%;
    right: 12%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(0, 200, 255, 0.3);
    animation: pulseRing 3s infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 200, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.3);
    animation: scanVertical 8s infinite;
}

/* Breaking news ticker */
.breaking-news {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 20, 40, 0.8);
    backdrop-filter: blur(5px);
    border-top: 2px solid rgba(255, 50, 50, 0.6);
    border-bottom: 1px solid rgba(0, 150, 255, 0.3);
    padding: 12px 0;
    overflow: hidden;
    z-index: 30;
}

.ticker {
    white-space: nowrap;
    animation: ticker 30s infinite linear;
}

.ticker span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    padding-right: 50px;
}

/* Noticias inferiores */
.bottom-news {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 30px;
    z-index: 30;
}

.news-item {
    background: rgba(0, 15, 30, 0.7);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-left: 4px solid #ff3333;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.time {
    color: #66ccff;
    font-weight: 700;
    margin-right: 10px;
}

.headline {
    color: white;
    font-weight: 500;
}

/* Animaciones */
@keyframes slowDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-2%, -1%) scale(1.05); }
}

@keyframes pulseGlow {
    0% { opacity: 0.5; box-shadow: 0 0 20px rgba(0, 100, 255, 0.2); }
    100% { opacity: 1; box-shadow: 0 0 40px rgba(0, 150, 255, 0.4); }
}

@keyframes scanMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulseRed {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes lightMove {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes scanVertical {
    0% { top: -2%; }
    100% { top: 102%; }
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .logo { font-size: 50px; }
    .domain { font-size: 25px; }
    .tagline { font-size: 14px; }
    .bottom-news { flex-direction: column; gap: 10px; }
}
