@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #5b4cff 50%, #ff0099 100%);
    --dark-bg: #4a3580;
    --card-bg: rgba(74, 53, 128, 0.95);
    --text-light: #ffffff;
    --text-gray: #dcdcee;
    --accent-cyan: #00d4ff;
    --accent-magenta: #ff0099;
    --accent-purple: #5b4cff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Background adapté pour mobile et tablette - couvre tout l'écran et reste fixe */
@media (max-width: 1024px) {
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        min-height: 100vh;
    }
}

/* Header & Navigation */
header {
    background: rgba(120, 60, 140, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid transparent;
    border-image: var(--primary-gradient) 1;
    width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 1;
    min-width: 0;
}

.logo-container img {
    height: 80px;
    width: 80px;
    border-radius: 12px;
}

.logo-text h1 {
    font-size: 1.7rem;
    color: white;
    font-weight: 600;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-style: italic;
    white-space: nowrap;
}

nav a:hover, nav a.active {
    background: var(--primary-gradient);
    transform: translateY(-2px);
}

/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 99999;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.facebook-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.facebook-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.facebook-link svg {
    display: block;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-style: italic;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
}

.dropdown-toggle.active {
    background: var(--primary-gradient);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(74, 53, 128, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(91, 76, 255, 0.3);
    z-index: 1001;
}

.dropdown.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-style: italic;
}

.dropdown-menu a:hover {
    background: var(--primary-gradient);
    transform: translateX(5px);
}

/* Player Fixed */
.player-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(120, 60, 140, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid transparent;
    border-image: var(--primary-gradient) 1;
    padding: 1rem 2rem;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.player-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Station Menu Toggle (hidden by default, shown on mobile only) */
.station-dropdown {
    display: none;
}

/* Bootstrap overrides pour le player */
.player-fixed * {
    box-sizing: border-box;
}

.player-fixed .btn-link {
    text-decoration: none;
}

.station-menu-toggle {
    padding: 0.5rem !important;
    color: var(--text-light) !important;
}

.station-menu-toggle:hover {
    color: var(--accent-cyan) !important;
}

.station-menu {
    background: rgba(120, 60, 140, 0.98) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 76, 255, 0.3) !important;
    border-radius: 8px !important;
    min-width: 220px;
    z-index: 99999 !important;
}

.station-menu-item {
    color: var(--text-light) !important;
    font-style: italic;
    padding: 0.75rem 1.5rem !important;
}

.station-menu-item:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
}

.station-menu-item.active {
    background: rgba(91, 76, 255, 0.3) !important;
    color: var(--accent-cyan) !important;
    font-weight: 600;
}

.now-playing {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 153, 0.4);
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Gestion de l'affichage des icônes Play/Pause */
#playIcon {
    display: block;
}

#pauseIcon {
    display: none;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--card-bg);
    object-fit: cover;
    border: 2px solid var(--accent-purple);
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.song-artist {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.station-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid rgba(91, 76, 255, 0.3);
}

.station-selector label {
    color: var(--text-gray);
    font-size: 0.9rem;
    white-space: nowrap;
}

.station-selector select {
    background: rgba(74, 53, 128, 0.95);
    color: var(--text-light);
    border: 1px solid rgba(91, 76, 255, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.station-selector select:hover {
    border-color: var(--accent-cyan);
}

.station-selector select:focus {
    border-color: var(--accent-magenta);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 153, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--card-bg);
    outline: none;
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-magenta);
    cursor: pointer;
    border-radius: 50%;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-bottom: 120px;
    width: 100%;
    overflow-x: hidden;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-gradient);
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(26,11,46,0.3)"/></svg>') repeat-x bottom;
    background-size: 1200px 120px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: rgba(74, 53, 128, 0.95);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 76, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 76, 255, 0.4);
}

.card h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Tabs pour les jours */
.days-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.day-tab {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(91, 76, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.day-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 76, 255, 0.3);
}

.day-tab.active {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* Schedule */
.schedule-container {
    display: none;
}

.schedule-container.active {
    display: block;
}

.schedule-grid {
    display: grid;
    gap: 1.5rem;
}

.schedule-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-magenta);
    display: grid;
    grid-template-columns: 80px 80px 1fr;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(91, 76, 255, 0.3);
}

.schedule-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--dark-bg);
    border: 2px solid var(--accent-purple);
}

.schedule-time {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-align: center;
}

