:root {
            --neon-red: #FF2D55;
            --neon-yellow: #FFE600;
            --neon-blue: #00D4FF;
            --neon-green: #00FF88;
            --deep: #07071A;
            --card: #0F0F28;
            --glass: rgba(15, 15, 40, 0.7);
            --border: rgba(255, 255, 255, 0.07);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; touch-action: manipulation; }
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--deep);
            color: #f0f0f0;
            overflow-x: hidden;
            padding-bottom: 110px;
        }

        /* ===== FONDO CAPAS ===== */
        .bg-layer {
            position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background:
                radial-gradient(ellipse 60% 50% at 15% 20%, rgba(255,45,85,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 85% 60%, rgba(0,212,255,0.14) 0%, transparent 70%),
                radial-gradient(ellipse 55% 45% at 50% 90%, rgba(255,230,0,0.1) 0%, transparent 70%),
                var(--deep);
        }
        .bg-grid {
            position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03;
            background-image:
                linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
            background-size: 60px 60px;
        }
        .blob {
            position: fixed; border-radius: 50%; filter: blur(130px); opacity: 0.25;
            animation: blobMove 20s ease-in-out infinite alternate; pointer-events: none; z-index: 0;
        }
        .blob-1 { width: 500px; height: 500px; background: var(--neon-red); top: -12%; left: -8%; }
        .blob-2 { width: 420px; height: 420px; background: var(--neon-blue); top: 45%; right: -10%; animation-delay: -7s; }
        .blob-3 { width: 380px; height: 380px; background: var(--neon-yellow); bottom: -8%; left: 25%; animation-delay: -13s; }
        @keyframes blobMove {
            0% { transform: translate(0,0) scale(1); }
            50% { transform: translate(50px,-70px) scale(1.12); }
            100% { transform: translate(-30px,30px) scale(0.95); }
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(7,7,26,0.8);
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s, box-shadow 0.3s;
        }
        .site-header.scrolled {
            background: rgba(7,7,26,0.96);
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .clock-display {
            font-family: 'Righteous', cursive; font-size: 1rem; letter-spacing: 2px;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        /* ===== HERO ===== */
        .hero-section {
            min-height: 100vh; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            position: relative; z-index: 1; padding: 90px 20px 60px; gap: 24px;
        }
        .hero-logo-wrap {
            position: relative; width: 280px; height: 280px;
            display: flex; align-items: center; justify-content: center;
        }
        .hero-logo-ring {
            position: absolute; inset: -10px; border-radius: 50%;
            border: 2px solid transparent;
            background-image: linear-gradient(var(--deep), var(--deep)),
                              linear-gradient(135deg, var(--neon-red), var(--neon-yellow), var(--neon-blue), var(--neon-green));
            background-origin: border-box; background-clip: content-box, border-box;
            animation: ringRotate 6s linear infinite;
        }
        .hero-logo-ring-2 {
            position: absolute; inset: -22px; border-radius: 50%;
            border: 1px solid rgba(255,45,85,0.2);
            animation: ringRotate 10s linear infinite reverse;
        }
        .hero-logo-ring-3 {
            position: absolute; inset: -34px; border-radius: 50%;
            border: 1px dashed rgba(0,212,255,0.12);
            animation: ringRotate 15s linear infinite;
        }
        @keyframes ringRotate { to { transform: rotate(360deg); } }
        .hero-logo {
            width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
            position: relative; z-index: 2;
            filter: drop-shadow(0 0 50px rgba(255,45,85,0.35));
            animation: logoGlow 4s ease-in-out infinite alternate;
        }
        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 50px rgba(255,45,85,0.35)); }
            100% { filter: drop-shadow(0 0 70px rgba(0,212,255,0.4)) drop-shadow(0 0 100px rgba(255,230,0,0.15)); }
        }
        .hero-title {
            font-family: 'Righteous', cursive;
            font-size: clamp(2.2rem, 7vw, 5rem);
            line-height: 1.05; text-align: center;
            background: linear-gradient(135deg, var(--neon-red), var(--neon-yellow), var(--neon-blue), var(--neon-green));
            background-size: 300% 300%;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            animation: gradShift 5s ease-in-out infinite;
        }
        @keyframes gradShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

        .play-hero-btn {
            background: linear-gradient(135deg, var(--neon-red), #ff6b35);
            border: none; color: white; padding: 18px 48px; border-radius: 60px;
            font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem;
            cursor: pointer; position: relative; overflow: hidden;
            transition: transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 8px 35px rgba(255,45,85,0.45);
        }
        .play-hero-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 50px rgba(255,45,85,0.65); }
        .play-hero-btn:active { transform: scale(0.96); }
        .play-hero-btn::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
            transform: translateX(-100%); animation: shine 3s ease-in-out infinite;
        }
        @keyframes shine { 0%,100%{transform:translateX(-100%)} 50%{transform:translateX(100%)} }

        /* ===== MARQUEE ===== */
        .marquee-bar {
            overflow: hidden; white-space: nowrap;
            border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            background: rgba(255,45,85,0.06); padding: 10px 0;
            position: relative; z-index: 1;
        }
        .marquee-inner {
            display: inline-flex; animation: marquee 25s linear infinite;
        }
        .marquee-inner span {
            font-family: 'Righteous', cursive; font-size: 0.9rem;
            padding: 0 40px; color: rgba(255,255,255,0.25);
        }
        .marquee-inner span em { font-style: normal; color: var(--neon-red); }
        @keyframes marquee { to { transform: translateX(-50%); } }

        /* ===== LOGO WATERMARK EN SECCIONES ===== */
        .section-watermark {
            position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
            width: 220px; height: 220px; opacity: 0.03; pointer-events: none;
            border-radius: 50%; object-fit: cover;
        }

        /* ===== SECCIONES ===== */
        .section-title {
            font-family: 'Righteous', cursive;
            font-size: clamp(1.5rem, 4vw, 2.4rem);
            position: relative; display: inline-block; margin-bottom: 1.5rem;
        }
        .section-title::after {
            content: ''; position: absolute; bottom: -8px; left: 0;
            width: 50px; height: 3px; border-radius: 2px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-yellow));
        }

        /* ===== GLASS CARD ===== */
        .glass-card {
            background: var(--glass);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border); border-radius: 16px;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.4);
            border-color: rgba(255,255,255,0.12);
        }

        /* ===== SOBRE NOSOTROS ===== */
        .about-logo-side {
            width: 180px; height: 180px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
            border: 3px solid transparent;
            background-image: linear-gradient(var(--deep), var(--deep)),
                              linear-gradient(135deg, var(--neon-red), var(--neon-yellow), var(--neon-blue));
            background-origin: border-box; background-clip: content-box, border-box;
            animation: logoGlow 4s ease-in-out infinite alternate;
        }

        /* ===== HORARIO ===== */
        .schedule-row {
            display: flex; align-items: center; gap: 16px;
            padding: 14px 20px; border-radius: 12px;
            background: rgba(255,255,255,0.03); border: 1px solid var(--border);
            transition: background 0.3s, border-color 0.3s;
        }
        .schedule-row:hover {
            background: rgba(255,45,85,0.08); border-color: rgba(255,45,85,0.2);
        }
        .schedule-time {
            font-family: 'Righteous', cursive; color: var(--neon-blue);
            min-width: 90px; font-size: 0.9rem;
        }
        .schedule-dot {
            width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
        }

        /* ===== CLIMA ===== */
        .weather-temp {
            font-family: 'Righteous', cursive; font-size: 4.5rem; line-height: 1;
            background: linear-gradient(135deg, var(--neon-yellow), var(--neon-red));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        /* ===== LUGARES ===== */
        .place-img {
            width: 100%; height: 210px; object-fit: cover;
            border-radius: 16px 16px 0 0; transition: transform 0.6s ease;
        }
        .glass-card:hover .place-img { transform: scale(1.06); }
        .place-badge {
            position: absolute; top: 14px; right: 14px;
            background: rgba(255,45,85,0.92); color: white;
            padding: 4px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 700;
            letter-spacing: 0.5px; text-transform: uppercase;
        }

        /* ===== NOTICIAS ===== */
        .news-source {
            font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px;
            color: var(--neon-blue); font-weight: 700;
        }
        .news-card h3 {
            font-size: 0.92rem; font-weight: 700; line-height: 1.45;
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
        }
        .news-card a {
            color: var(--neon-green); text-decoration: none; font-size: 0.78rem; font-weight: 600;
            transition: color 0.2s;
        }
        .news-card a:hover { color: var(--neon-yellow); }

        /* ===== REDES EN SECCION ===== */
        .social-pill {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 12px 22px; border-radius: 50px;
            color: white; text-decoration: none; font-size: 0.88rem; font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .social-pill:hover { transform: translateY(-3px); }
        .social-pill i { font-size: 1.1rem; }

        /* ===== FOOTER ===== */
        .footer-logo {
            width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
            border: 2px solid rgba(255,255,255,0.1);
            filter: drop-shadow(0 0 20px rgba(255,45,85,0.3));
        }

        /* ===== REPRODUCTOR ===== */
        .radio-player {
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
            background: rgba(7,7,26,0.94);
            backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
            border-top: 1px solid rgba(255,255,255,0.08);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
        }
        .radio-player.visible { transform: translateY(0); }

        .player-cover {
            width: 68px; height: 68px; border-radius: 14px; flex-shrink: 0;
            border: 2px solid transparent; overflow: hidden;
            background-image: linear-gradient(var(--deep), var(--deep)),
                              linear-gradient(135deg, var(--neon-red), var(--neon-yellow), var(--neon-blue));
            background-origin: border-box; background-clip: content-box, border-box;
            transition: box-shadow 0.4s;
        }
        .player-cover.playing {
            animation: coverPulse 2.5s ease-in-out infinite alternate;
        }
        @keyframes coverPulse {
            0% { box-shadow: 0 0 12px rgba(255,45,85,0.3); }
            100% { box-shadow: 0 0 28px rgba(0,212,255,0.4), 0 0 50px rgba(255,230,0,0.15); }
        }
        .player-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

        /* ===== EQUALIZER SVG ===== */
        .eq-svg { width: 80px; height: 40px; flex-shrink: 0; }
        .eq-bar {
            fill: var(--neon-green);
            transform-origin: bottom center;
            animation: eqBounce var(--d) ease-in-out infinite alternate;
            animation-delay: var(--dl);
            opacity: 0.9;
        }
        .eq-svg.off .eq-bar {
            animation-play-state: paused;
            transform: scaleY(0.12);
            opacity: 0.25; fill: #444;
        }
        @keyframes eqBounce { 0%{transform:scaleY(0.12)} 100%{transform:scaleY(1)} }

        .player-btn {
            width: 44px; height: 44px; border-radius: 50%; border: none;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 1.1rem; color: white;
            transition: all 0.2s; flex-shrink: 0;
        }
        .play-btn {
            width: 52px; height: 52px; font-size: 1.3rem;
            background: linear-gradient(135deg, var(--neon-red), #ff6b35);
            box-shadow: 0 4px 22px rgba(255,45,85,0.5);
        }
        .play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(255,45,85,0.7); }
        .play-btn:active { transform: scale(0.94); }
        .vol-btn { background: rgba(255,255,255,0.08); }
        .vol-btn:hover { background: rgba(255,255,255,0.16); }

        .vol-slider {
            -webkit-appearance: none; appearance: none;
            width: 80px; height: 4px; border-radius: 2px;
            background: rgba(255,255,255,0.15); outline: none; cursor: pointer;
        }
        .vol-slider::-webkit-slider-thumb {
            -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
            background: var(--neon-blue); cursor: pointer;
            box-shadow: 0 0 10px rgba(0,212,255,0.5);
        }
        .vol-slider::-moz-range-thumb {
            width: 14px; height: 14px; border-radius: 50%; border: none;
            background: var(--neon-blue); cursor: pointer;
        }

        .live-badge {
            display: inline-flex; align-items: center; gap: 5px;
            background: rgba(255,45,85,0.15); color: var(--neon-red);
            padding: 3px 10px; border-radius: 20px; font-size: 0.62rem;
            font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
        }
        .live-dot {
            width: 6px; height: 6px; border-radius: 50%; background: var(--neon-red);
            animation: livePulse 1.2s ease-in-out infinite;
        }
        .live-badge.off { background: rgba(100,100,100,0.15); color: #555; }
        .live-badge.off .live-dot { background: #555; animation: none; }
        @keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.6)} }

        .visit-counter {
            font-size: 0.68rem; color: rgba(255,255,255,0.4);
            display: flex; align-items: center; gap: 5px;
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.vis { opacity: 1; transform: translateY(0); }

        /* ===== TOAST ===== */
        .toast-box { position: fixed; top: 80px; right: 16px; z-index: 300; display: flex; flex-direction: column; gap: 8px; }
        .toast {
            background: rgba(15,15,40,0.95); backdrop-filter: blur(16px);
            border: 1px solid var(--border); border-radius: 12px;
            padding: 12px 20px; color: white; font-size: 0.82rem;
            animation: tIn 0.35s ease, tOut 0.35s ease 3.2s forwards;
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
        }
        @keyframes tIn { from{opacity:0;transform:translateX(50px)} to{opacity:1;transform:translateX(0)} }
        @keyframes tOut { to{opacity:0;transform:translateX(50px)} }

        /* ===== SKELETON ===== */
        .skel {
            background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
            background-size: 200% 100%; animation: shim 1.5s infinite; border-radius: 8px;
        }
        @keyframes shim { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

        /* ===== PARTICLES ===== */
        @keyframes pFloat {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: var(--po); }
            90% { opacity: var(--po); }
            100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-logo-wrap { width: 200px; height: 200px; }
            .hero-logo-ring { inset: -8px; }
            .hero-logo-ring-2 { inset: -18px; }
            .hero-logo-ring-3 { inset: -26px; }
            .player-cover { width: 52px; height: 52px; border-radius: 11px; }
            .player-cover img { border-radius: 9px; }
            .eq-svg { width: 48px; height: 26px; }
            .vol-slider { width: 50px; }
            .play-btn { width: 44px; height: 44px; font-size: 1.1rem; }
            .player-btn { width: 36px; height: 36px; font-size: 0.9rem; }
            .weather-temp { font-size: 3.2rem; }
            .about-logo-side { width: 120px; height: 120px; }
            .section-watermark { width: 140px; height: 140px; right: -20px; }
        }
        @media (max-width: 480px) {
            .vol-wrap { display: none !important; }
            .hero-logo-wrap { width: 170px; height: 170px; }
            .section-watermark { display: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--deep); }
        ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }