* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark-gray);
    padding-bottom: 80px;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    transition: all 0.3s;
    margin: 0 10px;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section avec Player */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Player Card - Horizontal Layout */
.player-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 8px 16px rgba(0,0,0,0.08),
        inset 0 1px 3px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Player Header */
.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Playing Mode Indicators */
.playing-mode {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.mode-live {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(243, 110, 67, 0.3);
}

.mode-live::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(255,255,255,0);
    }
}

.mode-podcast {
    background: linear-gradient(135deg, var(--podcast-color), #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.playing-mode i {
    margin-left: 16px;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Player Content - Horizontal Layout */
.player-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.player-cover {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-cover i {
    font-size: 2.5rem;
    color: white;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.now-playing-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--medium-gray);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.now-playing-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.now-playing-title.podcast-mode {
    color: var(--podcast-color);
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 25px;
}

.bar {
    width: 3px;
    background: linear-gradient(to top, var(--secondary-color), var(--primary-color));
    animation: dance 0.6s ease-in-out infinite;
}

.bar.podcast-mode {
    background: linear-gradient(to top, var(--podcast-color), #7c3aed);
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }
.bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes dance {
    0%, 100% { height: 8px; }
    50% { height: 25px; }
}

.equalizer.paused .bar {
    animation-play-state: paused;
    height: 8px;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(243, 110, 67, 0.35),
        0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 
        0 12px 30px rgba(243, 110, 67, 0.4),
        0 6px 15px rgba(0,0,0,0.12);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-btn.podcast-mode {
    background: linear-gradient(135deg, var(--podcast-color) 0%, #7c3aed 100%);
    box-shadow: 
        0 10px 25px rgba(139, 92, 246, 0.35),
        0 4px 10px rgba(0,0,0,0.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(243, 110, 67, 0.05);
    border-radius: 30px;
}

.volume-control i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.volume-slider {
    width: 100px;
    accent-color: var(--secondary-color);
    cursor: pointer;
}

.back-to-live-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(243, 110, 67, 0.3);
}

.back-to-live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 110, 67, 0.4);
}

/* Sticky Player Bar */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.sticky-player.active {
    transform: translateY(0);
}

.sticky-player.podcast-mode {
    background: linear-gradient(90deg, var(--podcast-color) 0%, #7c3aed 100%);
}

.sticky-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-play-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-play-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.sticky-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.sticky-equalizer .bar {
    width: 3px;
    background: white;
    animation: dance 0.6s ease-in-out infinite;
}

.sticky-equalizer.paused .bar {
    animation-play-state: paused;
    height: 6px;
}

/* Dedication Section */
.dedication-section {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.dedication-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dedication-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dedication-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.dedication-btn {
    background: linear-gradient(135deg, var(--accent-color), #db2777);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.dedication-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    padding: 0 15px;
}

/* Podcast Section */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.podcast-card-compact {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 3px solid var(--podcast-color);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.podcast-card-compact:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.podcast-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--podcast-color), #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.podcast-info {
    flex: 1;
}

.podcast-title {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.podcast-play-btn {
    width: 40px;
    height: 40px;
    background: var(--podcast-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.podcast-play-btn:hover {
    background: #7c3aed;
    transform: scale(1.1);
}

.podcast-play-btn.playing {
    background: var(--secondary-color);
    animation: pulse-btn 1.5s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243, 110, 67, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(243, 110, 67, 0); }
}

/* History Section */
.history-container {
    max-width: 800px;
    margin: 0 auto;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-left: 3px solid var(--secondary-color);
}

.history-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 10px;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Dropdown menus */
.navbar .dropdown-menu {
    background: rgba(243, 110, 67, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 10px;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    transition: all 0.3s;
}

.navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 25px;
}

/* Animation pour les dropdown */
.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Style actif pour la page courante */
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .player-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-left {
        flex-direction: column;
        width: 100%;
    }
    
    .player-right {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .volume-control {
        display: none;
    }
    
    .dedication-form {
        flex-direction: column;
    }
    
    .dedication-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
    }
    
    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        position: static;
    }
}
/* History Section */
.history-container {
    max-width: 800px;
    margin: 0 auto;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-left: 3px solid var(--secondary-color);
}

.history-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.history-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-gray);
}

.history-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-info {
    flex: 1;
    min-width: 0;
}

.history-artist {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-title {
    color: var(--medium-gray);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-time {
    color: var(--medium-gray);
    font-size: 0.8rem;
    white-space: nowrap;
}
/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}
/* Podcast Section */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.podcast-card-compact {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 3px solid var(--podcast-color);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.podcast-card-compact:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.podcast-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--podcast-color), #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.podcast-info {
    flex: 1;
}

.podcast-title {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.podcast-play-btn {
    width: 40px;
    height: 40px;
    background: var(--podcast-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.podcast-play-btn:hover {
    background: #7c3aed;
    transform: scale(1.1);
}

.podcast-play-btn.playing {
    background: var(--secondary-color);
    animation: pulse-btn 1.5s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243, 110, 67, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(243, 110, 67, 0); }
}
/* Player Card - Horizontal Layout */
.player-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 8px 16px rgba(0,0,0,0.08),
        inset 0 1px 3px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Player Header */
.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Playing Mode Indicators */
.playing-mode {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.mode-live {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(243, 110, 67, 0.3);
}

.mode-live::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(255,255,255,0);
    }
}

.mode-podcast {
    background: linear-gradient(135deg, var(--podcast-color), #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.playing-mode i {
    margin-left: 16px;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Player Content - Horizontal Layout */
.player-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.player-cover {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-cover i {
    font-size: 2.5rem;
    color: white;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.now-playing-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--medium-gray);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.now-playing-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.now-playing-title.podcast-mode {
    color: var(--podcast-color);
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 25px;
}

.bar {
    width: 3px;
    background: linear-gradient(to top, var(--secondary-color), var(--primary-color));
    animation: dance 0.6s ease-in-out infinite;
}

.bar.podcast-mode {
    background: linear-gradient(to top, var(--podcast-color), #7c3aed);
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }
.bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes dance {
    0%, 100% { height: 8px; }
    50% { height: 25px; }
}

.equalizer.paused .bar {
    animation-play-state: paused;
    height: 8px;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(243, 110, 67, 0.35),
        0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 
        0 12px 30px rgba(243, 110, 67, 0.4),
        0 6px 15px rgba(0,0,0,0.12);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-btn.podcast-mode {
    background: linear-gradient(135deg, var(--podcast-color) 0%, #7c3aed 100%);
    box-shadow: 
        0 10px 25px rgba(139, 92, 246, 0.35),
        0 4px 10px rgba(0,0,0,0.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(243, 110, 67, 0.05);
    border-radius: 30px;
}

.volume-control i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.volume-slider {
    width: 100px;
    accent-color: var(--secondary-color);
    cursor: pointer;
}

.back-to-live-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(243, 110, 67, 0.3);
}

.back-to-live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 110, 67, 0.4);
}
/* 1. Correction du fond du player en mode podcast */
        .play-btn.podcast-mode {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
            box-shadow: 
                0 10px 25px rgba(139, 92, 246, 0.35),
                0 4px 10px rgba(0,0,0,0.1);
        }

        /* 2. Correction de l'icône dans la section Podcasts */
        .podcast-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* 3. Correction du bouton play des podcasts */
        .podcast-play-btn {
            width: 40px;
            height: 40px;
            background: #8b5cf6 !important;
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .podcast-play-btn:hover {
            background: #7c3aed !important;
            transform: scale(1.1);
        }

        .podcast-play-btn.playing {
            background: #F36E43 !important;
            animation: pulse-btn 1.5s infinite;
        }

        /* 4. Animation du bouton playing */
        @keyframes pulse-btn {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(243, 110, 67, 0.7); 
            }
            50% { 
                box-shadow: 0 0 0 10px rgba(243, 110, 67, 0); 
            }
        }

        /* 5. Correction de la carte podcast */
        .podcast-card-compact {
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-left: 3px solid #8b5cf6;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            position: relative;
        }

        .podcast-card-compact:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
            background: linear-gradient(to right, rgba(139, 92, 246, 0.05), transparent);
        }

        /* 6. Correction du mode podcast dans le player principal */
        .playing-mode.mode-podcast {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        /* 7. Correction des barres d'égaliseur en mode podcast */
        .bar.podcast-mode {
            background: linear-gradient(to top, #8b5cf6, #7c3aed) !important;
        }

        /* 8. Correction du titre en mode podcast */
        .now-playing-title.podcast-mode {
            color: #8b5cf6 !important;
        }

        /* 9. Correction du sticky player en mode podcast */
        .sticky-player.podcast-mode {
            background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%) !important;
        }

        /* 10. S'assurer que les icônes Bootstrap Icons sont visibles */
        .podcast-icon i,
        .podcast-play-btn i {
            font-size: 1.2rem;
            line-height: 1;
        }

        /* 11. Variables CSS pour la couleur podcast */
        :root {
            --podcast-color: #8b5cf6;
        }