:root {
            --bg: #0f0f0f;
            --panel: #1c1c1c;
            --panel-border: #2b2b2b;
            --accent: #ee5c25;
            --accent-dark: #d3541f;
            --text: #f5f5f5;
            --muted: #c7c7c7;
        }

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

        body {
            font-family: Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
        }

        .page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 18px 40px;
        }

        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 18px;
            border-bottom: 1px solid #1f1f1f;
            margin-bottom: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text);
        }

        .brand img {
            width: 72px;
            height: 36px;
            border-radius: 8px;
            background: #111;
            box-shadow: 0 0 0 2px #1f1f1f;
            object-fit: contain;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .brand-sub {
            font-size: 0.85rem;
            color: var(--muted);
        }

        .badge {
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(238, 92, 37, 0.5);
            color: var(--accent);
            font-size: 0.85rem;
            background: rgba(238, 92, 37, 0.15);
        }

        .content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 18px;
            align-items: start;
        }

        .main-column {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .channel-list-panel {
            background: var(--panel);
            border: 1px solid var(--panel-border);
            border-radius: 16px;
            padding: 18px;
        }

        .channel-list-panel.channel-list-full {
            max-width: 980px;
            margin: 0 auto;
        }

        .channel-list-panel h2 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .channel-list-panel p {
            color: var(--muted);
            font-size: 0.85rem;
            margin-bottom: 14px;
        }

        .channel-list-items {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .channel-group {
            border: 1px solid #222;
            border-radius: 12px;
            padding: 10px 12px;
            background: #141414;
        }

        .channel-group + .channel-group {
            margin-top: 12px;
        }

        .channel-group summary {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 0.95rem;
            list-style: none;
        }

        .channel-group summary::-webkit-details-marker {
            display: none;
        }

        .channel-group summary::after {
            content: '▾';
            color: var(--muted);
            margin-left: 10px;
        }

        .channel-group[open] summary::after {
            content: '▴';
        }

        .channel-group-count {
            color: var(--muted);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .channel-group .channel-list-items {
            margin-top: 12px;
        }

        .channel-list-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid #222;
            background: #151515;
        }

        .channel-list-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
        }

        .channel-list-logo {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: #101010;
            border: 1px solid #1f1f1f;
            object-fit: contain;
        }

        .channel-list-name {
            display: inline-flex;
        }

        .channel-list-link:hover {
            color: var(--accent);
        }

        .channel-list-empty {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .viewer-count {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: #60a5fa;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .channel-list-mobile {
            display: none;
        }

        .channel-list-mobile summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            list-style: none;
        }

        .channel-list-mobile summary::-webkit-details-marker {
            display: none;
        }

        .channel-list-mobile summary::after {
            content: '▾';
            float: right;
            color: var(--muted);
        }

        .channel-list-mobile[open] summary::after {
            content: '▴';
        }

        .channel-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            border-radius: 14px;
            background: var(--panel);
            border: 1px solid var(--panel-border);
        }

        .epg {
            background: var(--panel);
            border: 1px solid var(--panel-border);
            border-radius: 16px;
            padding: 20px;
        }

        .epg-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;
        }

        .epg-header h2 {
            font-size: 1.2rem;
        }

        .epg-header p {
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 4px;
        }

        .epg-tag {
            border: 1px solid var(--panel-border);
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.75rem;
            color: var(--muted);
        }

        .epg-actions {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .epg-logo {
            width: 56px;
            height: 26px;
            border-radius: 6px;
            border: 1px solid #1f1f1f;
            background: #111;
            object-fit: contain;
        }

        .epg-list {
            display: grid;
            gap: 14px;
            transition: opacity 0.2s ease;
        }
        .epg-progress-wrapper {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 6px;
        }

        .epg-progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            overflow: hidden;
        }

        .epg-progress-fill {
            height: 100%;
            background: var(--accent);
            border-radius: 999px;
            transition: width 0.4s ease;
        }

        .epg-progress-time {
            font-size: 0.72rem;
            color: var(--accent-light);
            font-weight: 500;
        }


        .epg-item {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 16px;
            padding: 14px;
            border-radius: 12px;
            background: #151515;
            border: 1px solid transparent;
        }

        .epg-item.is-live {
            border-color: rgba(238, 92, 37, 0.6);
            background: rgba(238, 92, 37, 0.08);
        }

        .epg-time {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-weight: 600;
        }

        .live-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 8px;
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .epg-info h3 {
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .epg-info h3 .epg-ep {
            display: inline-block;
            margin-left: 8px;
            padding: 2px 8px;
            border-radius: 999px;
            background: rgba(238, 92, 37, 0.18);
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            vertical-align: middle;
        }

        .epg-info .epg-subtitle {
            color: var(--muted);
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 4px;
        }

        .epg-info p {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .epg-empty {
            color: var(--muted);
            font-size: 0.95rem;
            padding: 12px 0;
        }

        .channel-title {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .channel-title-logo {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            border: 1px solid #1f1f1f;
            background: #111;
            object-fit: contain;
        }

        .channel-title h1 {
            font-size: 1.7rem;
            margin: 0;
        }

        .channel-card p {
            color: var(--muted);
            margin-top: 6px;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 8px;
            background: var(--accent);
            color: #fff;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .action-link {
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .action-link.primary {
            background: var(--accent);
            color: #fff;
        }

        .action-link.primary:hover {
            background: var(--accent-dark);
        }

        .action-link.secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: background 0.2s ease, color 0.2s ease;
        }

        .action-link.secondary:hover {
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
        }

        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .breadcrumbs a {
            color: var(--accent-light);
            text-decoration: none;
        }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }


        .video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--panel-border);
        }

        video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: #000;
        }

        .player-status {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.95rem;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
            text-align: center;
            padding: 20px;
            cursor: pointer;
        }

        .player-status.is-hidden {
            display: none;
        }

        /* Topbar & Promo Alert */
        .topbar-nav {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .topbar-link {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .topbar-link:hover {
            color: var(--text);
        }

        .promo-top-alert {
            background: linear-gradient(90deg, #1f140e 0%, #2a150c 50%, #1f140e 100%);
            border: 1px solid rgba(238, 92, 37, 0.4);
            border-radius: 12px;
            padding: 12px 18px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .promo-top-text {
            font-size: 0.92rem;
            color: #f7f3f1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .promo-top-text strong {
            color: var(--accent);
        }

        .promo-top-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .promo-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .promo-btn--primary {
            background: var(--accent);
            color: #ffffff;
            border: none;
            box-shadow: 0 4px 12px rgba(238, 92, 37, 0.35);
        }

        .promo-btn--primary:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
        }

        .promo-btn--outline {
            background: transparent;
            color: #f7f3f1;
            border: 1px solid #3a3a3a;
        }

        .promo-btn--outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .promo-btn--whatsapp {
            background: #25D366;
            color: #ffffff;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .promo-btn--whatsapp:hover {
            background: #1eb956;
            transform: translateY(-1px);
        }

        /* Promo Callout under player */
        .promo-callout {
            background: linear-gradient(145deg, #181515 0%, #141110 100%);
            border: 1px solid rgba(238, 92, 37, 0.35);
            border-radius: 16px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            position: relative;
            overflow: hidden;
            margin-top: 6px;
        }

        .promo-callout::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ee5c25 0%, #ff8b64 50%, #b87350 100%);
        }

        .promo-callout-header h3 {
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .promo-callout-header p {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .promo-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
        }

        .promo-feature-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #282524;
            border-radius: 10px;
            padding: 12px 14px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .promo-feature-icon {
            font-size: 1.25rem;
            line-height: 1;
            flex-shrink: 0;
        }

        .promo-feature-text h4 {
            font-size: 0.88rem;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .promo-feature-text p {
            font-size: 0.78rem;
            color: #a8a29e;
            line-height: 1.3;
        }

        .promo-callout-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            padding-top: 8px;
            border-top: 1px solid #23201f;
        }

        /* Section Planes y Precios */
        .plans-section {
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid #222;
        }

        .plans-hero {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 32px;
        }

        .plans-kicker {
            color: var(--accent);
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .plans-hero h2 {
            font-size: 1.8rem;
            color: #ffffff;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .plans-subtitle {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 28px;
        }

        .plan-card {
            background: #161515;
            border: 1px solid #2b2827;
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: transform 0.2s, border-color 0.2s;
        }

        .plan-card:hover {
            transform: translateY(-3px);
            border-color: #444;
        }

        .plan-card--trial {
            background: linear-gradient(180deg, #1c1917 0%, #151312 100%);
            border-color: #b87350;
        }

        .plan-card--featured {
            background: linear-gradient(180deg, #221612 0%, #171312 100%);
            border: 2px solid var(--accent);
            box-shadow: 0 8px 24px rgba(238, 92, 37, 0.25);
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #b87350;
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 999px;
            letter-spacing: 0.5px;
        }

        .plan-badge--featured {
            background: var(--accent);
            box-shadow: 0 2px 8px rgba(238, 92, 37, 0.5);
        }

        .plan-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #ffffff;
        }

        .plan-description {
            color: var(--muted);
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .plan-price {
            margin-bottom: 16px;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .plan-price__value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
        }

        .plan-price__currency,
        .plan-price__period {
            font-size: 0.85rem;
            color: var(--muted);
        }

        .plan-price__currency {
            font-size: 0.95rem;
            font-weight: 600;
        }

        .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
            padding: 0;
        }

        .plan-features li {
            font-size: 0.85rem;
            color: #d1cbc7;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.35;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
        }

        .plan-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: auto;
        }

        .plan-pricing-stack {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
        }

        .pricing-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #2b2827;
            border-radius: 8px;
        }

        .pricing-row__label {
            font-size: 0.78rem;
            color: var(--muted);
            display: flex;
            flex-direction: column;
        }

        .pricing-row__amount {
            font-size: 0.88rem;
            font-weight: 700;
            color: #ffffff;
        }

        .pricing-row__btn {
            font-size: 0.78rem;
            padding: 6px 12px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            white-space: nowrap;
            display: inline-block;
            transition: all 0.2s;
        }

        .pricing-row__btn--primary {
            background: var(--accent);
            color: #ffffff;
        }

        .pricing-row__btn--primary:hover {
            background: var(--accent-dark);
        }

        .pricing-row__btn--ghost {
            background: #2b2827;
            color: #ffffff;
        }

        .pricing-row__btn--ghost:hover {
            background: #3b3736;
        }

        .devices-banner {
            background: #141313;
            border: 1px solid #262322;
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .devices-info h4 {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .devices-info p {
            font-size: 0.82rem;
            color: var(--muted);
        }

        .devices-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .device-pill {
            background: #201d1c;
            border: 1px solid #332f2e;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 0.78rem;
            color: #f7f3f1;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            background: #25D366;
            color: #ffffff;
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .floating-whatsapp:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
            color: #ffffff;
        }

        .floating-whatsapp svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        @media (max-width: 768px) {
            .topbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .channel-card {
                padding: 16px;
            }

            .channel-card h1 {
                font-size: 1.4rem;
            }

            .epg-item {
                grid-template-columns: 1fr;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .channel-list-panel {
                display: block;
                width: 100%;
                margin-top: 12px;
            }

            .promo-top-alert {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .promo-top-text,
            .promo-top-actions {
                justify-content: center;
            }

            .topbar-nav {
                display: none;
            }

            .floating-whatsapp span {
                display: none;
            }

            .floating-whatsapp {
                padding: 12px;
                bottom: 20px;
                right: 16px;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .devices-banner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Floating In-Player EPG Overlay */
        .player-epg-overlay {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 10;
            background: rgba(12, 12, 14, 0.82);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 10px;
            padding: 8px 14px;
            max-width: min(340px, 80%);
            pointer-events: none;
            transition: opacity 0.35s ease, transform 0.35s ease;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
        }

        .video-wrapper.is-idle .player-epg-overlay {
            opacity: 0;
            transform: translateY(-4px);
        }

        .player-epg-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 3px;
        }

        .player-live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #ff3b30;
            box-shadow: 0 0 8px #ff3b30;
            animation: pulse-dot 1.8s infinite;
        }

        @keyframes pulse-dot {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.85); }
            100% { opacity: 1; transform: scale(1); }
        }

        .player-epg-label {
            font-size: 0.68rem;
            font-weight: 700;
            color: #ff5545;
            letter-spacing: 0.6px;
            text-transform: uppercase;
        }

        .player-epg-title {
            font-size: 0.88rem;
            font-weight: 700;
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.25;
        }

        .player-epg-ep {
            display: inline-block;
            margin-left: 5px;
            padding: 1px 6px;
            border-radius: 999px;
            background: rgba(238, 92, 37, 0.25);
            color: var(--accent-light);
            font-size: 0.68rem;
            font-weight: 600;
            vertical-align: middle;
        }

        .player-epg-subtitle {
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 2px;
        }

        .player-epg-progress {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 5px;
        }

        .player-epg-progress-bar {
            flex: 1;
            height: 3px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 999px;
            overflow: hidden;
        }

        .player-epg-progress-fill {
            height: 100%;
            background: var(--accent);
            border-radius: 999px;
            transition: width 0.3s ease;
        }

        .player-epg-time-rem {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            flex-shrink: 0;
        }

        @media (max-width: 600px) {
            .player-epg-overlay {
                top: 8px;
                left: 8px;
                padding: 6px 10px;
                max-width: 85%;
            }
            .player-epg-title {
                font-size: 0.8rem;
            }
            .player-epg-subtitle {
                display: none;
            }
        }
