/* ===== JOHNNY TV MODERNE - STYLE PLAYER ===== */

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gold: #d4af37;
    --light-gold: #f0d77e;
    --dark-gold: #b8941f;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

body {
    background: var(--primary-black);
    color: var(--text-white);
}

/* ===== HEADER MINIMAL ===== */

.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
}

.header-minimal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-back {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateX(-5px);
}

.logo-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 8px;
    color: var(--light-gold);
    letter-spacing: 2px;
}

.btn-share {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-gray);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== SECTION TV MODERNE ===== */

.tv-modern-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #000000 0%, #1a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.tv-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ===== HEADER TV ===== */

.tv-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.tv-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.tv-title {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #ff6b6b 50%, #f0d77e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    animation: fadeInDown 1s ease 0.2s both;
}

.tv-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.3s both;
}

.tv-live-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    border-radius: 50px;
    padding: 12px 30px;
    margin-bottom: 20px;
    animation: livePulse 2s ease-in-out infinite, fadeIn 1s ease 0.4s both;
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px #ff0000;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.8); }
}

.tv-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.5s both;
}

.tv-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-gray);
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.meta-icon {
    font-size: 18px;
}

.tv-meta-separator {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== CONTAINER VIDÉO ===== */

.tv-video-container {
    max-width: 1400px;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(212, 175, 55, 0.3),
        0 0 0 6px rgba(220, 38, 38, 0.2),
        0 0 80px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease 0.6s both;
    transition: all 0.5s ease;
}

.tv-video-container:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 40px 110px rgba(0, 0, 0, 0.7),
        0 0 0 3px rgba(212, 175, 55, 0.5),
        0 0 0 6px rgba(220, 38, 38, 0.4),
        0 0 100px rgba(212, 175, 55, 0.3);
}

/* Wrapper pour les iframes */
.custom-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== SECTION CONTENU ===== */

.tv-content-section {
    padding: 60px 0 80px;
    background: var(--primary-black);
}

.tv-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.tv-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== CARTES ===== */

.tv-current-program-card,
.tv-date-selector-card,
.tv-stats-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-title {
    font-size: 22px;
    color: var(--gold);
    margin: 0;
    font-weight: 700;
}

.live-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 1px;
    animation: livePulse 2s ease-in-out infinite;
}

.live-dot-small {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Programme actuel */
.current-program-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.current-program-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.current-program-details h4 {
    font-size: 24px;
    color: var(--text-white);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.current-program-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-gray);
}

.current-program-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.program-category-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-black);
    padding: 6px 16px !important;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    border: none !important;
}

/* Barre de progression du programme */
.program-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 10px;
    transition: width 1s linear;
    box-shadow: 0 0 10px var(--gold);
}

/* ===== SÉLECTEUR DE DATE ===== */

.date-selector-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-white);
}

.toggle-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.auto-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-black);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.manual-date-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.selector-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selector-group label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.selector-group select {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-white);
    font-size: 14px;
    cursor: pointer;
}

.selector-group select:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===== STATISTIQUES ===== */

.tv-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 36px;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
}

/* ===== SIDEBAR PROGRAMME ===== */

.tv-sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    max-height: 900px;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.sidebar-title {
    font-size: 20px;
    color: var(--gold);
    margin: 0;
    font-weight: 700;
}

.program-count {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.program-list {
    flex: 1;
    overflow-y: auto;
}

.program-list::-webkit-scrollbar {
    width: 8px;
}

.program-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.program-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* Item de programme */
.program-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.program-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.program-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(196, 155, 46, 0.2) 100%);
    border-left: 4px solid var(--gold);
    padding-left: 11px;
}

.program-item.active::before {
    content: '▶️';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.program-thumbnail {
    font-size: 40px;
    flex-shrink: 0;
}

.program-info {
    flex: 1;
    min-width: 0;
}

.program-info h4 {
    font-size: 15px;
    color: var(--text-white);
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
}

.program-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.program-category {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/* ===== LOADING STATES ===== */

.loading-spinner,
.loading-programs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 15px;
    color: var(--text-gray);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-small {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== TOAST NOTIFICATIONS ===== */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 18px 20px;
    min-width: 300px;
    border: 2px solid;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.toast-success {
    border-color: #4ecdc4;
}

.toast-error {
    border-color: #ff6b6b;
}

.toast-info {
    border-color: var(--gold);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== ANIMATIONS ===== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .tv-content-grid {
        grid-template-columns: 1fr;
    }

    .tv-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tv-modern-section {
        padding: 100px 0 40px;
    }

    .tv-title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .tv-subtitle {
        font-size: 16px;
    }

    .tv-meta {
        gap: 12px;
    }

    .tv-meta-item {
        font-size: 13px;
        padding: 6px 15px;
    }

    .tv-video-container {
        border-radius: 20px;
    }

    .manual-date-selector {
        grid-template-columns: 1fr;
    }

    .tv-stats-grid {
        grid-template-columns: 1fr;
    }

    .program-item {
        flex-direction: column;
        text-align: center;
    }

    .program-thumbnail {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .tv-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .tv-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .toast-container {
        left: 10px;
        right: 10px;
    }

    .toast {
        min-width: auto;
    }
}

/* ===== INFORMATIONS PROGRAMME (MODE TV) ===== */
.date-info-display {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

.tv-info-note {
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ecdc4;
    padding: 15px;
    border-radius: 8px;
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== OVERLAY DE DÉMARRAGE TV ===== */
.tv-start-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.tv-start-overlay:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
}

.tv-start-content {
    text-align: center;
    padding: 40px;
    animation: fadeInScale 0.6s ease;
    pointer-events: none;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tv-start-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.tv-start-title {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #ff6b6b 50%, #f0d77e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.tv-start-text {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 30px;
}

.tv-start-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f0d77e 100%);
    color: #000000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tv-start-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.tv-start-button:active {
    transform: translateY(-1px) scale(1.02);
}

.tv-start-button svg {
    width: 24px;
    height: 24px;
}

/* ===== BOUTON RELOAD TV ===== */
.reload-tv-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f0d77e 100%);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.reload-tv-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.reload-tv-button:active {
    transform: translateY(0);
}

/* ===== CONTRÔLES TV (CAST + PLEIN ÉCRAN) ===== */
.tv-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tv-video-container:hover .tv-controls-overlay {
    opacity: 1;
    pointer-events: all;
}

.tv-controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tv-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulseLiveDot 2s ease-in-out infinite;
}

@keyframes pulseLiveDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.tv-control-buttons {
    display: flex;
    gap: 10px;
}

.tv-control-btn {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tv-control-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
    transform: scale(1.1);
}

.tv-control-btn svg {
    width: 24px;
    height: 24px;
}

/* Cast button active state */
.tv-control-btn.casting {
    background: #4285f4;
    border-color: #4285f4;
    color: white;
}

.tv-control-btn.casting:hover {
    background: #3367d6;
    border-color: #3367d6;
}


/* DEBUG: Forcer visibilité temporaire */
.tv-controls-overlay.debug-visible {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* Wrapper vidéo */
#tvVideoWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}