/* ================================================
   RADIOSOFT 2026 - BROADCAST RADIO DESIGN
   ================================================ */


:root {
    --primary: #ff3366;
    --primary-dark: #cc2952;
    --primary-light: #ff5c8a;
    --secondary: #00d4ff;
    --secondary-dark: #00a8cc;
    --accent: #ffd000;
    --bg-dark: #050508;
    --bg-medium: #0a0a10;
    --bg-light: #101018;
    --bg-card: #0d0d14;
    --bg-hover: #15151f;
    --text: #ffffff;
    --text-secondary: #b0b0c0;
    --text-dim: #606080;
    --live: #ff0040;
    --live-glow: rgba(255, 0, 64, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.9);
    --glow-primary: 0 0 30px rgba(255, 51, 102, 0.4);
    --glow-secondary: 0 0 30px rgba(0, 212, 255, 0.3);
    --neon-pink: 0 0 10px #ff3366, 0 0 20px #ff3366, 0 0 40px #ff3366;
    --neon-blue: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff;
    --radius: 20px;
    --radius-sm: 10px;
    --radius-lg: 30px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: all 0.2s ease;
    --player-height: 100px;
    --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }

body {
    font-family: var(--font-body, 'Montserrat'), sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: var(--player-height);
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(255, 208, 0, 0.03) 0%, transparent 50%);
}

a { color: var(--secondary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary); text-shadow: var(--glow-primary); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-title); }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(10, 10, 16, 0.98) 0%, rgba(5, 5, 8, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: gradient-flow 8s linear infinite;
}

@keyframes gradient-flow { 0% { background-position: 0% 0%; } 100% { background-position: 300% 0%; } }

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; position: relative; flex-shrink: 0; }
.logo img { height: 55px; width: auto; min-width: 55px; border-radius: var(--radius-sm); box-shadow: var(--glow-primary); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.radio-name { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 2rem; letter-spacing: 3px; color: var(--text); text-transform: uppercase; line-height: 1; }
.radio-slogan { font-size: 0.7rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* Navigation */
.nav { display: flex; align-items: center; }
.nav-list { display: flex; list-style: none; gap: 0.25rem; }
.nav-list a { display: block; padding: 0.6rem 1.2rem; color: var(--text-secondary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius-sm); transition: var(--transition); position: relative; }
.nav-list a::before { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary); transform: translateX(-50%); transition: var(--transition); }
.nav-list a:hover, .nav-list a.active { color: var(--text); background: rgba(255, 51, 102, 0.1); }
.nav-list a:hover::before, .nav-list a.active::before { width: 80%; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--primary); border-radius: 3px; }