.schedule-show h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.schedule-show p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.schedule-show .animateur {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* History */
.history-list {
    display: grid;
    gap: 1rem;
}

.history-item {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.history-item:hover {
    transform: translateX(5px);
}

.history-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.history-info {
    flex: 1;
}

.history-time {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(91, 76, 255, 0.3);
    background: rgba(74, 53, 128, 0.92);
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.form-message.error {
    background: rgba(255, 0, 153, 0.2);
    color: var(--accent-magenta);
    border: 1px solid var(--accent-magenta);
}

/* Page Titles */
.page-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    /* Masquer le texte du logo sur mobile */
    .logo-text {
        display: none;
    }

    .logo-container img {
        height: 50px;
        width: 50px;
    }

    /* Afficher le menu hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Menu mobile */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background: rgba(120, 60, 140, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.3s ease;
        z-index: 99999;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    nav a:hover, nav a.active {
        transform: translateX(5px);
    }
    
    /* Assurer que les dropdowns sont visibles dans le menu mobile */
    nav .dropdown {
        width: 100%;
        display: block !important;
    }

    .dropdown {
        width: 100%;
    }

    /* Sur mobile, afficher les boutons dropdown comme des liens */
    nav .dropdown-toggle {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        text-align: left;
        color: var(--text-light);
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 500;
        font-style: italic;
    }
    
    nav .dropdown-toggle:hover {
        transform: translateX(5px);
    }
    
    /* Ajouter une flèche pour indiquer le dropdown */
    .dropdown-toggle::after {
        content: '▼';
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        padding-left: 1rem;
        box-shadow: none;
        border: none;
        background: transparent;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Player mobile */
    .player-fixed {
        padding: 0.75rem 1rem;
    }

    .player-content {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    /* Masquer le select sur mobile */
    .station-selector {
        display: none !important;
    }

    /* Masquer les contrôles inutiles sur mobile */
    .player-controls {
        display: none !important;
    }

    /* Contenu */
    main {
        padding: 1rem;
        padding-bottom: 160px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .schedule-logo {
        margin: 0 auto;
    }

    .days-tabs {
        gap: 0.3rem;
    }

    .day-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--accent-magenta);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.visualizer span {
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.visualizer span:nth-child(1) { animation-delay: 0s; }
.visualizer span:nth-child(2) { animation-delay: 0.1s; }
.visualizer span:nth-child(3) { animation-delay: 0.2s; }
.visualizer span:nth-child(4) { animation-delay: 0.3s; }
.visualizer span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

/* Diffuseurs Grid */
.diffuseurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.diffuseur-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(91, 76, 255, 0.3);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.diffuseur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 76, 255, 0.5);
    border-color: var(--accent-cyan);
}

.diffuseur-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 1rem;
}

.diffuseur-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.diffuseur-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.diffuseur-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    margin-top: auto;
}

.diffuseur-link:hover {
    transform: scale(1.05);
}

    /* Now playing - TOUS LES ÉLÉMENTS VISIBLES */
    .now-playing {
        display: flex !important;
        flex: 1 !important;
        min-width: 0 !important;
        gap: 0.5rem !important;
        align-items: center !important;
        flex-direction: row !important;
    }

    /* Dropdown à la fin */
    .station-dropdown {
        display: block !important;
        flex-shrink: 0 !important;
    }

    /* BOUTON PLAY - FORCER L'AFFICHAGE */
    .play-btn {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .play-btn svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
    }

    /* POCHETTE - FORCER L'AFFICHAGE */
    .album-art {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        flex-shrink: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* INFOS CHANSON - FORCER L'AFFICHAGE */
    .song-info {
        flex: 1 !important;
        min-width: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .song-title,
    .song-artist {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: var(--text-light) !important;
    }

    .song-title {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }

    .song-artist {
        font-size: 0.8rem !important;
        color: var(--text-gray) !important;
    }

    /* VISUALIZER - Masqué par défaut, affiché uniquement pendant lecture */
    .visualizer {
        height: 25px;
        flex-shrink: 0 !important;
    }
    
    .visualizer span {
        display: block !important;
    }

/* Grille Chroniques */
.chroniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chronique-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(91, 76, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chronique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 76, 255, 0.4);
}

.chronique-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.chronique-info {
    padding: 1.5rem;
}

.chronique-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.chronique-info p {
    margin: 0.5rem 0;
    color: var(--text-gray);
}

.chronique-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.chronique-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent-purple);
}


/* Station intro avec logo */
.station-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.station-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 12px;
}

.station-description {
    flex: 1;
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .station-intro {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .station-logo {
        width: 100px;
        height: 100px;
    }
    
    .station-description {
        text-align: center;
        font-size: 1rem;
    }
}
