:root {
            --green: #00e676;
            --green-dark: #00a152;
            --green-glow: rgba(0, 230, 118, 0.4);
            --bg: #0a0a0a;
            --card: #111111;
            --border: #1e1e1e;
            --muted: #c8c8c8;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; background: var(--bg); color: #fff; overflow-x: hidden; }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

        .glow-green { box-shadow: 0 0 20px var(--green-glow), 0 0 40px rgba(0,230,118,0.1); }
        .text-glow { text-shadow: 0 0 20px var(--green-glow); }

        .news-card { transition: all 0.3s ease; border: 1px solid var(--border); }
        .news-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,230,118,0.12); }

        .player-bar {
            background: linear-gradient(180deg, rgba(17,17,17,0.98) 0%, rgba(8,8,8,1) 100%);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0,230,118,0.15);
        }

        .play-btn {
            width: 52px; height: 52px; border-radius: 50%;
            background: var(--green); display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s ease;
            box-shadow: 0 0 20px var(--green-glow);
            border: none; color: #0a0a0a; font-size: 20px;
        }
        .play-btn:hover { transform: scale(1.1); box-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(0,230,118,0.2); }
        .play-btn:active { transform: scale(0.95); }

        .hero-bg {
            background:
                radial-gradient(ellipse at 50% 0%, rgba(0,230,118,0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0,230,118,0.03) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, rgba(0,230,118,0.02) 0%, transparent 40%),
                linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
        }

        .particle {
            position: fixed; width: 2px; height: 2px; background: var(--green);
            border-radius: 50%; opacity: 0; pointer-events: none;
            animation: floatUp linear infinite;
        }
        @keyframes floatUp {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.25; }
            90% { opacity: 0.15; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }

        .whatsapp-btn {
            position: fixed; bottom: 115px; right: 20px; z-index: 999;
            width: 58px; height: 58px; border-radius: 50%; background: #25D366;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
            transition: all 0.3s ease; animation: waPulse 2s infinite;
            text-decoration: none; color: #fff; font-size: 28px;
        }
        .whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 25px rgba(37,211,102,0.6); }
        @keyframes waPulse {
            0%,100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
        }

        .section-title { position: relative; display: inline-block; }
        .section-title::after {
            content: ''; position: absolute; bottom: -8px; left: 0;
            width: 50px; height: 3px; background: var(--green); border-radius: 2px;
        }

        .cover-art {
            width: 60px; height: 60px; border-radius: 10px; object-fit: cover;
            border: 2px solid var(--border); transition: all 0.3s;
            background: #1a1a1a; flex-shrink: 0;
        }
        .cover-art.playing { border-color: var(--green); box-shadow: 0 0 15px var(--green-glow); }

        .weather-card {
            background: linear-gradient(135deg, rgba(0,230,118,0.08) 0%, rgba(0,165,82,0.03) 100%);
            border: 1px solid rgba(0,230,118,0.18);
        }

        .clock-display { font-family: 'Orbitron', sans-serif; font-variant-numeric: tabular-nums; }

        .social-btn {
            width: 52px; height: 52px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease; border: 1px solid var(--border);
            text-decoration: none; font-size: 22px;
        }
        .social-btn:hover { transform: translateY(-3px) scale(1.08); }
        .social-btn.fb { background: rgba(24,119,242,0.12); border-color: rgba(24,119,242,0.3); color: #1877F2; }
        .social-btn.fb:hover { background: #1877F2; color: #fff; box-shadow: 0 6px 25px rgba(24,119,242,0.5); }
        .social-btn.ig {
            background: linear-gradient(135deg,rgba(131,58,180,0.12),rgba(253,29,29,0.12),rgba(252,176,69,0.12));
            border-color: rgba(253,29,29,0.3); color: #E1306C;
        }
        .social-btn.ig:hover { background: linear-gradient(135deg,#833AB4,#FD1D1D,#FBCB46); color: #fff; box-shadow: 0 6px 25px rgba(253,29,29,0.5); }

        .news-img { width: 100%; height: 150px; object-fit: cover; }
        .news-img-placeholder { width: 100%; height: 150px; background: linear-gradient(135deg,#1a1a1a,#222); display: flex; align-items: center; justify-content: center; color: #333; font-size: 2rem; }

        .counter-card {
            background: linear-gradient(135deg, rgba(0,230,118,0.07) 0%, transparent 100%);
            border: 1px solid rgba(0,230,118,0.12);
        }
        .counter-num { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; color: var(--green); text-shadow: 0 0 20px var(--green-glow); }

        .main-logo { max-height: 75px; filter: drop-shadow(0 0 15px rgba(0,230,118,0.25)); transition: filter 0.3s; }
        .main-logo:hover { filter: drop-shadow(0 0 25px rgba(0,230,118,0.4)); }
        .hero-logo { max-height: 120px; filter: drop-shadow(0 0 30px rgba(0,230,118,0.35)); }

        .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff1744; animation: livePulse 1.5s infinite; flex-shrink: 0; }
        @keyframes livePulse {
            0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,23,68,0.4); }
            50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,23,68,0); }
        }

        .hero-eq-bar {
            width: 5px; border-radius: 3px;
            background: linear-gradient(to top, var(--green-dark), var(--green), var(--green-glow));
            animation: heroEq 0.6s ease-in-out infinite alternate;
            opacity: 0.6;
        }
        .hero-eq-bar.paused { animation-play-state: paused; transform: scaleY(0.15) !important; opacity: 0.2; }
        @keyframes heroEq { 0% { transform: scaleY(0.2); } 100% { transform: scaleY(1); } }

        .skeleton { background: linear-gradient(90deg,#1a1a1a 25%,#222 50%,#1a1a1a 75%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: 8px; }
        @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

        .vol-slider { -webkit-appearance: none; appearance: none; width: 80px; height: 4px; background: #333; border-radius: 2px; outline: none; }
        .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--green); cursor: pointer; box-shadow: 0 0 8px var(--green-glow); }
        .vol-slider::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--green); cursor: pointer; border: none; }

        .header-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 16px;
        }
        .header-grid > .header-left { justify-self: start; }
        .header-grid > .header-center { justify-self: center; }
        .header-grid > .header-right { justify-self: end; }

        .text-sm-white { color: #e8e8e8; }
        .text-xs-white { color: #d8d8d8; }
        .text-xxs-white { color: #cccccc; }

        /* ===== CARRUSEL ===== */
        .carousel-wrapper {
            position: relative;
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
        }
        .carousel-viewport {
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: #0d0d0d;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .carousel-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background: #0d0d0d;
        }
        .carousel-slide img {
            max-width: 100%;
            max-height: 420px;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            display: block;
        }
        /* Flechas */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.7);
            border: 1px solid rgba(0,230,118,0.25);
            color: var(--green);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 5;
            font-size: 14px;
            backdrop-filter: blur(8px);
        }
        .carousel-arrow:hover {
            background: var(--green);
            color: #0a0a0a;
            box-shadow: 0 0 20px var(--green-glow);
            border-color: var(--green);
        }
        .carousel-arrow.prev { left: -20px; }
        .carousel-arrow.next { right: -20px; }
        /* Puntos indicadores */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
        }
        .carousel-dot {
            width: 10px; height: 10px;
            border-radius: 50%;
            background: #2a2a2a;
            border: 1px solid #333;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .carousel-dot.active {
            background: var(--green);
            border-color: var(--green);
            box-shadow: 0 0 10px var(--green-glow);
            transform: scale(1.2);
        }
        .carousel-dot:hover:not(.active) {
            background: #444;
            border-color: #555;
        }
        /* Barra de progreso */
        .carousel-progress {
            height: 2px;
            background: #1a1a1a;
            border-radius: 1px;
            margin-top: 10px;
            overflow: hidden;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .carousel-progress-bar {
            height: 100%;
            background: var(--green);
            border-radius: 1px;
            width: 0%;
            transition: width 0.1s linear;
        }

        @media (max-width: 768px) {
            .carousel-slide img { max-height: 300px; }
            .carousel-arrow { width: 34px; height: 34px; font-size: 12px; }
            .carousel-arrow.prev { left: -8px; }
            .carousel-arrow.next { right: -8px; }
            .carousel-slide { padding: 8px; }
        }
        @media (max-width: 480px) {
            .carousel-slide img { max-height: 220px; }
            .carousel-arrow { width: 30px; height: 30px; font-size: 11px; }
            .carousel-arrow.prev { left: -4px; }
            .carousel-arrow.next { right: -4px; }
            .carousel-dot { width: 8px; height: 8px; }
        }

        @media (max-width: 640px) {
            .player-bar { padding: 6px 10px !important; }
            .cover-art { width: 46px; height: 46px; border-radius: 8px; }
            .play-btn { width: 42px; height: 42px; font-size: 16px; }
            .whatsapp-btn { bottom: 95px; width: 50px; height: 50px; font-size: 24px; }
            .hero-logo { max-height: 80px; }
            .vol-slider { display: none; }
            .vol-icon { display: none !important; }
            .counter-num { font-size: 1.4rem; }
            .social-btn { width: 44px; height: 44px; font-size: 18px; }
            .main-logo { max-height: 55px; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
            .carousel-track { transition: none; }
        }