/* Header Live */
.header-player { display: flex; align-items: center; gap: 1.5rem; padding: 0.75rem 1.5rem; background: linear-gradient(135deg, rgba(255, 0, 64, 0.15), rgba(0, 212, 255, 0.1)); border: 1px solid rgba(255, 51, 102, 0.3); border-radius: var(--radius); position: relative; overflow: hidden; }
.header-player::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent); animation: shine 3s infinite; }
@keyframes shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.live-indicator { display: flex; align-items: center; gap: 0.75rem; color: var(--live); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.live-dot { width: 12px; height: 12px; background: var(--live); border-radius: 50%; animation: live-pulse 1s infinite; box-shadow: 0 0 10px var(--live-glow), 0 0 20px var(--live-glow); }
@keyframes live-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

.now-playing { color: var(--text); font-size: 0.9rem; font-weight: 500; max-width: 250px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Social Links */
.social-links { display: flex; align-items: center; gap: 0.75rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-secondary); transition: var(--transition); }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { transform: translateY(-3px); }
.social-facebook:hover { background: rgba(24, 119, 242, 0.2); border-color: #1877f2; color: #1877f2; }
.social-twitter:hover { background: rgba(0, 0, 0, 0.3); border-color: #fff; color: #fff; }
.social-instagram:hover { background: linear-gradient(45deg, rgba(253, 29, 29, 0.2), rgba(131, 58, 180, 0.2)); border-color: #e1306c; color: #e1306c; }
.social-youtube:hover { background: rgba(255, 0, 0, 0.2); border-color: #ff0000; color: #ff0000; }
.social-tiktok:hover { background: rgba(0, 0, 0, 0.3); border-color: #00f2ea; color: #00f2ea; }
.social-snapchat:hover { background: rgba(255, 252, 0, 0.2); border-color: #fffc00; color: #fffc00; }
.social-whatsapp:hover { background: rgba(37, 211, 102, 0.2); border-color: #25d366; color: #25d366; }

/* Main Content */
.main-content { margin-top: var(--header-height); min-height: calc(100vh - var(--header-height) - var(--player-height)); }
.loading-spinner { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; color: var(--text-dim); }
.spinner { width: 60px; height: 60px; border: 4px solid var(--bg-light); border-top-color: var(--primary); border-right-color: var(--secondary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* PLAYER BAR */
.player-bar { position: fixed; bottom: 0; left: 0; right: 0; height: var(--player-height); background: linear-gradient(180deg, rgba(15, 15, 25, 0.98) 0%, rgba(5, 5, 10, 1) 100%); backdrop-filter: blur(30px); z-index: 1001; }
.player-bar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent)); }
.player-container { max-width: 1500px; margin: 0 auto; padding: 0 2rem; height: 100%; display: flex; align-items: center; gap: 2.5rem; }
.player-info { display: flex; align-items: center; gap: 1.25rem; flex: 1; min-width: 0; }
.player-cover-wrapper { position: relative; width: 70px; height: 70px; flex-shrink: 0; }
.player-cover { width: 100%; height: 100%; border-radius: var(--radius-sm); object-fit: cover; box-shadow: var(--shadow); transition: var(--transition); }
.player-bar.playing .player-cover-wrapper::before { content: ''; position: absolute; inset: -4px; border-radius: calc(var(--radius-sm) + 4px); background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary)); background-size: 200% 200%; animation: cover-glow 2s ease infinite; z-index: -1; }
.player-bar.playing .player-cover { box-shadow: 0 0 20px rgba(255, 51, 102, 0.4); }
@keyframes cover-glow { 0%, 100% { background-position: 0% 50%; opacity: 0.7; } 50% { background-position: 100% 50%; opacity: 1; }

/* === ANIMATIONS CHANGEMENT DE TITRE === */
/* Cover swipe animation (droite vers gauche) */
.player-cover-wrapper.updating .player-cover {
    animation: cover-swipe 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}
@keyframes cover-swipe {
    0% { transform: translateX(120%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Glow pulse on cover update */
.player-cover-wrapper.updating::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-sm) + 8px);
    background: linear-gradient(45deg, var(--primary), var(--secondary), #fff, var(--secondary), var(--primary));
    background-size: 400% 400%;
    animation: glow-sweep 0.8s ease-out;
    z-index: -1;
    opacity: 0;
}
@keyframes glow-sweep {
    0% { opacity: 0.8; background-position: 0% 50%; }
    50% { opacity: 1; background-position: 100% 50%; }
    100% { opacity: 0; background-position: 200% 50%; }
}

/* Title animation */
.player-track-title.updating {
    animation: title-slide-in 0.6s ease-out;
}
@keyframes title-slide-in {
    0% { opacity: 0; transform: translateY(-20px) scale(0.9); filter: blur(5px); }
    60% { opacity: 1; transform: translateY(3px) scale(1.02); filter: blur(0); }
    100% { transform: translateY(0) scale(1); }
}

/* Artist animation - slight delay */
.player-track-artist.updating {
    animation: artist-slide-in 0.6s ease-out 0.1s both;
}
@keyframes artist-slide-in {
    0% { opacity: 0; transform: translateX(-30px); }
    60% { opacity: 1; transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* Particle burst effect container */
.player-cover-wrapper .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}
.player-cover-wrapper .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0;
}
.player-cover-wrapper.updating .particle {
    animation: particle-burst 0.8s ease-out forwards;
}
.player-cover-wrapper.updating .particle:nth-child(1) { top: 50%; left: 50%; --tx: -40px; --ty: -40px; animation-delay: 0s; background: var(--primary); }
.player-cover-wrapper.updating .particle:nth-child(2) { top: 50%; left: 50%; --tx: 40px; --ty: -40px; animation-delay: 0.05s; background: var(--secondary); }
.player-cover-wrapper.updating .particle:nth-child(3) { top: 50%; left: 50%; --tx: -40px; --ty: 40px; animation-delay: 0.1s; background: #fff; }
.player-cover-wrapper.updating .particle:nth-child(4) { top: 50%; left: 50%; --tx: 40px; --ty: 40px; animation-delay: 0.15s; background: var(--primary); }
.player-cover-wrapper.updating .particle:nth-child(5) { top: 50%; left: 50%; --tx: 0; --ty: -50px; animation-delay: 0.08s; background: var(--secondary); }
.player-cover-wrapper.updating .particle:nth-child(6) { top: 50%; left: 50%; --tx: 0; --ty: 50px; animation-delay: 0.12s; background: #fff; }

@keyframes particle-burst {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* Flash effect on player bar */
.player-bar.song-change::before {
    animation: song-change-flash 0.6s ease-out !important;
}
@keyframes song-change-flash {
    0% { opacity: 0.3; background: linear-gradient(90deg, transparent, var(--secondary), transparent); background-size: 200% 100%; background-position: -100% 0; }
    50% { opacity: 0.8; background-position: 100% 0; }
    100% { opacity: 0; }
}
 }

.player-visualizer { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; gap: 3px; height: 25px; opacity: 0; transition: var(--transition-fast); }
.player-bar.playing .player-visualizer { opacity: 1; }
.player-visualizer span { width: 4px; background: linear-gradient(to top, var(--primary), var(--secondary)); border-radius: 2px; animation: visualizer 0.4s ease infinite alternate; }
.player-visualizer span:nth-child(1) { height: 35%; animation-delay: 0s; }
.player-visualizer span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.player-visualizer span:nth-child(3) { height: 45%; animation-delay: 0.15s; }
.player-visualizer span:nth-child(4) { height: 85%; animation-delay: 0.2s; }
.player-visualizer span:nth-child(5) { height: 55%; animation-delay: 0.25s; }
@keyframes visualizer { 0% { transform: scaleY(0.4); } 100% { transform: scaleY(1); } }

.player-track { flex: 1; min-width: 0; overflow: hidden; position: relative; }
.player-track.has-history { cursor: pointer; }
.player-track-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 0.95rem; letter-spacing: 0.3px; color: var(--text); white-space: nowrap; overflow: hidden; display: block; position: relative; }
.player-track-artist { font-size: 0.85rem; color: var(--secondary); font-weight: 500; white-space: nowrap; overflow: hidden; display: block; position: relative; }
.player-track-title.scrolling, .player-track-artist.scrolling { overflow: hidden; display: flex; }
.player-track-title.scrolling .scroll-text, .player-track-artist.scrolling .scroll-text { display: inline-block; white-space: nowrap; animation: text-scroll 12s linear infinite; }
.player-track-title.scrolling .scroll-spacer, .player-track-artist.scrolling .scroll-spacer { display: inline-block; }
@keyframes text-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

.player-controls { display: flex; align-items: center; gap: 1.25rem; }
.btn-control { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); border-radius: 50%; transition: var(--transition); background: rgba(255, 255, 255, 0.05); }
.btn-control:hover { color: var(--text); background: rgba(255, 51, 102, 0.2); transform: scale(1.1); }
.btn-control svg { width: 22px; height: 22px; }

.btn-play-main { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition); box-shadow: var(--glow-primary), inset 0 2px 10px rgba(255,255,255,0.2); position: relative; }
.btn-play-main::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); z-index: -1; opacity: 0.5; animation: rotate 3s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.btn-play-main:hover { transform: scale(1.1); box-shadow: var(--neon-pink); }
.btn-play-main svg { width: 30px; height: 30px; }
.btn-play-main .icon-pause { display: none; }
.player-bar.playing .btn-play-main .icon-play { display: none; }
.player-bar.playing .btn-play-main .icon-pause { display: block; }

.player-progress { flex: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; column-gap: 1rem; }
.time-current, .time-total { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1rem; letter-spacing: 1px; color: var(--secondary); min-width: 50px; }
.progress-bar { flex: 1; height: 6px; background: var(--bg-light); border-radius: 3px; position: relative; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); width: 0; border-radius: 3px; }
.progress-pulse { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent); animation: progress-pulse 2s infinite; }
@keyframes progress-pulse { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.player-volume { display: flex; align-items: center; gap: 0.75rem; }
.btn-volume { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); border-radius: 50%; transition: var(--transition-fast); }
.btn-volume:hover { color: var(--secondary); }
.btn-volume svg { width: 22px; height: 22px; }
.btn-volume .icon-volume-mute { display: none; }
.player-bar.muted .btn-volume .icon-volume-high { display: none; }
.player-bar.muted .btn-volume .icon-volume-mute { display: block; }
.volume-slider { width: 120px; height: 6px; -webkit-appearance: none; background: linear-gradient(90deg, var(--bg-light), var(--bg-hover)); border-radius: 3px; cursor: pointer; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--secondary); border-radius: 50%; cursor: pointer; box-shadow: var(--glow-secondary); }

/* HISTORY PANEL */
.player-info { position: relative; }
.history-panel { display: none; position: absolute; bottom: calc(100% + 12px); left: 0; width: 320px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 1000; overflow: hidden; animation: historySlideUp 0.25s ease; }
.history-panel.visible { display: block; }
@keyframes historySlideUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.history-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-color); }
.history-panel-header span { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.5px; }
.history-panel-close { background: transparent; border: none; color: var(--text-secondary); font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 0 0.25rem; transition: color 0.2s; }
.history-panel-close:hover { color: var(--secondary); }
.history-panel-list { max-height: 400px; overflow-y: auto; }
.history-panel-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.history-panel-item:last-child { border-bottom: none; }
.history-panel-item:hover { background: rgba(255,255,255,0.03); }
.history-panel-cover { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--bg-hover); }
.history-panel-cover-placeholder { width: 40px; height: 40px; border-radius: 6px; background: var(--bg-hover); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.history-panel-cover-placeholder svg { opacity: 0.3; }
.history-panel-meta { flex: 1; min-width: 0; }
.history-panel-title { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.history-panel-artist { font-size: 0.72rem; color: var(--text-secondary); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.history-panel-time { font-size: 0.68rem; color: var(--text-muted, #666); flex-shrink: 0; }
.history-panel-more { display: block; text-align: center; padding: 0.6rem 1rem; font-size: 0.75rem; color: var(--secondary); text-decoration: none; border-top: 1px solid var(--border-color); transition: background 0.2s; font-weight: 600; letter-spacing: 0.3px; }
.history-panel-more:hover { background: rgba(255,255,255,0.03); }
.history-panel-empty { padding: 2rem 1rem; text-align: center; color: var(--text-secondary); font-size: 0.82rem; }

/* History panel responsive */
@media (max-width: 768px) {
    .history-panel { position: fixed; left: 1rem; right: 1rem; bottom: calc(var(--player-height) + 10px); width: auto; }
}
@media (max-width: 480px) {
    .history-panel { left: 0.5rem; right: 0.5rem; bottom: calc(var(--player-height) + 8px); }
}

/* PODCAST MODE */
.btn-ctrl { display: none; background: transparent; border: none; color: var(--text-secondary); width: 40px; height: 40px; cursor: pointer; transition: var(--transition); position: relative; }
.btn-ctrl:hover { color: var(--secondary); }
.btn-skip { display: none; flex-direction: column; align-items: center; font-size: 0.65rem; gap: 2px; }
.btn-skip svg { width: 20px; height: 20px; }
.btn-back-radio { display: none; align-items: center; justify-content: center; background: linear-gradient(135deg, #e74c3c, #c0392b); color: white; border: none; padding: 0.5rem 1rem; border-radius: var(--radius-full); cursor: pointer; font-size: 0.75rem; font-weight: 700; gap: 0.4rem; animation: pulse-live 2s infinite; width: auto; height: auto; }
.btn-back-radio svg { width: 18px; height: 18px; }
.btn-back-radio:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(231, 76, 60, 0.5); }
@keyframes pulse-live { 0%, 100% { box-shadow: 0 0 5px rgba(231, 76, 60, 0.5); } 50% { box-shadow: 0 0 20px rgba(231, 76, 60, 0.8); } }

.player-bar.podcast-mode .btn-ctrl { display: flex; align-items: center; justify-content: center; }
.player-bar.podcast-mode .btn-skip { display: flex; }
.player-bar.podcast-mode .btn-back-radio { display: flex; }
.player-bar.podcast-mode .progress-bar { cursor: pointer; }
.player-bar.podcast-mode .progress-pulse { display: none; }

/* Transitions mode Radio <-> Podcast */
.player-bar { transition: background 0.5s ease, box-shadow 0.5s ease; }
.player-bar.podcast-mode { background: linear-gradient(180deg, rgba(25, 15, 35, 0.98) 0%, rgba(15, 5, 20, 1) 100%); box-shadow: 0 -5px 30px rgba(138, 43, 226, 0.2); }
.player-bar.podcast-mode::before { background: linear-gradient(90deg, #8b5cf6, #a855f7, #8b5cf6); }

.player-cover { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.player-bar.mode-switching .player-cover { transform: scale(0.8) rotateY(180deg); opacity: 0.5; }
.player-bar.mode-switch-complete .player-cover { animation: cover-flip-in 0.4s ease forwards; }
@keyframes cover-flip-in { 0% { transform: scale(0.8) rotateY(-180deg); opacity: 0.5; } 100% { transform: scale(1) rotateY(0); opacity: 1; } }

.player-details h4, .player-details span { transition: opacity 0.3s ease, transform 0.3s ease; }
.player-bar.mode-switching .player-details h4,
.player-bar.mode-switching .player-details span { opacity: 0; transform: translateY(-10px); }

.player-bar.podcast-mode .player-cover-wrapper::before { background: linear-gradient(45deg, #8b5cf6, #a855f7, #8b5cf6) !important; }
.player-bar.podcast-mode.playing .player-cover { box-shadow: 0 0 25px rgba(138, 43, 226, 0.5); }

/* Flash effect on mode switch */
.player-bar::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.player-bar.mode-flash::after { animation: mode-flash 0.5s ease; }
@keyframes mode-flash { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }

.btn-podcast { display: flex; align-items: center; gap: 0; column-gap: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border: none; padding: 0.6rem 1rem; border-radius: var(--radius-full); cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: var(--transition); margin-left: 1rem; }
.btn-podcast svg { width: 18px; height: 18px; }
.btn-podcast:hover { transform: scale(1.05); box-shadow: var(--glow-primary); }

/* Utility classes */
.hidden { display: none !important; }

/* Vote Track Button (player - overlay on cover) */
.btn-vote-track { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.15); color: white; border: none; padding: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 5; box-shadow: 0 0 15px rgba(255, 51, 102, 0.3); animation: heart-entrance 0.5s ease-out; }
.btn-vote-track::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 50%; border: 3px solid transparent; border-top-color: var(--primary); border-right-color: var(--secondary); animation: border-spin 1.5s linear infinite; }
.btn-vote-track::after { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 50%; border: 3px solid transparent; border-bottom-color: var(--primary); border-left-color: var(--secondary); animation: border-spin 1.5s linear infinite reverse; opacity: 0.5; }
.btn-vote-track svg { width: 26px; height: 26px; transition: all 0.3s ease; fill: var(--primary); filter: drop-shadow(0 0 8px var(--primary)); animation: heart-beat-reverse 0.8s ease-in-out infinite; z-index: 1; }
.btn-vote-track:hover { transform: translate(-50%, -50%) scale(1.15); background: rgba(255, 51, 102, 0.2); box-shadow: 0 0 25px rgba(255, 51, 102, 0.5); }
.btn-vote-track:hover::before, .btn-vote-track:hover::after { animation-duration: 0.8s; }
.btn-vote-track:hover svg { transform: scale(1.1); filter: drop-shadow(0 0 12px var(--primary)); }
.btn-vote-track.voted { background: linear-gradient(135deg, #ff4d6d, #ff1744); box-shadow: 0 0 25px rgba(255,77,109,0.5), inset 0 0 15px rgba(255,255,255,0.2); animation: voted-glow 2s ease-in-out infinite; }
.btn-vote-track.voted::before, .btn-vote-track.voted::after { display: none; }
.btn-vote-track.voted svg { fill: white; animation: heart-beat 1.2s ease-in-out infinite; }
.btn-vote-track.voting { pointer-events: none; }
.btn-vote-track.voting svg { animation: voting-pulse 0.5s ease infinite; }
@keyframes border-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes heart-entrance { 0% { transform: translate(-50%, -50%) scale(0); opacity: 0; } 50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
.btn-vote-track.appearing { animation: heart-entrance 0.5s ease-out, heart-glow 1.5s ease-in-out 0.5s infinite; }

/* Visualizer fade out */
.player-visualizer.fading-out { animation: visualizer-fade-out 0.4s ease-out forwards; }
@keyframes visualizer-fade-out { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0.5); } }
@keyframes heart-beat-reverse { 0%, 100% { transform: scale(1); } 15% { transform: scale(0.75); } 30% { transform: scale(1.15); } 45% { transform: scale(0.85); } 60% { transform: scale(1.05); } 75% { transform: scale(0.95); } }
@keyframes voting-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }
@keyframes voted-glow { 0%, 100% { box-shadow: 0 0 25px rgba(255,77,109,0.5), inset 0 0 15px rgba(255,255,255,0.2); } 50% { box-shadow: 0 0 35px rgba(255,77,109,0.7), inset 0 0 20px rgba(255,255,255,0.3); } }
@keyframes heart-beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.25); } 30% { transform: scale(1); } 45% { transform: scale(1.15); } 60% { transform: scale(1); } }

/* Vote Explosion Effect */
.btn-vote-track.exploding { animation: heart-explode 0.6s ease-out forwards; pointer-events: none; }
.btn-vote-track.exploding svg { animation: heart-pop 0.3s ease-out forwards; }
@keyframes heart-explode { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; } }
@keyframes heart-pop { 0% { transform: scale(1); fill: #ff4d6d; } 50% { transform: scale(1.8); fill: #ff1744; } 100% { transform: scale(0); fill: #ff1744; } }

/* Explosion Particles Container */
.vote-particles { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; pointer-events: none; z-index: 99999; }
.vote-particle { position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; border-radius: 50%; animation: particle-fly 1.2s ease-out forwards; box-shadow: 0 0 20px currentColor, 0 0 40px currentColor; }
.vote-particle:nth-child(1) { background: #ff4d6d; animation-delay: 0s; }
.vote-particle:nth-child(2) { background: #ff1744; animation-delay: 0.02s; }
.vote-particle:nth-child(3) { background: #ff6b8a; animation-delay: 0.04s; }
.vote-particle:nth-child(4) { background: #ff4d6d; animation-delay: 0.02s; }
.vote-particle:nth-child(5) { background: #ff1744; animation-delay: 0s; }
.vote-particle:nth-child(6) { background: #ff6b8a; animation-delay: 0.04s; }
.vote-particle:nth-child(7) { background: #ff4d6d; animation-delay: 0.02s; }
.vote-particle:nth-child(8) { background: #ff1744; animation-delay: 0s; }
.vote-particle:nth-child(9) { background: #ffd700; animation-delay: 0.04s; }
.vote-particle:nth-child(10) { background: #ffd700; animation-delay: 0.02s; }
.vote-particle:nth-child(11) { background: #ff6b8a; animation-delay: 0s; }
.vote-particle:nth-child(12) { background: #ff4d6d; animation-delay: 0.04s; }
.vote-particle:nth-child(1) { animation-name: particle-fly-1; }
.vote-particle:nth-child(2) { animation-name: particle-fly-2; }
.vote-particle:nth-child(3) { animation-name: particle-fly-3; }
.vote-particle:nth-child(4) { animation-name: particle-fly-4; }
.vote-particle:nth-child(5) { animation-name: particle-fly-5; }
.vote-particle:nth-child(6) { animation-name: particle-fly-6; }
.vote-particle:nth-child(7) { animation-name: particle-fly-7; }
.vote-particle:nth-child(8) { animation-name: particle-fly-8; }
.vote-particle:nth-child(9) { animation-name: particle-fly-9; }
.vote-particle:nth-child(10) { animation-name: particle-fly-10; }
.vote-particle:nth-child(11) { animation-name: particle-fly-11; }
.vote-particle:nth-child(12) { animation-name: particle-fly-12; }
@keyframes particle-fly-1 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% + 350px), -50%) scale(0); opacity: 0; } }
@keyframes particle-fly-2 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% + 303px), calc(-50% - 175px)) scale(0); opacity: 0; } }
@keyframes particle-fly-3 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% + 175px), calc(-50% - 303px)) scale(0); opacity: 0; } }
@keyframes particle-fly-4 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-50%, calc(-50% - 350px)) scale(0); opacity: 0; } }
@keyframes particle-fly-5 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% - 175px), calc(-50% - 303px)) scale(0); opacity: 0; } }
@keyframes particle-fly-6 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% - 303px), calc(-50% - 175px)) scale(0); opacity: 0; } }
@keyframes particle-fly-7 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% - 350px), -50%) scale(0); opacity: 0; } }
@keyframes particle-fly-8 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% - 303px), calc(-50% + 175px)) scale(0); opacity: 0; } }
@keyframes particle-fly-9 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% - 175px), calc(-50% + 303px)) scale(0); opacity: 0; } }
@keyframes particle-fly-10 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-50%, calc(-50% + 350px)) scale(0); opacity: 0; } }
@keyframes particle-fly-11 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% + 175px), calc(-50% + 303px)) scale(0); opacity: 0; } }
@keyframes particle-fly-12 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(calc(-50% + 303px), calc(-50% + 175px)) scale(0); opacity: 0; } }

@media (max-width: 480px) { .btn-vote-track { width: 38px; height: 38px; } .btn-vote-track svg { width: 20px; height: 20px; } .vote-particle { width: 10px; height: 10px; } }

