:root {
            --bg: #0a0a0a;
            --bg-dark: #111111;
            --fg: #FFFFFF;
            --muted: #888888;
            --accent: #E31B23;
            --yellow: #FFD700;
            --orange: #FF6B00;
            --card: #1a1a1a;
            --border: rgba(227,27,35,0.15);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; -ms-content-zooming: none; touch-action: manipulation; }

        body {
            font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--fg);
            overflow-x: hidden; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; line-height: 1.6;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
        .font-bebas { font-family: 'Bebas Neue', sans-serif; }
        .txt-c { text-align: center; }

        /* ===== NAV ===== */
        .nav-bar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 900;
            background: rgba(10,10,10,0.92); backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
        }
        .nav-inner { max-width: 1200px; margin: 0 auto; padding: 8px 16px; display: flex; align-items: center; justify-content: space-between; }
        .nav-brand { display: flex; align-items: center; gap: 10px; }
        .nav-brand img { width: 36px; height: 36px; object-fit: contain; }
        .nav-links { display: none; gap: 4px; }
        .nav-link { color: var(--fg); font-size: 0.85rem; font-weight: 500; padding: 7px 14px; border-radius: 8px; transition: all 0.25s; }
        .nav-link:hover { background: rgba(227,27,35,0.15); color: var(--yellow); }
        .nav-sub { display: none; }
        @media(min-width:640px) { .nav-links { display: flex; } .nav-sub { display: block; } .player-info { display: block !important; } .player-live { display: inline-flex !important; } }

        /* ===== ON AIR ===== */
        .on-air {
            display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px;
            background: rgba(227,27,35,0.15); border: 1px solid var(--accent); border-radius: 50px;
            font-size: 0.7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap;
        }
        .on-air-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: blink 1s ease-in-out infinite; flex-shrink: 0; }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

        /* ===== HERO ===== */
        .hero {
            position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
            overflow: hidden; padding-bottom: 80px; background: radial-gradient(ellipse at 50% 40%, #1a0505 0%, #0a0a0a 70%);
        }
        .hero::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: conic-gradient(from 0deg, transparent 0deg, rgba(227,27,35,0.07) 60deg, transparent 120deg, rgba(255,215,0,0.04) 180deg, transparent 240deg, rgba(255,107,0,0.05) 300deg, transparent 360deg);
            animation: heroSpin 25s linear infinite;
        }
        @keyframes heroSpin { to { transform: rotate(360deg); } }
        .hero-logo { max-width: 380px; width: 88%; margin: 0 auto; filter: drop-shadow(0 0 40px rgba(227,27,35,0.3)); animation: logoFloat 4s ease-in-out infinite; }
        @keyframes logoFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
        .particle { position: absolute; border-radius: 50%; pointer-events: none; animation: pRise linear infinite; }
        @keyframes pRise { 0%{transform:translateY(0) scale(1);opacity:0.9} 100%{transform:translateY(-105vh) scale(0);opacity:0} }

        /* ===== MARQUEE ===== */
        .marquee-wrap { overflow: hidden; white-space: nowrap; padding: 8px 0; }
        .marquee-inner { display: inline-block; animation: marqScroll 22s linear infinite; }
        @keyframes marqScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

        /* ===== SECCIONES ===== */
        .sec-wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
        .sec-title {
            font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
            background: linear-gradient(135deg, var(--yellow), var(--orange), var(--accent));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; text-align: center;
        }
        .sec-line { width: 60px; height: 3px; margin: 10px auto 0; background: linear-gradient(to right, var(--accent), var(--yellow)); border-radius: 2px; }
        .sec-sub { margin-top: 12px; font-size: 0.999rem; color: var(--white); text-align: center; }
        .sec-pad { padding: 56px 0; }
        .separator { height: 1px; background: linear-gradient(to right, transparent, var(--accent), transparent); }

        /* ===== RELOJ ===== */
        .clock-val {
            font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 9vw, 6.5rem);
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; text-align: center;
        }
        .info-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 36px auto 0; }
        @media(min-width:768px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
        .info-card { text-align: center; padding: 28px 20px; border-radius: 16px; background: var(--card); border: 1px solid var(--border); transition: transform 0.3s; }
        .info-card:hover { transform: translateY(-3px); }
        .w-detail { display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--muted); }
        .w-details-row { display: flex; justify-content: center; gap: 20px; margin-top: 16px; flex-wrap: wrap; }

        /* ===== SOCIAL ===== */
        .social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 36px; }
        .social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; border: 2px solid transparent; }
        .social-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
        .social-fb { background: linear-gradient(135deg, #1877F2, #0D65D9); color: #fff; }
        .social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
        .social-tk { background: linear-gradient(135deg, #010101, #25F4EE, #FE2C55); color: #fff; }

        /* ===== TIKTOK GRID ===== */
        .tiktok-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 1100px; margin: 36px auto 0; }
        @media(min-width:500px) { .tiktok-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
        @media(min-width:768px) { .tiktok-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
        .tiktok-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 9/16; background: var(--card); border: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: all 0.3s; display: block; }
        .tiktok-card:hover { transform: scale(1.04); border-color: var(--accent); box-shadow: 0 8px 30px rgba(227,27,35,0.25); }
        .tiktok-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .tiktok-card:hover img { transform: scale(1.08); }
        .tk-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 35%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
        .tk-title { font-weight: 600; font-size: 0.75rem; color: #fff; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.3; }
        .tk-stats { display: flex; align-items: center; gap: 10px; font-size: 0.6rem; color: rgba(255,255,255,0.6); }
        .tk-stats span { display: inline-flex; align-items: center; gap: 3px; }
        .tk-play-ico { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; z-index: 3; }
        .tiktok-card:hover .tk-play-ico { opacity: 1; }
        .tk-badge { position: absolute; top: 10px; left: 10px; z-index: 3; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); border-radius: 6px; padding: 3px 7px; display: flex; align-items: center; gap: 4px; }
        .tk-badge i { color: #FE2C55; font-size: 0.7rem; }
        .tk-badge span { color: #fff; font-size: 0.55rem; font-weight: 600; }
        .tk-loading { grid-column: 1 / -1; text-align: center; padding: 50px 20px; color: var(--muted); }
        .tk-loading i { font-size: 2rem; display: block; margin: 0 auto 12px; }

        /* ===== TIKTOK MODAL ===== */
        .tk-modal { display: none; position: fixed; inset: 0; z-index: 1500; background: rgba(0,0,0,0.92); backdrop-filter: blur(12px); align-items: center; justify-content: center; padding: 20px; }
        .tk-modal.active { display: flex; }
        .tk-modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: all 0.3s; line-height: 1; }
        .tk-modal-close:hover { background: var(--accent); border-color: var(--accent); }
        .tk-modal-body { max-width: 360px; width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); position: relative; background: #000; }
        .tk-modal-body iframe { display: block; border: none; }

        /* =============================================
           CARRUSEL DE EVENTOS / PUBLICIDAD
           ============================================= */
        .carousel-section {
            background: linear-gradient(180deg, var(--bg) 0%, #0d0202 50%, var(--bg) 100%);
            position: relative; overflow: hidden;
        }
        .carousel-section::before {
            content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(227,27,35,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .ev-banner {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 10px 24px; border-radius: 50px;
            background: linear-gradient(135deg, var(--accent), var(--orange));
            color: #fff; font-weight: 700; font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(227,27,35,0.4);
            margin-bottom: 20px;
        }
        .ev-banner i { font-size: 1rem; }

        .carousel-outer {
            position: relative; max-width: 480px; margin: 0 auto;
        }
        .carousel-viewport {
            overflow: hidden; border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(227,27,35,0.2);
        }
        .carousel-track {
            display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform;
        }
        .carousel-slide {
            flex: 0 0 100%; width: 100%; display: flex;
            align-items: center; justify-content: center;
            background: #000; padding: 0;
        }
        .carousel-slide img {
            width: 100%; height: auto; display: block;
            max-height: 580px; object-fit: contain;
        }
        @media(max-width:520px) {
            .carousel-slide img { max-height: 420px; }
            .carousel-outer { max-width: 100%; }
        }

        /* Flechas del carrusel */
        .carousel-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(0,0,0,0.7); border: 1px solid rgba(227,27,35,0.4);
            color: #fff; font-size: 1rem; cursor: pointer; z-index: 5;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; backdrop-filter: blur(6px);
        }
        .carousel-arrow:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.1); }
        .carousel-arrow.prev { left: -22px; }
        .carousel-arrow.next { right: -22px; }
        @media(max-width:560px) {
            .carousel-arrow.prev { left: 8px; }
            .carousel-arrow.next { right: 8px; }
            .carousel-arrow { width: 36px; height: 36px; font-size: 0.85rem; background: rgba(0,0,0,0.8); }
        }

        /* Puntos indicadores */
        .carousel-dots {
            display: flex; justify-content: center; gap: 8px; margin-top: 20px;
        }
        .carousel-dot {
            width: 10px; height: 10px; border-radius: 50%;
            background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer; transition: all 0.3s;
        }
        .carousel-dot.active {
            background: var(--accent); border-color: var(--accent);
            box-shadow: 0 0 10px rgba(227,27,35,0.5);
            transform: scale(1.2);
        }
        .carousel-dot:hover { background: rgba(227,27,35,0.5); }

        /* Contador de slide */
        .carousel-counter {
            text-align: center; margin-top: 12px;
            font-size: 0.8rem; color: var(--muted);
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 2px;
        }
        .carousel-counter .current-num {
            color: var(--yellow); font-size: 1.1rem;
        }

        /* ===== APP BUTTONS ===== */
        .app-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 36px; }
        .app-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; transition: all 0.3s; }
        .app-btn:hover { background: rgba(227,27,35,0.12); border-color: var(--accent); transform: translateY(-3px); }

        /* ===== COUNTER ===== */
        .counter-box { background: var(--card); border: 1px solid rgba(227,27,35,0.25); border-radius: 14px; padding: 18px 28px; display: inline-flex; align-items: center; gap: 14px; }
        .counter-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; background: linear-gradient(135deg, var(--accent), var(--yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

        /* ===== SCHEDULE ===== */
        .sch-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1000px; margin: 36px auto 0; }
        @media(min-width:640px) { .sch-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(min-width:960px) { .sch-grid { grid-template-columns: repeat(3, 1fr); } }
        .sch-card { padding: 20px; border-radius: 14px; background: var(--card); border: 1px solid rgba(255,255,255,0.04); transition: all 0.3s; text-align: center; }
        .sch-card:hover { transform: scale(1.02); }
        .sch-active { border-color: var(--accent) !important; box-shadow: 0 0 22px rgba(227,27,35,0.2); }
        .sch-time { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }

        /* ===== CHAT ===== */
        .chat-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); max-width: 760px; margin: 36px auto 0; }

        /* ===== PLAYER ===== */
        .player-bar {
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
            background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 50%, #0d0d0d 100%);
            border-top: 2px solid var(--accent); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            padding: 8px 14px; display: flex; align-items: center; gap: 10px;
        }
        .player-logo { width: 42px; height: 42px; border-radius: 8px; object-fit: contain; flex-shrink: 0; }
        .eq { display: flex; align-items: flex-end; gap: 2px; height: 26px; flex-shrink: 0; }
        .eq-b { width: 3px; border-radius: 2px; background: linear-gradient(to top, var(--accent), var(--yellow)); animation: eqJump 0.7s ease-in-out infinite alternate; }
        .eq-b:nth-child(1){height:7px;animation-delay:0s} .eq-b:nth-child(2){height:15px;animation-delay:.08s} .eq-b:nth-child(3){height:24px;animation-delay:.16s}
        .eq-b:nth-child(4){height:11px;animation-delay:.24s} .eq-b:nth-child(5){height:19px;animation-delay:.12s} .eq-b:nth-child(6){height:26px;animation-delay:.2s}
        .eq-b:nth-child(7){height:13px;animation-delay:.04s} .eq-b:nth-child(8){height:21px;animation-delay:.28s} .eq-b:nth-child(9){height:9px;animation-delay:.1s} .eq-b:nth-child(10){height:17px;animation-delay:.22s}
        @keyframes eqJump { 0%{transform:scaleY(0.25)} 100%{transform:scaleY(1)} }
        .eq-paused .eq-b { animation-play-state: paused; transform: scaleY(0.15); }
        .play-btn { width: 46px; height: 46px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--accent), var(--orange)); color: #fff; font-size: 17px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; box-shadow: 0 0 18px rgba(227,27,35,0.4); }
        .play-btn:hover { transform: scale(1.12); box-shadow: 0 0 28px rgba(227,27,35,0.6); }
        .vol-slider { -webkit-appearance: none; appearance: none; width: 75px; height: 4px; background: linear-gradient(to right, var(--accent), var(--yellow)); border-radius: 2px; outline: none; cursor: pointer; }
        .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; background: var(--yellow); border-radius: 50%; cursor: pointer; box-shadow: 0 0 8px rgba(255,215,0,0.5); }
        .vol-slider::-moz-range-thumb { width: 14px; height: 14px; background: var(--yellow); border-radius: 50%; cursor: pointer; border: none; }

        /* ===== WHATSAPP ===== */
        .wa-btn { position: fixed; bottom: 78px; right: 18px; z-index: 999; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 27px; box-shadow: 0 4px 18px rgba(37,211,102,0.45); transition: all 0.3s; animation: waPulse 2s ease-in-out infinite; }
        .wa-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
        @keyframes waPulse { 0%,100%{box-shadow:0 4px 18px rgba(37,211,102,0.45)} 50%{box-shadow:0 4px 28px rgba(37,211,102,0.75)} }

        /* ===== TOAST ===== */
        .toast { position: fixed; top: 78px; right: 18px; z-index: 2000; background: var(--card); border: 1px solid var(--accent); border-radius: 12px; padding: 13px 20px; color: #fff; font-size: 0.85rem; max-width: 300px; transform: translateX(400px); transition: transform 0.4s ease; }
        .toast.show { transform: translateX(0); }

        /* ===== ANIMACIONES ===== */
        .fade-in { opacity: 0; transform: translateY(28px); transition: all 0.7s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .bounce-a { animation: bounceA 2s infinite; }
        @keyframes bounceA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

        /* ===== BOTONES ===== */
        .btn-p { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 9999px; font-weight: 600; color: #fff; transition: transform 0.3s; cursor: pointer; border: none; font-family: inherit; font-size: inherit; }
        .btn-p:hover { transform: scale(1.05); }
        .btn-o { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 9999px; font-weight: 600; transition: transform 0.3s; cursor: pointer; background: transparent; font-family: inherit; font-size: inherit; }
        .btn-o:hover { transform: scale(1.05); }

        /* ===== FOOTER ===== */
        .footer { padding: 36px 16px; background: #050505; border-top: 1px solid var(--border); }
        .footer-logo { width: 112px; margin: 0 auto 12px; opacity: 0.75; }
        .footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
        .footer-socials a { font-size: 1.125rem; color: var(--muted); transition: color 0.3s; }
        .footer-socials a:hover { color: #fff; }

        /* ===== RESPONSIVE PLAYER ===== */
        @media(max-width:640px) {
            .player-bar { padding: 6px 8px; gap: 6px; }
            .player-logo { width: 32px; height: 32px; }
            .play-btn { width: 38px; height: 38px; font-size: 14px; }
            .eq { height: 20px; }
            .eq-b { width: 2px; }
            .vol-slider { width: 50px; }
            .wa-btn { bottom: 68px; right: 12px; width: 46px; height: 46px; font-size: 23px; }
            .hero-logo { max-width: 280px; }
        }
        @media(prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; } }