/* Podcast Panel */
.podcast-panel { position: fixed; right: -350px; top: 0; width: 350px; height: 100vh; background: var(--bg-card); border-left: 1px solid var(--border); z-index: 10001; transition: right 0.3s ease; display: flex; flex-direction: column; }
.podcast-panel.open { right: 0; }
.podcast-panel-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.podcast-panel-header h3 { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1.5rem; color: var(--primary); margin: 0; }
.podcast-panel-close { background: transparent; border: none; color: var(--text-secondary); cursor: pointer; padding: 0.5rem; transition: var(--transition); }
.podcast-panel-close:hover { color: var(--primary); }
.podcast-panel-close svg { width: 24px; height: 24px; }
.podcast-panel-list { flex: 1; overflow-y: auto; padding: 1rem; }
.podcast-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); margin-bottom: 0.5rem; }
.podcast-item:hover { background: var(--bg-light); }
.podcast-item img { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.podcast-item-info { flex: 1; min-width: 0; }
.podcast-item-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-weight: 600; font-size: 1.1rem; line-height: 1.3; color: var(--text); overflow: hidden; }
.podcast-empty { text-align: center; color: var(--text-muted); padding: 2rem; }

@media (max-width: 768px) {
    .btn-podcast span { display: none; }
    .btn-podcast { padding: 0.6rem; }
    .podcast-panel { width: 100%; right: -100%; }
    
    /* Player bar responsive */
    .player-bar .player-container { padding: 0 0.75rem; gap: 0.75rem; }
    .player-info { gap: 0.75rem; }
    .player-cover-wrapper { width: 50px; height: 50px; }
    .player-details { max-width: 120px; }
    .player-details h4 { font-size: 0.8rem; }
    .player-details span { font-size: 0.7rem; }
    .player-controls { gap: 0; column-gap: 1rem; }
    .btn-play-main { width: 45px; height: 45px; }
    .player-volume { display: none; }
    .player-progress { display: none; }
    
    /* Podcast mode responsive */
    .btn-skip { padding: 0.25rem; }
    .btn-skip span { font-size: 0.55rem; }
    .btn-skip svg { width: 16px; height: 16px; }
    .btn-back-radio { padding: 0.4rem 0.6rem; font-size: 0.65rem; }
    .btn-back-radio svg { width: 14px; height: 14px; }
    .btn-back-radio span { display: none; }
}

@media (max-width: 480px) {
    .player-cover-wrapper { width: 40px; height: 40px; }
    .player-details { max-width: 90px; }
    .btn-play-main { width: 40px; height: 40px; }
    .btn-skip { display: none !important; }
    .btn-back-radio { padding: 0.35rem 0.5rem; }
}



/* HERO */
.hero { position: relative; min-height: 550px; display: flex; align-items: center; padding: 5rem 0; overflow: hidden; background: linear-gradient(135deg, rgba(10, 10, 16, 0.95) 0%, rgba(5, 5, 8, 0.98) 100%), radial-gradient(ellipse at 20% 50%, rgba(255, 51, 102, 0.25) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 40%); }
.hero::before { content: ''; position: absolute; top: 0; left: -50%; width: 200%; height: 100%; background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 51, 102, 0.03) 50px, rgba(255, 51, 102, 0.03) 100px); animation: scan 20s linear infinite; }
@keyframes scan { 0% { transform: translateX(0); } 100% { transform: translateX(100px); } }

.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: linear-gradient(135deg, rgba(255, 0, 64, 0.3), rgba(255, 0, 64, 0.1)); color: var(--live); padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 2rem; border: 1px solid rgba(255, 0, 64, 0.5); box-shadow: var(--glow-primary); animation: badge-glow 2s ease infinite alternate; }
@keyframes badge-glow { from { box-shadow: 0 0 10px rgba(255, 0, 64, 0.3); } to { box-shadow: 0 0 25px rgba(255, 0, 64, 0.6); } }

.hero-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 5rem; letter-spacing: 4px; line-height: 1; margin-bottom: 1.5rem; text-transform: uppercase; background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 50%, var(--secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: nowrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem 2rem; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer; border: none; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: 0.5s; }
.btn:hover::before { left: 100%; }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: var(--glow-primary); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--neon-pink); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--secondary); }
.btn-outline:hover { background: rgba(0, 212, 255, 0.1); box-shadow: var(--glow-secondary); }

/* SECTIONS */
.section { padding: 5rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-medium) 0%, var(--bg-dark) 100%); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; flex-wrap: nowrap; gap: 1.5rem; }
.section-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 2.5rem; letter-spacing: 3px; display: flex; align-items: center; gap: 1rem; text-transform: uppercase; position: relative; }
.section-title::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--primary), transparent); margin-left: 2rem; min-width: 100px; }
.title-icon { font-size: 1.5rem; }

/* GRID */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .grid-5 { grid-template-columns: repeat(4, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .grid-5, .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* CARDS */
.card { background: linear-gradient(145deg, var(--bg-card) 0%, rgba(15, 15, 25, 0.8) 100%); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); cursor: pointer; position: relative; }
.card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; background: linear-gradient(135deg, transparent, transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: var(--transition); }
.card:hover::before { background: linear-gradient(135deg, var(--primary), var(--secondary)); opacity: 1; }
.card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg), var(--glow-primary); }

.card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card-image img { transform: scale(1.1); filter: brightness(1.1); }

.card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 5, 8, 0.9) 0%, transparent 60%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.card:hover .card-overlay { opacity: 1; }

.btn-card-play { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transform: scale(0.7); transition: var(--transition); box-shadow: var(--neon-pink); }
.card:hover .btn-card-play { transform: scale(1); }
.btn-card-play svg { width: 32px; height: 32px; margin-left: 4px; }

.card-badge { position: absolute; top: 1rem; left: 1rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--glow-primary); }

.card-body { padding: 1.5rem; }
.card-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 0.95rem; letter-spacing: 0.3px; margin-bottom: 0.5rem; color: var(--text); line-height: 1.2; }
.card-text { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
.card-meta { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--secondary); font-weight: 500; }

/* Card Team */
.card-team, .card-team-full { text-align: center; padding: 2rem 1.5rem; }
.card-avatar, .card-avatar-large { width: 120px; height: 120px; margin: 0 auto 1.25rem; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary); box-shadow: var(--glow-primary); transition: var(--transition); }
.card-avatar-large { width: 150px; height: 150px; }
.card:hover .card-avatar, .card:hover .card-avatar-large { border-color: var(--secondary); box-shadow: var(--neon-blue); }
.card-avatar img, .card-avatar-large img { width: 100%; height: 100%; object-fit: cover; }
.card-name { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1.5rem; letter-spacing: 1px; color: var(--text); margin-bottom: 0.25rem; }
.card-role { font-size: 0.85rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.card-bio { margin-top: 1rem; font-size: 0.9rem; color: var(--text-dim); }

/* PAGE HEADER */
.page-header { padding: 5rem 0 3rem; background: linear-gradient(135deg, var(--bg-medium) 0%, var(--bg-dark) 100%); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%); }
.page-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 4rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-description {
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-subtitle { font-size: 1.1rem; color: var(--text-secondary); position: relative; z-index: 1; }

/* SCHEDULE */
.schedule-tabs { display: flex; gap: 0; column-gap: 1rem; margin-bottom: 2.5rem; overflow-x: auto; padding-bottom: 0.5rem; }
.schedule-tab { padding: 1rem 1.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; transition: var(--transition); position: relative; }
.schedule-tab:hover { border-color: var(--primary); color: var(--text); }
.schedule-tab.active { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-color: var(--primary); color: white; box-shadow: var(--glow-primary); }
.tab-short { display: none; }
@media (max-width: 640px) { .tab-full { display: none; } .tab-short { display: inline; } }

.schedule-timeline { display: flex; flex-direction: column; gap: 0.75rem; }
.schedule-item { display: flex; align-items: center; gap: 2rem; padding: 1.5rem 2rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.schedule-item:hover { border-color: var(--primary); transform: translateX(5px); }
.schedule-item.is-live { background: linear-gradient(90deg, rgba(255, 0, 64, 0.15), transparent); border-color: var(--live); box-shadow: inset 0 0 30px rgba(255, 0, 64, 0.1); }
.schedule-time { display: flex; flex-direction: column; align-items: center; min-width: 80px; }
.time-start { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1.5rem; letter-spacing: 1px; color: var(--secondary); }
.time-end { font-size: 0.8rem; color: var(--text-dim); }
.schedule-content { flex: 1; }
.schedule-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1.3rem; letter-spacing: 1px; color: var(--text); }
.live-badge { display: inline-flex; align-items: center; gap: 0; column-gap: 1rem; background: var(--live); color: white; padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 0.5rem; animation: badge-glow 1.5s ease infinite alternate; }

/* PODCAST */
.podcast-list { display: flex; flex-direction: column; gap: 1.25rem; }
.podcast-item { display: flex; align-items: center; gap: 2rem; padding: 2rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.podcast-item:hover { border-color: var(--secondary); box-shadow: var(--glow-secondary); }
.btn-podcast-play { width: 60px; height: 60px; background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; transition: var(--transition); box-shadow: var(--glow-secondary); }
.btn-podcast-play:hover { transform: scale(1.1); box-shadow: var(--neon-blue); }
.btn-podcast-play svg { width: 24px; height: 24px; margin-left: 3px; }
.podcast-info { flex: 1; min-width: 0; }
.podcast-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 0.95rem; letter-spacing: 0.3px; color: var(--text); margin-bottom: 0.25rem; }
.podcast-meta { display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--secondary); font-weight: 500; }
.podcast-desc { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-secondary); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group label { font-weight: 600; color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { padding: 1rem 1.25rem; background: var(--bg-light); border: 2px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.2); }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-card { background: var(--bg-card); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.info-card:hover { border-color: var(--secondary); }
.info-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.info-card h3 { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1.2rem; letter-spacing: 2px; color: var(--secondary); margin-bottom: 0.75rem; }
.info-card p { color: var(--text); }

/* DETAIL PAGES */
.detail-header { display: grid; grid-template-columns: 350px 1fr; gap: 3rem; padding: 3rem 0; }
@media (max-width: 900px) { .detail-header { grid-template-columns: 1fr; } }
.detail-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.detail-badge { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }
.detail-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 3.5rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
.detail-meta { display: flex; gap: 2rem; margin-bottom: 2rem; color: var(--secondary); font-weight: 500; }
.detail-description { color: var(--text-secondary); line-height: 1.9; font-size: 1.1rem; margin-bottom: 2rem; text-align: left; }

/* ANIMATIONS & UTILS */
.fade-in { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--text-dim); }
.empty-icon { font-size: 5rem; margin-bottom: 1.5rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
    :root { --player-height: 90px; --header-height: 70px; }
    .header-player { display: none; }
    .nav-toggle { display: flex; }
    .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-medium); flex-direction: column; padding: 1.5rem; border-bottom: 2px solid var(--primary); }
    .nav-list.open { display: flex; }
    .hero-title { font-size: 3rem; }
    .page-title { font-size: 2.5rem; }
    .player-progress { display: none; }
    .player-volume { display: none; }
    .btn-control { display: none; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .hero-text { font-size: 1.1rem; }
    .btn-play-main { width: 60px; height: 60px; }
    .player-track-title { font-size: 1.1rem; }
}

/* SOCIAL & PROFILES */
.social-links-large { display: flex; flex-wrap: nowrap; gap: 1rem; margin-top: 2rem; }
.social-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.5rem; background: var(--bg-light); border-radius: var(--radius-sm); color: var(--text); font-weight: 600; transition: var(--transition); border: 1px solid var(--border); }
.social-btn:hover { background: var(--primary); border-color: var(--primary); box-shadow: var(--glow-primary); }
.social-btn svg { width: 20px; height: 20px; }

.animateur-profile { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; padding: 3rem 0; }
@media (max-width: 900px) { .animateur-profile { grid-template-columns: 1fr; text-align: center; } }
.profile-avatar { width: 280px; height: 280px; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--primary); box-shadow: var(--neon-pink); margin: 0 auto; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 3.5rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.profile-role { color: var(--secondary); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 2rem; }
.profile-bio { color: var(--text-secondary); line-height: 1.9; font-size: 1.1rem; margin-bottom: 2rem; }
.profile-social { display: flex; gap: 1rem; }
.profile-social .social-btn { width: 50px; height: 50px; padding: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.article-detail { padding: 3rem 0 5rem; }
.article-header { text-align: center; margin-bottom: 3rem; }
.article-meta-top { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.article-category { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.article-date { color: var(--text-dim); }
.article-title { font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 3.5rem; letter-spacing: 2px; max-width: 900px; margin: 0 auto; }
.article-image { margin-bottom: 3rem; border-radius: var(--radius); overflow: hidden; }
.article-image img { width: 100%; max-height: 550px; object-fit: cover; }
.article-content { max-width: 850px; margin: 0 auto; font-size: 1.15rem; line-height: 1.9; color: var(--text-secondary); }
/* Article Detail Page */
.article-header-full { flex-direction: column; text-align: center; gap: 2rem; }
.article-image-large { width: 100%; max-width: 900px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; }
.article-image-large img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }
.article-meta-top { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: nowrap; margin-bottom: 1rem; }
.article-date { display: flex; align-items: center; gap: 0; column-gap: 1rem; color: var(--text-muted); font-size: 0.9rem; }
.article-date svg { fill: var(--text-muted); }
.article-author { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: var(--bg-light); border-radius: var(--radius-full); cursor: pointer; transition: var(--transition); margin-top: 1rem; }
.article-author:hover { background: var(--primary); color: white; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.article-content-wrapper { max-width: 850px; margin: 3rem auto; padding: 0 1rem; }
.article-content { font-size: 1.1rem; line-height: 1.9; color: var(--text-secondary); }
.article-content p { margin-bottom: 1.5rem; }
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 2rem 0; }
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content .ql-align-center { text-align: center; }
.article-content .ql-align-right { text-align: right; }
.article-content .ql-align-justify { text-align: justify; }
.article-content h2 { font-size: 1.5rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--text); }
.article-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1.25rem 0 0.5rem; color: var(--text); }
.article-content h4 { font-size: 1.1rem; font-weight: 600; margin: 1rem 0 0.5rem; color: var(--text); }
.article-content ul, .article-content ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.article-content li { margin-bottom: 0.4rem; }
.article-content strong { font-weight: 700; }
/* Animateur Detail */
.animateur-header { text-align: center; flex-direction: column; }
.animateur-avatar-large { width: 200px; height: 200px; margin: 0 auto 2rem; }
.animateur-avatar-large img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--primary); box-shadow: 0 0 30px rgba(99, 102, 241, 0.3); }
.animateur-bio { max-width: 700px; margin: 1.5rem auto; font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); }
.animateur-contact { margin-top: 1.5rem; }
.animateur-contact .btn { display: inline-flex; align-items: center; gap: 0; column-gap: 1rem; }

.article-content h2, .article-content h3 { color: var(--text); margin: 2rem 0 1rem; }

.article-share { display: flex; align-items: center; gap: 1.25rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }


/* FOOTER */
.footer {
    background: linear-gradient(180deg, var(--bg-medium) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 calc(var(--player-height) + 2rem);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand { }
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; border-radius: var(--radius-sm); }
.footer-description { color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; max-width: 400px; }

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }

.footer-contact p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-contact-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 3px 12px rgba(99, 102, 241, 0.3); }
.footer-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(99, 102, 241, 0.4); }

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }
.footer-credits { margin-top: 0.5rem; }
.footer-credits a { color: var(--secondary); }
.footer-credits a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-description { max-width: 100%; margin: 0 auto; }
    .footer-logo { margin: 0 auto 1rem; }
}


/* ================================================
   BARRE DE MESSAGES DEFILANTS
   ================================================ */

.messages-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    z-index: 999;
    overflow: hidden;
}

.messages-label {
    display: flex;
    align-items: center;
    gap: 0; column-gap: 1rem;
    padding: 0 1rem;
    background: rgba(0,0,0,0.3);
    height: 100%;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.messages-label svg {
    width: 18px;
    height: 18px;
}

.messages-scroll {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.messages-track {
    display: flex;
    gap: 3rem;
    animation: scroll-messages 120s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-messages {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.message-item {
    font-size: 0.9rem;
}

.message-item strong {
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-send-message {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-send-message:hover {
    background: rgba(0,0,0,0.5);
}

.btn-send-message svg {
    width: 20px;
    height: 20px;
}

/* Ajuster le main-content quand messages-bar est present */
body:has(.messages-bar) .main-content {
    padding-top: calc(var(--header-height) + 40px);
}

/* ================================================
   SECTION PARTENAIRES
   ================================================ */

.partenaires-section {
    background: var(--bg-medium);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partenaires-title {
    text-align: center;
    font-family: var(--font-title, "Bebas Neue"), sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.partenaires-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
}

.partenaire-item {
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}

.partenaire-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.partenaire-name {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.partenaire-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.partenaire-item:hover .partenaire-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ================================================
   MODAL
   ================================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-medium);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border: none;
    background: var(--bg-light);
    color: var(--text);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary);
}

.modal-content h2 {
    font-family: var(--font-title, "Bebas Neue"), sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.modal-content > p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-block {
    width: 100%;
}

/* ================================================
   PODCAST LIST STYLES
   ================================================ */

.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.podcast-item:hover {
    border-color: var(--primary);
}

.podcast-play {
    flex-shrink: 0;
}

.btn-podcast-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-podcast-play:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.btn-podcast-play svg {
    width: 24px;
    height: 24px;
}

.podcast-info {
    flex: 1;
    min-width: 0;
}

.podcast-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.podcast-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ================================================
   ALBUM GALLERY STYLES
   ================================================ */

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.album-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.album-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.album-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 100px;
    gap: 2px;
    overflow: hidden;
    background: #1a1a2e;
}

.album-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.album-info {
    padding: 1rem;
}

.album-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.album-count {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.album-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}


/* ================================================
   PAGE PODCASTS - PLAYER DEDIE + SIDEBAR
   ================================================ */

.podcasts-fullpage {
    display: flex;
    min-height: calc(100vh - var(--header-height) - var(--player-height));
    background: var(--bg-dark);
    position: relative;
}

/* Player principal */
.podcast-main-player {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.player-cover-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.player-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
}

.player-info {
    text-align: center;
    max-width: 100%;
}

.player-info h2 {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.player-info p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.5;
}

.player-progress {
    width: 100%;
    max-width: 400px;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.progress-bar-container {
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ctrl-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--bg-light);
    border: none;
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.ctrl-btn:hover {
    background: var(--primary);
}

.ctrl-btn svg {
    width: 24px;
    height: 24px;
}

.ctrl-btn span {
    font-size: 0.75rem;
    font-weight: 600;
}

.ctrl-play {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    justify-content: center;
    padding: 0;
}

.ctrl-play:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--glow-primary);
}

.ctrl-play svg {
    width: 32px;
    height: 32px;
}

.player-extras {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.speed-control, .volume-control {
    display: flex;
    align-items: center;
    gap: 0; column-gap: 1rem;
}

.speed-control label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.speed-control select {
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.volume-control svg {
    color: var(--text-dim);
}

.volume-control input[type="range"] {
    width: 80px;
    accent-color: var(--primary);
}

/* Sidebar */
.podcast-sidebar {
    width: 350px;
    background: var(--bg-medium);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--secondary);
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
}

.sidebar-close svg {
    width: 24px;
    height: 24px;
}

.sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.sidebar-item:hover {
    background: var(--bg-light);
}

.sidebar-item.active {
    background: var(--bg-light);
    border-color: var(--primary);
}

.sidebar-item.playing .wave-bars {
    display: flex;
}

.item-play-indicator {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-bars {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.wave-bars span {
    width: 3px;
    background: var(--primary);
    animation: wave 0.8s ease-in-out infinite;
}

.wave-bars span:nth-child(1) { animation-delay: 0s; height: 8px; }
.wave-bars span:nth-child(2) { animation-delay: 0.1s; height: 14px; }
.wave-bars span:nth-child(3) { animation-delay: 0.2s; height: 10px; }
.wave-bars span:nth-child(4) { animation-delay: 0.3s; height: 16px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-title {
    display: block;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-dim);
}

/* Bouton toggle sidebar */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: calc(var(--player-height) + 20px);
    right: 20px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    gap: 0; column-gap: 1rem;
    align-items: center;
}

.sidebar-toggle svg {
    width: 20px;
    height: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .podcasts-fullpage {
        flex-direction: column;
    }

    .podcast-main-player {
        padding: 2rem 1rem;
    }

    .player-cover-container {
        max-width: 280px;
    }

    .player-info h2 {
        font-size: 1.5rem;
    }

    .podcast-sidebar {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: var(--player-height);
        width: 85%;
        max-width: 350px;
        transform: translateX(100%);
        z-index: 1000;
        box-shadow: var(--shadow-lg);
    }

    .podcast-sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: block;
    }

    .sidebar-toggle {
        display: flex;
    }

    .player-extras {
        flex-direction: column;
        gap: 1rem;
    }
}


/* ================================================
   GRILLE DES PROGRAMMES
   ================================================ */

.grille-section {
    padding: 2rem 0;
}

.grille-tabs {
    display: flex;
    gap: 0; column-gap: 1rem;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-medium);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.grille-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.grille-tab:hover {
    background: var(--primary);
    color: white;
}

.grille-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.grille-day {
    display: none;
}

.grille-day.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.grille-day-title {
    font-family: var(--font-title, "Bebas Neue"), sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    letter-spacing: 2px;
}

.grille-programmes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.grille-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.grille-item:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.grille-time {
    display: flex;
    align-items: center;
    gap: 0; column-gap: 1rem;
    min-width: 130px;
    font-family: var(--font-title, "Bebas Neue"), sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    letter-spacing: 1px;
}

.grille-time .time-sep {
    color: var(--text-dim);
}

.grille-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.grille-emission-img {
    width: 90px;
    height: 55px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.grille-emission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grille-emission-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.grille-arrow {
    color: var(--text-dim);
    transition: var(--transition);
    flex-shrink: 0;
}

.grille-item:hover .grille-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

.grille-arrow svg {
    width: 28px;
    height: 28px;
}

.grille-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-dim);
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.grille-empty p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .grille-tabs {
        gap: 0.25rem;
        padding: 0.75rem;
    }
    
    .grille-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .grille-item {
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 1rem;
    }
    
    .grille-time {
        min-width: 100%;
        font-size: 1.1rem;
    }
    
    .grille-emission-img {
        width: 50px;
        height: 50px;
    }
    
    .grille-emission-name {
        font-size: 1rem;
    }
}

/* Particules de changement de chanson */
.song-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.song-particle:nth-child(1) { animation: part1 0.8s ease-out forwards; }
.song-particle:nth-child(2) { animation: part2 0.8s ease-out 0.05s forwards; }
.song-particle:nth-child(3) { animation: part3 0.8s ease-out 0.1s forwards; }
.song-particle:nth-child(4) { animation: part4 0.8s ease-out 0.15s forwards; }
.song-particle:nth-child(5) { animation: part5 0.8s ease-out 0.2s forwards; }
.song-particle:nth-child(6) { animation: part6 0.8s ease-out 0.25s forwards; }
.song-particle:nth-child(7) { animation: part7 0.8s ease-out 0.3s forwards; }
.song-particle:nth-child(8) { animation: part8 0.8s ease-out 0.35s forwards; }

@keyframes part1 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(40px, -50%) scale(0); opacity: 0; } }
@keyframes part2 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(25px, -35px) scale(0); opacity: 0; } }
@keyframes part3 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-50%, -45px) scale(0); opacity: 0; } }
@keyframes part4 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-40px, -30px) scale(0); opacity: 0; } }
@keyframes part5 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-45px, -50%) scale(0); opacity: 0; } }
@keyframes part6 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-35px, 25px) scale(0); opacity: 0; } }
@keyframes part7 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-50%, 35px) scale(0); opacity: 0; } }
@keyframes part8 { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(30px, 20px) scale(0); opacity: 0; } }
/* ================================================
   PAGE DETAIL (emission, animateur, article)
   ================================================ */
.page-detail {
    padding: 2rem 0;
}

.detail-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
}

.detail-title {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    margin: 0;
}

.detail-description {
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

.detail-description p {
    margin-bottom: 1rem;
}

/* Quill editor output classes */
.detail-description .ql-align-center { text-align: center; }
.detail-description .ql-align-right { text-align: right; }
.detail-description .ql-align-justify { text-align: justify; }
.detail-description h2 { font-size: 1.5rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--text); }
.detail-description h3 { font-size: 1.25rem; font-weight: 600; margin: 1.25rem 0 0.5rem; color: var(--text); }
.detail-description h4 { font-size: 1.1rem; font-weight: 600; margin: 1rem 0 0.5rem; color: var(--text); }
.detail-description ul, .detail-description ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.detail-description li { margin-bottom: 0.4rem; }
.detail-description a { color: var(--primary); text-decoration: underline; }
.detail-description strong { font-weight: 700; }
.detail-description em { font-style: italic; }
.detail-description u { text-decoration: underline; }
.detail-description s { text-decoration: line-through; }

.detail-actions {
    margin-top: 1rem;
}

.detail-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.detail-section .section-title {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Animateurs mini */
.animateurs-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.animateur-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.animateur-mini:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.animateur-mini img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.animateur-mini span {
    font-weight: 600;
    color: var(--text);
}

/* Podcasts mini */
.podcast-list-mini {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.podcast-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.podcast-mini:hover {
    background: var(--bg-card);
    transform: translateX(5px);
}

.podcast-mini-cover {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.podcast-mini-info {
    flex: 1;
    min-width: 0;
}

.podcast-mini-title {
    font-weight: 600;
    color: var(--text);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podcast-mini .btn-podcast-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.podcast-mini .btn-podcast-play:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.podcast-mini .btn-podcast-play svg {
    width: 18px;
    height: 18px;
}

/* Navigation precedent/suivant */
.detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.detail-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    max-width: 45%;
}

.detail-nav-link:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.detail-nav-link.next {
    margin-left: auto;
    text-align: right;
}

.nav-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-text {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .detail-header {
        grid-template-columns: 1fr;
    }
    
    .detail-image img {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .detail-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .detail-nav-link {
        max-width: 100%;
    }
    
    .detail-nav-link.next {
        margin-left: 0;
    }
}
/* Cartes Animateurs dans emission */
.animateurs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.animateur-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.animateur-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.animateur-card-image {
    flex-shrink: 0;
}

.animateur-card-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.animateur-card-info {
    display: flex;
    flex-direction: column;
    gap: 0; column-gap: 1rem;
}

.animateur-card-name {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    margin: 0;
}

.animateur-card-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.animateur-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
}

.animateur-card:hover .animateur-card-link {
    color: var(--secondary);
}

@media (max-width: 500px) {
    .animateur-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .animateur-card-link {
        margin-top: 0.5rem;
    }
}

/* Boutons de partage */
.emission-share{margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border)}
.emission-share h3{font-size:1rem;color:var(--text-secondary);margin-bottom:1rem}
.share-buttons{display:flex;flex-wrap:wrap;gap:0.75rem}
.emission-share{margin:2rem 0;padding:1.5rem;background:var(--bg-card);border-radius:var(--radius);border:1px solid var(--border)}
.emission-share h3{font-size:1rem;color:var(--text-secondary);margin-bottom:1rem;font-weight:600}
.share-buttons{display:flex;flex-wrap:wrap;gap:0.75rem}
.share-btn{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease;border:none;cursor:pointer;color:#fff!important}
.share-btn svg{width:22px;height:22px;fill:#fff!important}
.share-btn:hover{transform:translateY(-4px) scale(1.1);box-shadow:0 8px 20px rgba(0,0,0,0.3)}
.share-facebook{background:#1877f2}.share-facebook:hover{background:#0d65d9}
.share-twitter{background:#000}.share-twitter:hover{background:#333}
.share-whatsapp{background:#25d366}.share-whatsapp:hover{background:#1da851}
.share-linkedin{background:#0a66c2}.share-linkedin:hover{background:#084d93}
.share-telegram{background:#0088cc}.share-telegram:hover{background:#006699}
.share-pinterest{background:#e60023}.share-pinterest:hover{background:#ad001a}
.share-reddit{background:#ff4500}.share-reddit:hover{background:#cc3700}
.share-email{background:var(--primary)}.share-email:hover{background:var(--secondary)}
.share-copy{background:var(--bg-light);color:var(--text)}.share-copy:hover{background:var(--primary);color:white}

.btn-card-view{width:50px;height:50px;border-radius:50%;background:rgba(255,255,255,0.9);display:flex;align-items:center;justify-content:center;transition:all 0.3s ease}.btn-card-view svg{width:24px;height:24px;fill:var(--primary)}.card:hover .btn-card-view{transform:scale(1.1);background:#fff}

/* Emission Schedule */
.emission-schedule { margin-top: 1.5rem; padding: 1rem; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 168, 204, 0.05)); border-radius: var(--radius-sm); border: 1px solid rgba(0, 212, 255, 0.3); }
.emission-schedule h3 { font-size: 0.85rem; color: var(--secondary); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0; column-gap: 1rem; }
.emission-schedule h3::before { content: ''; width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; box-shadow: var(--glow-secondary); }
.emission-schedule .schedule-list { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.emission-schedule .schedule-item { display: inline-flex; align-items: center; gap: 0; column-gap: 1rem; padding: 0.5rem 1rem; background: rgba(0, 212, 255, 0.1); border-radius: var(--radius-full); border: 1px solid rgba(0, 212, 255, 0.2); font-size: 0.85rem; transition: var(--transition); }
.emission-schedule .schedule-item:hover { background: rgba(0, 212, 255, 0.2); border-color: var(--secondary); transform: translateY(-2px); }
.emission-schedule .schedule-day { font-weight: 700; color: var(--text); }
.emission-schedule .schedule-time { color: var(--secondary); font-weight: 600; }
/* Podcasts grid on emission page */
.emission-podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.podcast-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary);
}

.podcast-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.podcast-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.podcast-card:hover .podcast-card-image img {
    transform: scale(1.05);
}

.podcast-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.podcast-card:hover .podcast-card-play {
    opacity: 1;
}

.podcast-card-play svg {
    width: 50px;
    height: 50px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.podcast-card-info {
    padding: 0.75rem;
}

.podcast-card-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Podcast List (lignes) pour page emission */
.podcast-list-emission {
    display: flex;
    flex-direction: column;
    gap: 0; column-gap: 1rem;
}

.podcast-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.podcast-line:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateX(5px);
}

.podcast-line-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.podcast-line-info {
    flex: 1;
    min-width: 0;
}

.podcast-line-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podcast-line-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.podcast-line-play:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-primary);
}

.podcast-line-play svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .emission-podcasts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.animateur-card-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(var(--primary-rgb, 99, 102, 241), 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

/* ========================================
   ARTICLE DETAIL - ENHANCED STYLES
   ======================================== */

.article-detail .detail-header {
    position: relative;
    margin-bottom: -14px;
}

.article-detail .article-header-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
    padding: 2rem 0 3rem;
}

.article-detail .article-image-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.article-detail .article-image-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.article-detail .article-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-detail .article-image-large:hover img {
    transform: scale(1.03);
}

.article-detail .detail-info {
    padding: 1rem 0;
}

.article-detail .article-meta-top {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.article-detail .detail-badge {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.article-detail .article-date {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
}

.article-detail .detail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-detail .article-resume {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

.article-detail .article-resume strong em {
    font-weight: 500;
    font-style: italic;
}

.article-detail .article-author {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-detail .article-author:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
}

.article-detail .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

/* Article Content */
.article-detail .article-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, transparent 100%);
    border-radius: 30px 30px 0 0;
    margin-top: -2rem;
    position: relative;
}

.article-detail .article-content {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-secondary);
}

.article-detail .article-content p {
    margin-bottom: 1.75rem;
}

.article-detail .article-content h2 {
    font-size: 1.75rem;
    color: var(--text);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.article-detail .article-content h3 {
    font-size: 1.35rem;
    color: var(--text);
    margin: 2.5rem 0 1rem;
}

.article-detail .article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: var(--text);
}

.article-detail .article-content ul,
.article-detail .article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-detail .article-content li {
    margin-bottom: 0.75rem;
    position: relative;
}

.article-detail .article-content img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Related Articles */
.article-detail .detail-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.article-detail .detail-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Navigation */
.article-detail .detail-nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.article-detail .detail-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-detail .detail-nav-link:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-3px);
}

.article-detail .detail-nav-link.next {
    justify-content: flex-end;
    text-align: right;
}

.article-detail .nav-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

.article-detail .nav-text {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .article-detail .article-header-full {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-detail .article-meta-top {
        justify-content: center;
    }
    
    .article-detail .article-resume {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--primary);
        padding-top: 1.5rem;
    }
    
    .article-detail .article-image-large img {
        height: 300px;
    }
    
    .article-detail .detail-nav {
        flex-direction: column;
    }
    
    .article-detail .detail-nav-link.next {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .article-detail .detail-title {
        font-size: 1.75rem;
    }
    
    .article-detail .article-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .article-detail .article-image-large img {
        height: 220px;
    }
}

/* Fix article date icon visibility */
.article-detail .article-date {
    display: flex;
    align-items: center;
    gap: 0; column-gap: 1rem;
    color: var(--text);
}

.article-detail .article-date svg {
    fill: var(--primary);
    flex-shrink: 0;
}

/* Fix meta-date visibility on all pages */
.meta-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.meta-date svg {
    fill: var(--primary);
}

.card-meta .meta-date {
    color: var(--text-dim);
}


/* Footer Social Links */
.footer-social h4 {
    font-family: var(--font-title, "Bebas Neue"), sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
    }
    .footer-social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-social-links {
        justify-content: center;
    }
}

/* Fix footer overlap with player */
.footer {
    position: relative;
    z-index: 1;
    padding-bottom: calc(var(--player-height) + 3rem) !important;
    margin-bottom: -14px;
}

.footer-bottom {
    padding-bottom: 1rem;
}

/* Amélioration défilement messages continu */
.messages-bar {
    overflow: hidden;
}

.messages-scroll {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.messages-track {
    display: inline-flex;
    gap: 4rem;
    animation: scroll-messages 120s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}

.message-item {
    display: inline-block;
    padding: 0 1rem;
}

@keyframes scroll-messages {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: success-bounce 0.5s ease;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-modal h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.success-modal .success-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.success-modal .btn {
    min-width: 150px;
}

@keyframes success-bounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}


/* App store links */
.app-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    margin-right: 15px;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.15);
}

.app-link {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.app-link:nth-child(2) {
    animation-delay: 0.3s;
}

.app-link:hover {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border-color: var(--primary);
    transform: scale(1.1);
    animation: none;
}

.app-link svg {
    width: 18px;
    height: 18px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
        transform: scale(1.05);
    }
}

/* Logo light trail animation */
.logo-glow-wrapper {
    position: relative;
    display: inline-block;
}

.logo-glow-wrapper img {
    position: relative;
    z-index: 2;
    display: block;
}

.logo-light-orbit {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    z-index: 1;
    overflow: hidden;
}

.logo-light-orbit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        transparent 0deg,
        transparent 270deg,
        var(--primary) 300deg,
        white 330deg,
        var(--secondary) 360deg
    );
    animation: spin-trail 5s linear infinite;
    transform-origin: center;
}

.logo-light-orbit::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-dark, #0a0a12);
    border-radius: 10px;
}

@keyframes spin-trail {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Footer App Badges */
.footer-apps {
    min-width: 200px;
}

.footer-apps h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: #1a1a1a;
    border-color: white;
    transform: scale(1.02);
}

.app-badge svg {
    flex-shrink: 0;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-badge-small {
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-badge-big {
    font-size: 1.1rem;
    font-weight: 600;
}


/* Slogan Banner with oblique sides */
.slogan-banner {
    position: fixed;
    top: calc(var(--header-height) + 40px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    padding-left: 30%;
    background: var(--bg-dark, #050508);
    z-index: 998;
}

.slogan-banner-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.slogan-banner-inner::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-dark, #050508);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    z-index: 0;
}

.slogan-text {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 600px) {
    .slogan-banner-inner {
        padding: 8px 30px;
        font-size: 0.8rem;
    }
}


/* ===============================================
   SONDAGE CARD - Emission & Sondage Grid
   =============================================== */

.emission-sondage-section {
    padding: 2rem 0;
}

.emission-sondage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quand seulement le sondage (pas d'emission) */
.emission-sondage-grid:has(.sondage-card:only-child),
.emission-sondage-grid.sondage-only {
    grid-template-columns: 1fr;
    max-width: 100%;
}
.emission-sondage-grid.sondage-only .sondage-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 1rem 3rem;
    padding: 2.5rem;
    align-items: start;
}
.emission-sondage-grid.sondage-only .sondage-badge {
    grid-column: 1;
    grid-row: 1;
}
.emission-sondage-grid.sondage-only .sondage-question {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.5rem;
    margin: 0;
}
.emission-sondage-grid.sondage-only .sondage-form {
    grid-column: 2;
    grid-row: 1 / 3;
}
.emission-sondage-grid.sondage-only .sondage-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}
.emission-sondage-grid.sondage-only .btn-vote {
    margin-top: 1.5rem;
}
@media (max-width: 768px) {
    .emission-sondage-grid.sondage-only .sondage-card {
        grid-template-columns: 1fr;
    }
    .emission-sondage-grid.sondage-only .sondage-badge,
    .emission-sondage-grid.sondage-only .sondage-question,
    .emission-sondage-grid.sondage-only .sondage-form {
        grid-column: 1;
        grid-row: auto;
    }
    .emission-sondage-grid.sondage-only .sondage-options {
        grid-template-columns: 1fr;
    }
}

/* Emission en cours - Base styles */
.emission-en-cours-card {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.emission-en-cours-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.emission-en-cours-image {
    width: 150px;
    flex-shrink: 0;
}
.emission-en-cours-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.emission-en-cours-info {
    flex: 1;
    min-width: 0;
}
.emission-en-cours-title {
    font-family: var(--font-title, 'Bebas Neue'), sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--text);
}
.emission-en-cours-horaire {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.emission-en-cours-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.emission-en-cours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.emission-en-cours-badge .pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Quand seulement l'emission (pas de sondage) */
.emission-sondage-grid.emission-only {
    grid-template-columns: 1fr;
    max-width: 100%;
}
.emission-sondage-grid.emission-only .emission-en-cours-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.5rem;
}
.emission-sondage-grid.emission-only .emission-en-cours-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}
.emission-sondage-grid.emission-only .emission-en-cours-image {
    width: 350px;
    height: auto;
    flex-shrink: 0;
}
.emission-sondage-grid.emission-only .emission-en-cours-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.emission-sondage-grid.emission-only .emission-en-cours-info {
    flex: 1;
}
.emission-sondage-grid.emission-only .emission-en-cours-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
@media (max-width: 768px) {
    .emission-sondage-grid.emission-only .emission-en-cours-card {
        grid-template-columns: 1fr;
    }
    .emission-sondage-grid.emission-only .emission-en-cours-content {
        grid-template-columns: 1fr;
    }
    .emission-sondage-grid.emission-only .emission-en-cours-image {
        width: 250px;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .emission-sondage-grid {
        grid-template-columns: 1fr;
    }
    .emission-en-cours-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .emission-en-cours-image {
        width: 250px;
    }
    .emission-en-cours-horaire {
        justify-content: center;
    }
}

/* Sondage Card */
.sondage-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.sondage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
}

.sondage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0; column-gap: 1rem;
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.sondage-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.sondage-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sondage-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sondage-option:hover {
    border-color: var(--primary, #6366f1);
    background: rgba(99, 102, 241, 0.1);
}

.sondage-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sondage-option input[type="radio"]:checked + .option-content {
    font-weight: 600;
}

.sondage-option input[type="radio"]:checked ~ .option-bar {
    background: linear-gradient(90deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.option-text {
    color: var(--text-primary, #fff);
    font-size: 1.1rem;
}

.option-percent {
    color: var(--text-muted, #94a3b8);
    font-size: 0.85rem;
    font-weight: 500;
}

.option-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    transition: width 0.5s ease;
    z-index: 1;
}

.sondage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sondage-votes {
    color: var(--text-muted, #94a3b8);
    font-size: 0.85rem;
}

.sondage-card .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Animation pour le vote */
.sondage-option.voted {
    animation: voteAnimation 0.5s ease;
}

@keyframes voteAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Message de confirmation */
.sondage-success {
    text-align: center;
    padding: 2rem;
    color: var(--success, #22c55e);
}

.sondage-success svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.sondage-success p {
    font-size: 1rem;
    margin: 0;
}

/* No content card */
.no-content-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: var(--text-muted, #94a3b8);
}

.no-content-card svg {
    opacity: 0.3;
    margin-bottom: 1rem;
}


/* Sondage Options - Fixed */
.sondage-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sondage-option:hover {
    border-color: var(--primary, #6366f1);
    background: rgba(99, 102, 241, 0.1);
}

.sondage-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    z-index: 2;
    background: transparent;
}

.sondage-option input[type="radio"]:checked ~ .option-radio {
    border-color: var(--primary, #6366f1);
    background: var(--primary, #6366f1);
}

.sondage-option input[type="radio"]:checked ~ .option-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Checkbox style pour sondage multiple */
.option-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border, rgba(255,255,255,0.2));
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}

.sondage-option input[type="checkbox"]:checked ~ .option-checkbox {
    border-color: var(--primary, #6366f1);
    background: var(--primary, #6366f1);
}

.sondage-option input[type="checkbox"]:checked ~ .option-checkbox::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sondage-option:hover .option-checkbox {
    border-color: var(--primary, #6366f1);
}


.sondage-option input[type="radio"]:checked ~ .option-text {
    font-weight: 600;
}

.option-text {
    color: var(--text-primary, #fff);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.option-percent {
    color: var(--text-muted, #94a3b8);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    min-width: 40px;
    text-align: right;
}

.option-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    transition: width 0.5s ease;
    z-index: 1;
}

.sondage-option.voted .option-bar {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(245, 158, 11, 0.2));
}

.btn-vote {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0; column-gap: 1rem;
    font-weight: 600;
}

.btn-vote:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-vote.btn-success {
    background: var(--success, #22c55e);
}


/* Portail Info Styles */
.portail-info {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-dark, #0a0a12) 0%, rgba(99, 102, 241, 0.03) 100%);
}

.portail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portail-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.portail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.portail-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.portail-title h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.portail-subtitle {
    color: var(--text-muted, #94a3b8);
    font-size: 1rem;
    margin: 0;
}

.portail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.portail-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.portail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portail-card:hover::before {
    transform: scaleX(1);
}

.portail-card-large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
}

.portail-card-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 88, 12, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
}

.portail-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary, #6366f1), #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portail-card:hover .portail-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.portail-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.icon-insolite { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-artiste { background: linear-gradient(135deg, #ec4899, #be185d); }
.icon-web { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.icon-people { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-tv { background: linear-gradient(135deg, #10b981, #059669); }
.icon-musique { background: linear-gradient(135deg, #f59e0b, #ea580c); }

.portail-card-content {
    flex: 1;
}

.portail-card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary, #6366f1);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.portail-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin: 0 0 0.25rem 0;
}

.portail-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin: 0;
    line-height: 1.4;
}

.portail-card-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portail-card:hover .portail-card-arrow {
    background: var(--primary, #6366f1);
    transform: translateX(4px);
}

.portail-card-arrow svg {
    width: 18px;
    height: 18px;
    color: white;
}

.portail-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.portail-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portail-footer p {
    color: var(--text-muted, #64748b);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .portail-grid { grid-template-columns: repeat(2, 1fr); }
    .portail-card-large { grid-column: span 2; }
}

@media (max-width: 640px) {
    .portail-grid { grid-template-columns: 1fr; }
    .portail-card-large {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    .portail-card-large .portail-card-arrow { display: none; }
    .portail-title { flex-direction: column; gap: 0.75rem; }
    .portail-title h2 { font-size: 1.5rem; }
}


.portail-card-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #6366f1);
    transition: color 0.3s ease;
}

.portail-card:hover .portail-card-link {
    color: var(--secondary, #f59e0b);
}


/* ============================================
   PORTAIL INFO - Design Professionnel
   ============================================ */

.portail-info {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-dark, #0a0a12) 0%, rgba(99, 102, 241, 0.03) 100%);
}

.portail-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.portail-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.portail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portail-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.portail-title h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--secondary, #f59e0b));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.portail-subtitle {
    color: var(--text-muted, #94a3b8);
    font-size: 1rem;
    margin: 0;
}

/* Article Principal (Featured) */
.portail-featured {
    margin-bottom: 3rem;
}

.portail-featured-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.portail-featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.portail-featured-image {
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portail-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
}

.portail-featured-icon {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.portail-featured-icon svg {
    width: 48px;
    height: 48px;
    color: white;
    opacity: 0.9;
}

.portail-featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portail-featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.portail-category-tag {
    background: linear-gradient(135deg, var(--primary, #6366f1), #8b5cf6);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.portail-date {
    color: var(--text-muted, #94a3b8);
    font-size: 0.8rem;
}

.portail-featured-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.portail-featured-content p {
    font-size: 1.1rem;
    color: var(--text-muted, #94a3b8);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.portail-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0; column-gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary, #6366f1);
    transition: all 0.3s ease;
}

.portail-featured-card:hover .portail-read-more {
    color: var(--secondary, #f59e0b);
    gap: 0.75rem;
}

/* Section Title */
.portail-section-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portail-section-title span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    white-space: nowrap;
}

.portail-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.5), transparent);
}

/* News Grid */
.portail-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portail-news-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portail-news-card:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.portail-news-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary, #6366f1), #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portail-news-card:hover .portail-news-icon {
    transform: scale(1.05);
}

.portail-news-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.portail-news-icon.icon-insolite { background: linear-gradient(135deg, #f59e0b, #d97706); }
.portail-news-icon.icon-artiste { background: linear-gradient(135deg, #ec4899, #be185d); }
.portail-news-icon.icon-web { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.portail-news-icon.icon-people { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.portail-news-icon.icon-tv { background: linear-gradient(135deg, #10b981, #059669); }
.portail-news-icon.icon-musique { background: linear-gradient(135deg, #f59e0b, #ea580c); }

.portail-news-content {
    flex: 1;
    min-width: 0;
}

.portail-news-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary, #6366f1);
    margin-bottom: 0.4rem;
}

.portail-news-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portail-news-content p {
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portail-news-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary, #6366f1);
    transition: color 0.3s ease;
}

.portail-news-card:hover .portail-news-link {
    color: var(--secondary, #f59e0b);
}

/* Footer */
.portail-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portail-footer p {
    color: var(--text-muted, #64748b);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .portail-featured-card {
        grid-template-columns: 1fr;
    }
    .portail-featured-image {
        min-height: 200px;
    }
    .portail-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .portail-news-grid {
        grid-template-columns: 1fr;
    }
    .portail-title {
        flex-direction: column;
        gap: 0.75rem;
    }
    .portail-title h2 {
        font-size: 1.5rem;
    }
    .portail-featured-content h3 {
        font-size: 1.25rem;
    }
    .portail-featured-content {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   STREAM MENU - Menu horizontal avec logos des radios
   ========================================================================== */

/* Bouton Radios */
.stream-btn { box-shadow: var(--glow-primary); border: 1px solid rgba(255, 51, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary, #fff);
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Cacher le bouton Radios en mode podcast */
.player-bar.podcast-mode .stream-btn,
.player-bar.podcast-mode .stream-menu {
    display: none;
}

.stream-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stream-btn svg {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

/* Menu popup */
.stream-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    border-radius: 16px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.stream-menu.open {
    opacity: 1;
    visibility: visible;
}

.stream-menu::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(30, 41, 59, 0.98);
}

.stream-menu-content { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* Item radio */
.stream-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; column-gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 90px;
    flex-shrink: 0;
}

.stream-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stream-item.active {
    border-color: var(--primary, #38bdf8);
    background: rgba(56, 189, 248, 0.15);
}

.stream-item-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.stream-item-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream-item-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-primary, #fff);
    text-align: center;
    width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
}

/* Mobile */
@media (max-width: 768px) {
    .stream-btn span {
        display: none;
    }
    .stream-btn { box-shadow: var(--glow-primary); border: 1px solid rgba(255, 51, 102, 0.4);
        padding: 0;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
        margin-right: 0.5rem;
    }
    .stream-btn svg {
        width: 20px;
        height: 20px;
    }
    .stream-menu {
        padding: 0.75rem;
        left: 10px;
        right: 10px;
    }
    .stream-menu::after {
        left: 25px;
    }
    .stream-menu-content { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px;
        gap: 0; column-gap: 1rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .stream-item {
        padding: 0.5rem;
        width: 70px;
    }
    .stream-item-logo {
        width: 40px;
        height: 40px;
    }
    .stream-item-name {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .stream-btn { box-shadow: var(--glow-primary); border: 1px solid rgba(255, 51, 102, 0.4);
        width: 40px;
        height: 40px;
    }
    .stream-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Animation de chargement pour le titre */
.loading-dots {
    display: inline-flex;
    align-items: center;
}
.loading-dots span {
    animation: loadingDot 1.4s infinite;
    opacity: 0;
}
.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingDot {
    0%, 20% { opacity: 0; }
    40% { opacity: 1; }
    60%, 100% { opacity: 0; }
}

.player-track-title.loading {
    color: rgba(255, 255, 255, 0.7);
}

/* Spinner de chargement sur le bouton Play */
.btn-play.loading .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.player-bar.buffering .player-cover {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


/* Slogan App Links */
.slogan-app-links {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.slogan-app-links .app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.slogan-app-links .app-link:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}



/* Adjust layout when dedicaces bar is hidden */
body.no-dedicaces .slogan-banner {
    top: var(--header-height);
}

body.no-dedicaces .main-content {
    margin-top: calc(var(--header-height) + 60px);
}


/* Podcast item date - ajout 2026-01-10 */
.podcast-item-date { display: flex; align-items: center; gap: 3px; font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.podcast-item-date svg { opacity: 0.7; }


/* Nom de la radio au-dessus du LIVE - desktop uniquement */
.radio-name-display { display: block; width: 100%; text-align: center; order: -1; font-family: var(--font-title, 'Bebas Neue'), sans-serif; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: -14px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary)); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-flow 8s linear infinite; }
@media (max-width: 768px) { .radio-name-display { display: none; } }
.podcast-mode .radio-name-display { display: none; }


/* ================================================
   RESPONSIVE IMPROVEMENTS - 10/01/2026
   ================================================ */

/* ===========================================
   MOBILE FIRST - BASE RESPONSIVE FIXES
   =========================================== */

/* Container padding responsive */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .header-container { padding: 0 1rem; gap: 1rem; }
    .player-container { padding: 0 0.75rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 0.75rem; }
    .header-container { padding: 0 0.75rem; gap: 0.5rem; }
}

/* ===========================================
   HEADER RESPONSIVE ENHANCED
   =========================================== */

@media (max-width: 900px) {
    .social-links { display: none; }
    .app-links { display: none; }
    .header-player { display: none; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }

    .logo img { height: 45px; min-width: 45px; }
    .radio-name { font-size: 1.5rem; letter-spacing: 2px; }
    .radio-slogan { font-size: 0.6rem; letter-spacing: 1px; }

    .nav-toggle { display: flex; }

    .nav { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: rgba(10, 10, 16, 0.98); backdrop-filter: blur(20px); z-index: 999; transform: translateX(-100%); transition: transform 0.3s ease; }
    .nav.open { transform: translateX(0); }

    .nav-list { display: flex; flex-direction: column; padding: 2rem 1rem; gap: 0.5rem; position: static; background: transparent; border-bottom: none; }
    .nav-list a { padding: 1rem 1.5rem; font-size: 1rem; border-radius: var(--radius-sm); }
    .nav-list a:hover, .nav-list a.active { background: rgba(255, 51, 102, 0.2); }
}

@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    .logo img { height: 40px; min-width: 40px; }
    .radio-name { font-size: 1.3rem; }
    .logo-text { display: none; }
}

/* ===========================================
   HERO SECTION RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .hero { min-height: 450px; padding: 3rem 0; }
    .hero-content { padding: 0 1rem; }
    .hero-title { font-size: 2.5rem; letter-spacing: 2px; }
    .hero-text { font-size: 1rem; margin-bottom: 2rem; }
    .hero-badge { padding: 0.5rem 1rem; font-size: 0.7rem; margin-bottom: 1.5rem; }
    .hero-actions { flex-wrap: wrap; gap: 1rem; }
    .btn { padding: 0.875rem 1.5rem; font-size: 0.85rem; }
    .btn-lg { padding: 1rem 2rem; }
}

@media (max-width: 480px) {
    .hero { min-height: 400px; padding: 2rem 0; }
    .hero-title { font-size: 2rem; }
    .hero-text { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===========================================
   SECTION HEADERS RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
    .section-title { font-size: 1.8rem; flex-wrap: wrap; }
    .section-title::after { display: none; }

    .page-header { padding: 3rem 0 2rem; }
    .page-title { font-size: 2rem; letter-spacing: 2px; }
    .page-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    .section { padding: 2rem 0; }
    .section-title { font-size: 1.5rem; }
    .page-title { font-size: 1.75rem; }
}

/* ===========================================
   CARDS RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .card-body { padding: 1rem; }
    .card-title { font-size: 1.2rem; }
    .card-text { font-size: 0.85rem; }
    .card-meta { gap: 0.75rem; font-size: 0.75rem; }

    .card-team, .card-team-full { padding: 1.5rem 1rem; }
    .card-avatar { width: 100px; height: 100px; }
    .card-name { font-size: 1.3rem; }
}

/* ===========================================
   SCHEDULE/GRILLE TABS RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .schedule-tabs, .grille-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding: 0.75rem;
        justify-content: flex-start;
    }
    .schedule-tab, .grille-tab {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .schedule-item { padding: 1rem; gap: 1rem; flex-wrap: wrap; }
    .schedule-time { min-width: 70px; }
    .time-start { font-size: 1.2rem; }
    .schedule-title { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .schedule-tabs, .grille-tabs { padding: 0.5rem; }
    .schedule-tab, .grille-tab { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
}

/* ===========================================
   FOOTER RESPONSIVE ENHANCED
   =========================================== */

@media (max-width: 968px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .footer { padding: 3rem 0 calc(var(--player-height) + 2rem); margin-top: 2rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { order: -1; }
    .footer-logo { margin: 0 auto 1rem; height: 50px; }
    .footer-description { max-width: 100%; margin: 0 auto; font-size: 0.85rem; }
    .footer-links ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
    .footer-links li { margin-bottom: 0; }
    .footer-social-links { justify-content: center; flex-wrap: wrap; }
    .footer-apps { width: 100%; }
    .footer-app-badges { flex-direction: row; justify-content: center; }
    .footer-bottom { padding: 1rem; }
}

@media (max-width: 480px) {
    .footer-app-badges { flex-direction: column; align-items: center; }
    .app-badge { width: 100%; max-width: 200px; justify-content: center; }
}

/* ===========================================
   MESSAGES BAR RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .messages-bar { height: 35px; }
    .messages-label { padding: 0 0.75rem; font-size: 0.75rem; gap: 0.3rem; }
    .messages-label svg { width: 14px; height: 14px; }
    .message-item { font-size: 0.8rem; }
    .btn-send-message { width: 35px; height: 35px; }
    .btn-send-message svg { width: 16px; height: 16px; }

    body:has(.messages-bar) .main-content {
        padding-top: calc(var(--header-height) + 35px);
    }
}

/* ===========================================
   SLOGAN BANNER RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .slogan-banner { padding: 8px 15px; padding-left: 10%; }
    .slogan-banner-inner { padding: 8px 30px; font-size: 0.85rem; }
    .slogan-app-links { margin-left: 10px; padding-left: 10px; gap: 6px; }
    .slogan-app-links .app-link { width: 30px; height: 30px; }
}

@media (max-width: 480px) {
    .slogan-banner { padding-left: 5%; }
    .slogan-banner-inner { padding: 6px 20px; font-size: 0.7rem; clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); }
    .slogan-app-links { display: none; }
}

/* ===========================================
   PLAYER BAR RESPONSIVE ENHANCED
   =========================================== */

@media (max-width: 768px) {
    :root { --player-height: 85px; }

    .player-bar .player-container { gap: 0.75rem; }
    .player-info { gap: 0.5rem; flex: 1; min-width: 0; }
    .player-cover-wrapper { width: 55px; height: 55px; }
    .player-track { flex: 1; }
    .player-track-title { font-size: 1rem; }
    .player-track-artist { font-size: 0.75rem; }

    .player-controls { gap: 0.5rem; }
    .btn-play-main { width: 50px; height: 50px; }
    .btn-play-main svg { width: 24px; height: 24px; }

    .btn-podcast { padding: 0.5rem; margin-left: 0.5rem; }
    .btn-podcast span { display: none; }
}

@media (max-width: 480px) {
    :root { --player-height: 75px; }

    .player-cover-wrapper { width: 45px; height: 45px; }
    .player-track-title { font-size: 0.9rem; }
    .player-track-artist { font-size: 0.7rem; }
    .btn-play-main { width: 45px; height: 45px; }
    .btn-play-main svg { width: 22px; height: 22px; }

    .btn-back-radio span { display: none; }
}

/* ===========================================
   PODCAST PANEL RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .podcast-panel { width: 100%; right: -100%; }
    .podcast-panel-header { padding: 1rem; }
    .podcast-panel-header h3 { font-size: 1.25rem; }
    .podcast-panel-list { padding: 0.75rem; }
    .podcast-item { padding: 0.5rem; gap: 0.75rem; }
    .podcast-item img { width: 45px; height: 45px; }
    .podcast-item-title { font-size: 1rem; }
}

/* ===========================================
   PORTAIL INFO RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .portail-info { padding: 2.5rem 0; }
    .portail-header { margin-bottom: 2rem; }
    .portail-featured-content { padding: 1.25rem; }
    .portail-featured-content h3 { font-size: 1.2rem; }
    .portail-featured-content p { font-size: 0.95rem; }
}

/* ===========================================
   EMISSION SONDAGE GRID RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .emission-sondage-grid { gap: 1.5rem; }
    .sondage-card { padding: 1.25rem; }
    .sondage-question { font-size: 1.1rem; }
    .sondage-option { padding: 0.75rem; }
    .option-text { font-size: 1rem; }
}

/* ===========================================
   DETAIL PAGES RESPONSIVE ENHANCED
   =========================================== */

@media (max-width: 768px) {
    .detail-header { gap: 1.5rem; padding: 2rem 0; }
    .detail-title { font-size: 1.75rem; }
    .detail-description { font-size: 1rem; line-height: 1.7; }
    .detail-meta { gap: 1rem; flex-wrap: wrap; }

    .animateur-profile { gap: 2rem; padding: 2rem 0; }
    .profile-avatar { width: 200px; height: 200px; }
    .profile-name { font-size: 2.5rem; }
    .profile-role { font-size: 1rem; }
    .profile-bio { font-size: 1rem; }
    .profile-social { justify-content: center; }
}

@media (max-width: 480px) {
    .detail-title { font-size: 1.5rem; }
    .profile-avatar { width: 160px; height: 160px; }
    .profile-name { font-size: 2rem; }

    .animateurs-cards { grid-template-columns: 1fr; }
    .animateur-card { flex-direction: column; text-align: center; gap: 1rem; }
    .animateur-card-image img { width: 80px; height: 80px; }
}

/* ===========================================
   CONTACT PAGE RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .contact-grid { gap: 2rem; }
    .contact-form { gap: 1.5rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 0.875rem 1rem; font-size: 1rem; }
    .info-card { padding: 1.5rem; }
    .info-icon { font-size: 2rem; }
}

/* ===========================================
   MODAL RESPONSIVE
   =========================================== */

@media (max-width: 480px) {
    .modal-content { width: 95%; padding: 1.5rem; margin: 1rem; }
    .modal-content h2 { font-size: 1.5rem; }
}

/* ===========================================
   STREAM MENU RESPONSIVE ENHANCED
   =========================================== */

@media (max-width: 480px) {
    .stream-menu { left: 5px; right: 5px; padding: 0.5rem; }
    .stream-menu-content { gap: 0.35rem; }
    .stream-item { width: 60px; padding: 0.4rem; }
    .stream-item-logo { width: 35px; height: 35px; }
    .stream-item-name { font-size: 0.55rem; }
}

/* ===========================================
   PARTENAIRES SECTION RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .partenaires-section { padding: 2rem 0; }
    .partenaires-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
    .partenaires-grid { flex-wrap: wrap; gap: 1rem; }
    .partenaire-item { padding: 0.75rem 1.25rem; }
    .partenaire-name { font-size: 1rem; }
    .partenaire-logo { max-width: 100px; max-height: 45px; }
}

/* ===========================================
   ALBUM GALLERY RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .albums-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
    .album-gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.75rem; }
}

@media (max-width: 480px) {
    .albums-grid { grid-template-columns: 1fr 1fr; }
    .album-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================================
   LIGHTBOX RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .lightbox-close { top: 0.5rem; right: 0.5rem; width: 40px; height: 40px; font-size: 2rem; }
    .lightbox-nav { width: 40px; height: 60px; font-size: 1.5rem; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-content img { max-width: 95vw; max-height: 85vh; }
}

/* ===========================================
   UTILITY CLASSES FOR MOBILE
   =========================================== */

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
    .show-mobile-only { display: none !important; }
}

/* Touch-friendly targets */
@media (max-width: 768px) {
    a, button, .btn, .card, .nav-list a, .schedule-tab, .grille-tab {
        min-height: 44px;
    }

    .nav-list a { min-height: 48px; }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fix text overflow everywhere */
.card-title, .podcast-title, .schedule-title, .grille-emission-name,
.section-title, .page-title, .detail-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* ===========================================
   BOUTON RETOUR RADIO - RESPONSIVE AVEC FLECHE
   =========================================== */

/* Par défaut : icône live visible, flèche cachée */
.btn-back-radio .icon-live { display: block; }
.btn-back-radio .icon-arrow { display: none; }

/* Mobile : flèche visible, icône live cachée, bouton agrandi */
@media (max-width: 768px) {
    .btn-back-radio .icon-live { display: none; }
    .btn-back-radio .icon-arrow { display: block; }
    
    .player-bar.podcast-mode .btn-back-radio {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: none;
    }
    
    .player-bar.podcast-mode .btn-back-radio svg {
        width: 24px;
        height: 24px;
    }
    
    .player-bar.podcast-mode .btn-back-radio span {
        display: none;
    }
}

@media (max-width: 480px) {
    .player-bar.podcast-mode .btn-back-radio {
        width: 45px;
        height: 45px;
    }
    
    .player-bar.podcast-mode .btn-back-radio svg {
        width: 22px;
        height: 22px;
    }
}


/* ===========================================
   MENU HAMBURGER MOBILE - ENHANCED
   =========================================== */

/* Bouton hamburger visible sur mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 10px;
        cursor: pointer;
        background: rgba(255, 51, 102, 0.1);
        border: 1px solid rgba(255, 51, 102, 0.3);
        border-radius: var(--radius-sm);
        z-index: 1001;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animation hamburger -> X */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Menu navigation mobile */
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        list-style: none;
    }

    .nav-list li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav.open .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav.open .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav.open .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav.open .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav.open .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .nav.open .nav-list li:nth-child(5) { transition-delay: 0.3s; }
    .nav.open .nav-list li:nth-child(6) { transition-delay: 0.35s; }
    .nav.open .nav-list li:nth-child(7) { transition-delay: 0.4s; }
    .nav.open .nav-list li:nth-child(8) { transition-delay: 0.45s; }

    .nav-list a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-secondary);
        border-radius: var(--radius-sm);
        transition: all 0.2s ease;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 51, 102, 0.15);
        color: var(--text);
        padding-left: 2rem;
    }

    .nav-list a.active {
        border-left: 3px solid var(--primary);
    }
}

/* Desktop: cacher le toggle */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav {
        position: static;
        transform: none;
        background: transparent;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: row;
    }
    
    .nav-list li {
        opacity: 1;
        transform: none;
    }
}


/* ===========================================
   FIX: SONDAGE TEXTE TROP GROS SUR MOBILE
   =========================================== */

@media (max-width: 768px) {
    .sondage-question {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .sondage-option {
        padding: 0.6rem 0.75rem;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .option-percent {
        font-size: 0.75rem;
    }
    
    .option-radio {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
    
    .sondage-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    
    .btn-vote {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sondage-question {
        font-size: 0.9rem;
    }
    
    .option-text {
        font-size: 0.85rem;
    }
    
    .sondage-card {
        padding: 1rem;
    }
}

/* ===========================================
   FIX: SLIDESHOW NAV DOTS POSITION MOBILE
   =========================================== */

@media (max-width: 768px) {
    .nav-dots {
        bottom: 60px !important;
        gap: 8px;
    }
    
    .nav-dot {
        width: 30px;
        height: 5px;
    }
    
    .slide-content {
        padding-bottom: 100px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-dots {
        bottom: 50px !important;
        gap: 6px;
    }
    
    .nav-dot {
        width: 24px;
        height: 4px;
    }
    
    .slide-content {
        padding-bottom: 80px;
    }
}


/* ===========================================
   FIX: MENU MOBILE - STYLES COMPLETS
   =========================================== */

@media (max-width: 900px) {
    /* Bouton hamburger visible */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 8px;
        cursor: pointer;
        background: rgba(255, 51, 102, 0.1);
        border: 1px solid rgba(255, 51, 102, 0.3);
        border-radius: 8px;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--primary, #ff3366);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Animation hamburger -> X */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Menu liste - caché par défaut */
    .nav-list {
        display: none;
        position: fixed;
        top: var(--header-height, 70px);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        z-index: 999;
        overflow-y: auto;
    }
    
    /* Menu ouvert */
    .nav-list.open {
        display: flex !important;
    }
    
    .nav-list li {
        list-style: none;
    }
    
    .nav-list a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-secondary, #94a3b8);
        border-radius: 8px;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 51, 102, 0.15);
        color: #fff;
        padding-left: 2rem;
    }
    
    .nav-list a.active {
        border-left: 3px solid var(--primary, #ff3366);
    }
}


/* ===========================================
   FIX URGENT: NAV-TOGGLE VISIBLE SUR MOBILE
   =========================================== */

@media (max-width: 900px) {
    /* Le nav reste visible et en flex */
    .nav {
        position: static !important;
        transform: none !important;
        display: flex !important;
        align-items: center;
        background: transparent !important;
        backdrop-filter: none !important;
    }
    
    /* Le toggle est toujours visible */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 8px;
        cursor: pointer;
        background: rgba(255, 51, 102, 0.15);
        border: 1px solid rgba(255, 51, 102, 0.4);
        border-radius: 8px;
        z-index: 1002;
    }
    
    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ff3366;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* La liste est cachée par défaut */
    .nav-list {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        z-index: 1001;
        overflow-y: auto;
        list-style: none;
    }
    
    /* La liste s ouvre avec la classe open */
    .nav-list.open {
        display: flex !important;
    }
    
    .nav-list li {
        list-style: none;
    }
    
    .nav-list a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #94a3b8;
        border-radius: 8px;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 51, 102, 0.15);
        color: #fff;
    }
}


/* ===========================================
   FIX: MENU MOBILE AVEC COULEURS DU THEME
   =========================================== */

@media (max-width: 900px) {
    .nav {
        position: static !important;
        transform: none !important;
        display: flex !important;
        align-items: center;
        background: transparent !important;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 8px;
        cursor: pointer;
        background: rgba(var(--primary-rgb, 255, 51, 102), 0.15);
        border: 1px solid var(--primary, #ff3366);
        border-radius: 8px;
        z-index: 1002;
    }
    
    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--primary, #ff3366);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--primary, #ff3366);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--primary, #ff3366);
    }
    
    .nav-list {
        display: none !important;
        position: fixed;
        top: var(--header-height, 70px);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark, rgba(10, 10, 16, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        z-index: 1001;
        overflow-y: auto;
        list-style: none;
        margin: 0;
    }
    
    .nav-list.open {
        display: flex !important;
    }
    
    .nav-list li {
        list-style: none;
    }
    
    .nav-list a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-secondary, #94a3b8);
        border-radius: 8px;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(var(--primary-rgb, 255, 51, 102), 0.15);
        color: var(--text, #fff);
    }
    
    .nav-list a.active {
        border-left: 3px solid var(--primary, #ff3366);
    }
}


/* ===========================================
   FORCE MENU MOBILE - PRIORITE MAXIMALE
   =========================================== */

@media screen and (max-width: 900px) {
    .header .nav .nav-list.open,
    nav .nav-list.open,
    #navList.open,
    ul.nav-list.open {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #0a0a10 !important;
        flex-direction: column !important;
        padding: 2rem 1.5rem !important;
        gap: 0.5rem !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        margin: 0 !important;
    }
    
    #navList.open li,
    .nav-list.open li {
        display: block !important;
        list-style: none !important;
    }
    
    #navList.open a,
    .nav-list.open a {
        display: flex !important;
        align-items: center;
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
        font-weight: 600;
        color: #e2e8f0 !important;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        text-decoration: none;
    }
    
    #navList.open a:hover,
    #navList.open a.active {
        background: var(--primary, #ff3366) !important;
        color: #fff !important;
    }
}


/* ===========================================
   FIX: SLOGAN RESPONSIVE MOBILE
   =========================================== */

@media (max-width: 768px) {
    .slogan-banner {
        padding: 8px 10px !important;
        padding-left: 10px !important;
        justify-content: center !important;
    }
    
    .slogan-banner-inner {
        padding: 6px 15px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        clip-path: none !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
        max-width: 95% !important;
        text-align: center !important;
    }
    
    .slogan-text {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
    
    .slogan-app-links {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .slogan-banner-inner {
        padding: 5px 12px !important;
        font-size: 0.6rem !important;
    }
    
    .slogan-text {
        font-size: 0.6rem !important;
    }
}


/* ===========================================
   FIX URGENT: SLOGAN MOBILE CENTRE
   =========================================== */

@media screen and (max-width: 768px) {
    .slogan-banner {
        padding: 8px 10px !important;
        padding-left: 10px !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .slogan-banner-inner {
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        clip-path: none !important;
        border-radius: 15px !important;
        max-width: 90vw !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .slogan-banner-inner::before {
        clip-path: none !important;
        border-radius: 15px !important;
    }
    
    .slogan-text {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
    
    .slogan-app-links {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .slogan-banner-inner {
        padding: 5px 10px !important;
        font-size: 0.55rem !important;
    }
    
    .slogan-text {
        font-size: 0.55rem !important;
    }
}


/* ===========================================
   SLOGAN MOBILE - DESIGN ORIGINAL CONSERVE
   =========================================== */

@media screen and (max-width: 768px) {
    .slogan-banner {
        padding: 8px 15px !important;
        padding-left: 15px !important;
        justify-content: center !important;
    }
    
    .slogan-banner-inner {
        padding: 6px 25px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%) !important;
    }
    
    .slogan-banner-inner::before {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%) !important;
    }
    
    .slogan-text {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
    
    .slogan-app-links {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .slogan-banner {
        padding-left: 10px !important;
    }
    
    .slogan-banner-inner {
        padding: 5px 20px !important;
        font-size: 0.6rem !important;
        clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%) !important;
    }
    
    .slogan-banner-inner::before {
        clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%) !important;
    }
    
    .slogan-text {
        font-size: 0.6rem !important;
    }
}


/* ===========================================
   APP LINKS MOBILE DANS LE HEADER
   =========================================== */

/* Caché sur desktop */
.header-app-links-mobile {
    display: none;
}

/* Visible uniquement sur mobile */
@media screen and (max-width: 900px) {
    .header-app-links-mobile {
        display: flex !important;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-app-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--primary, #ff3366);
        border-radius: 8px;
        color: var(--primary, #ff3366);
        transition: all 0.3s ease;
    }
    
    .header-app-link:hover {
        background: var(--primary, #ff3366);
        color: white;
    }
    
    .header-app-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
}

@media screen and (max-width: 480px) {
    .header-app-links-mobile {
        gap: 6px;
        margin-right: 8px;
    }
    
    .header-app-link {
        width: 34px;
        height: 34px;
    }
    
    .header-app-link svg {
        width: 18px;
        height: 18px;
    }
}


/* ===========================================
   FIX: NAV-DOTS TAILLE MOBILE
   =========================================== */

@media screen and (max-width: 768px) {
    .nav-dots {
        bottom: 15px !important;
        gap: 6px !important;
    }
    
    .nav-dot {
        width: 20px !important;
        height: 3px !important;
        border-radius: 2px !important;
    }
}

@media screen and (max-width: 480px) {
    .nav-dots {
        bottom: 10px !important;
        gap: 5px !important;
    }
    
    .nav-dot {
        width: 16px !important;
        height: 2px !important;
    }
}


/* Nav-dots hidden on mobile */
@media screen and (max-width: 768px) {
    .nav-dots {
        display: none !important;
    }
}


/* Slideshow height reduced on mobile */
@media screen and (max-width: 768px) {
    .hero-slideshow {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }
    .slide-content {
        padding: 1.5rem !important;
    }
    .slide-title {
        font-size: 2rem !important;
    }
    .slide-description {
        font-size: 0.9rem !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-slideshow {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
    .slide-title {
        font-size: 1.8rem !important;
    }
    .slide-description {
        font-size: 0.85rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


/* Slideshow background more transparent - all devices */
.hero-slideshow .slide::before,
.hero-slideshow .slide-overlay,
.slide::before,
.slide-overlay,
.hero-slideshow .slides .slide::before {
    background: rgba(0, 0, 0, 0.1) !important;
    opacity: 0.2 !important;
}
.hero-slideshow .slide-content,
.slide-content,
.hero-slideshow .slides .slide-content {
    background: transparent !important;
    background-color: transparent !important;
}
.hero-slideshow .slide,
.slides .slide {
    background-color: transparent !important;
}


/* Slide buttons spacing on mobile */
@media screen and (max-width: 768px) {
    .slide-buttons,
    .slide-actions,
    .slide-content .btn,
    .slide-content a.btn {
        margin-top: 3.5rem !important;
    }
}

@media screen and (max-width: 480px) {
    .slide-buttons,
    .slide-actions,
    .slide-content .btn,
    .slide-content a.btn {
        margin-top: 3rem !important;
    }
}


/* Slide buttons size on mobile */
@media screen and (max-width: 768px) {
    .hero-slideshow .btn,
    .slide-content .btn,
    .slide-buttons .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-slideshow .btn,
    .slide-content .btn,
    .slide-buttons .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
}


/* Hero slideshow buttons smaller on mobile */
@media screen and (max-width: 768px) {
    .btn-hero-play,
    .btn-hero-outline {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        max-width: 200px !important;
    }
    .btn-hero-play .btn-icon {
        width: 28px !important;
        height: 28px !important;
    }
    .btn-hero-play .btn-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
}

@media screen and (max-width: 480px) {
    .btn-hero-play,
    .btn-hero-outline {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        max-width: 180px !important;
    }
    .btn-hero-play .btn-icon {
        width: 24px !important;
        height: 24px !important;
    }
}


/* Sondage text smaller on mobile */
@media screen and (max-width: 768px) {
    .sondage-question {
        font-size: 0.95rem !important;
    }
    .sondage-option,
    .option-text {
        font-size: 0.85rem !important;
    }
    .sondage-card p,
    .sondage-content,
    .sondage-text {
        font-size: 0.85rem !important;
    }
}

@media screen and (max-width: 480px) {
    .sondage-question {
        font-size: 0.85rem !important;
    }
    .sondage-option,
    .option-text {
        font-size: 0.8rem !important;
    }
    .sondage-card p,
    .sondage-content,
    .sondage-text {
        font-size: 0.8rem !important;
    }
}


/* Grille des programmes - Mobile readable */
@media screen and (max-width: 768px) {
    .grille-section {
        padding: 1rem !important;
    }
    .grille-tabs {
        gap: 0.5rem !important;
        padding: 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    .grille-tab {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.7rem !important;
    }
    .grille-item {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
    }
    .grille-time {
        font-size: 0.8rem !important;
        min-width: 50px !important;
    }
    .grille-emission-img {
        width: 40px !important;
        height: 40px !important;
    }
    .grille-emission-img img {
        width: 40px !important;
        height: 40px !important;
    }
    .grille-emission-name {
        font-size: 0.85rem !important;
    }
    .grille-info {
        flex: 1 !important;
        min-width: 0 !important;
    }
    .grille-arrow {
        display: none !important;
    }
    
    /* Schedule items */
    .schedule-item {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .schedule-time {
        flex-direction: row !important;
        gap: 0.5rem !important;
        min-width: auto !important;
    }
    .schedule-title {
        font-size: 1rem !important;
    }
    .schedule-content {
        width: 100% !important;
    }
    .time-start {
        font-size: 1rem !important;
    }
    .time-end {
        font-size: 0.75rem !important;
    }
}

@media screen and (max-width: 480px) {
    .grille-tab {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
    .grille-time {
        font-size: 0.75rem !important;
        min-width: 45px !important;
    }
    .grille-emission-name {
        font-size: 0.8rem !important;
    }
    .grille-emission-img {
        width: 35px !important;
        height: 35px !important;
    }
    .grille-emission-img img {
        width: 35px !important;
        height: 35px !important;
    }
    .schedule-title {
        font-size: 0.9rem !important;
    }
}


/* Contact page - Mobile responsive */
@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    .contact-form {
        gap: 1rem !important;
    }
    .contact-form .form-group {
        margin-bottom: 0.75rem !important;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
    .contact-form label,
    .form-group label {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }
    .contact-form textarea {
        min-height: 100px !important;
    }
    .contact-form .btn,
    .contact-form button {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
    }
    .contact-info {
        gap: 1rem !important;
    }
    .info-card {
        padding: 1rem !important;
    }
    .info-card h3,
    .info-card-title {
        font-size: 1rem !important;
    }
    .info-card p,
    .info-card-text {
        font-size: 0.85rem !important;
    }
    .info-icon {
        font-size: 1.5rem !important;
        width: 40px !important;
        height: 40px !important;
    }
    .page-header .page-title {
        font-size: 1.5rem !important;
    }
    .page-header .page-subtitle {
        font-size: 0.9rem !important;
    }
}

@media screen and (max-width: 480px) {
    .contact-grid {
        padding: 0 !important;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem !important;
        font-size: 0.85rem !important;
    }
    .info-card {
        padding: 0.75rem !important;
    }
    .page-header .page-title {
        font-size: 1.3rem !important;
    }
}


/* Fix form width on mobile */
@media screen and (max-width: 768px) {
    .contact-form,
    .contact-grid,
    .contact-info,
    form {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .form-group input,
    .form-group textarea,
    .form-group select,
    .form-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .contact-section,
    .section-contact,
    [data-page="contact"] {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        overflow-x: hidden !important;
    }
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}


/* Social buttons responsive on contact page */
@media screen and (max-width: 768px) {
    .social-links-large {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .social-links-large a,
    .social-links-large .social-btn,
    .contact-info .social-btn,
    .social-btn.facebook,
    .social-btn.twitter,
    .social-btn.instagram {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        flex-shrink: 1 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    .social-btn svg,
    .social-links-large svg {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        flex-shrink: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .social-links-large a,
    .social-links-large .social-btn,
    .contact-info .social-btn,
    .social-btn.facebook,
    .social-btn.twitter,
    .social-btn.instagram {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    .social-btn svg,
    .social-links-large svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
    }
}

/* Menu no wrap */
.nav-list li a { white-space: nowrap; }

