/* Variables - Thème moderne bleu/violet */
:root {
    --primary: #6366f1;      /* Indigo */
    --secondary: #ec4899;    /* Rose */
    --accent: #06b6d4;       /* Cyan */
    --gold: #FFD700;         /* Or */
    --gold-light: #FFEA00;   /* Or clair */
    --black: #1a1a1a;
    --white: #ffffff;
    --dark-bg: #0f0f23;      /* Fond sombre bleuté */
    --dark-card: #16213e;    /* Fond cartes */
}

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

/* Badge de version (tests uniquement) */
.version-badge {
    position: fixed;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 9999;
    font-family: monospace;
    pointer-events: none;
}

html {
    background: var(--dark-bg);
    min-height: 100%;
    min-height: -webkit-fill-available;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    background-attachment: scroll;
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Étoiles / Points blancs dans le fond */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 35%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 55%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 65%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 85%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 75%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 5% 90%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 25%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 5%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 95%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 8% 42%, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(15, 15, 35, 0.98) 100%);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* S'assurer que le contenu est au-dessus des étoiles */
.main-content,
.footer {
    position: relative;
    z-index: 1;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.3);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.7), 0 0 60px rgba(236, 72, 153, 0.4); }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: bold;
}

.logo-platine {
    font-size: 12px;
    font-family: 'Orbitron', sans-serif;
}

.logo-number {
    font-size: 24px;
    font-family: 'Orbitron', sans-serif;
}

.tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.nav-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 32px;
    height: 32px;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Couleurs spécifiques réseaux sociaux */
.social-link[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.social-link[aria-label="Instagram"]:hover {
    color: #e4405f;
}

.social-icon {
    width: 100%;
    height: 100%;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Player Section */
.player-section {
    margin-bottom: 60px;
}

.player-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.player-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--gold);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.5);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.now-playing {
    display: flex;
    gap: 30px;
    align-items: center;
}

.album-art {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(236, 72, 153, 0.2);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.track-info {
    flex: 1;
}

.track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.track-artist {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.9;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.5);
}

.play-btn svg {
    width: 28px;
    height: 28px;
}

.play-btn .pause-icon {
    display: none;
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: block;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
}

/* History Section */
.history-section {
    margin-top: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.history-container {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.history-list {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 120px;
}

.history-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    transform: translateX(5px);
    border-left-color: var(--secondary);
}

.history-item.loading {
    justify-content: center;
    padding: 30px;
    color: var(--gold);
}

.history-cover {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.history-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

.history-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    line-height: 1.4;
}

.history-artist {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    line-height: 1.4;
}

.history-time {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 90px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(15, 15, 35, 0.98) 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Scrollbar */
.history-list::-webkit-scrollbar {
    width: 8px;
}

.history-list::-webkit-scrollbar-track {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
}

.history-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* ======================== */
/* Section Planning         */
/* ======================== */

.schedule-section {
    margin-top: 60px;
    scroll-margin-top: 120px;
}

.schedule-container {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.schedule-day {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 15, 35, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.schedule-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.schedule-day.weekend {
    border-color: rgba(255, 215, 0, 0.5);
}

.schedule-day.today {
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.day-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 12px 10px;
    text-align: center;
}

.schedule-day.weekend .day-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
}

.day-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-slots {
    padding: 12px 8px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Émissions = Violet/Rose */
.time-slot {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(147, 51, 234, 0.2) 100%);
    border-radius: 8px;
    padding: 10px 8px;
    border-left: 3px solid var(--secondary);
    transition: all 0.3s;
}

.time-slot:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35) 0%, rgba(147, 51, 234, 0.3) 100%);
    transform: scale(1.02);
}

/* Musique Non-Stop = Bleu */
.time-slot.empty {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-left-color: var(--primary);
    opacity: 0.8;
}

.time-slot.empty:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(6, 182, 212, 0.25) 100%);
}

/* Émissions spéciales (même style violet) */
.time-slot.special {
    border-left-color: var(--secondary);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(147, 51, 234, 0.2) 100%);
}

.time-slot.full-day {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Jour actuel */
.schedule-day.current-day .day-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.schedule-day.current-day .day-name {
    color: var(--black);
    font-weight: 900;
}

/* Créneau actuel */
.time-slot.current-slot {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(236, 72, 153, 0.25) 100%) !important;
    border-left-color: var(--gold) !important;
    border-left-width: 4px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1);
    animation: pulse-slot 2s ease-in-out infinite;
    transform: scale(1.02);
}

.time-slot.current-slot .slot-time {
    color: var(--gold);
    font-weight: 700;
}

.time-slot.current-slot .slot-content {
    color: var(--white);
    font-weight: 600;
}

@keyframes pulse-slot {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5), inset 0 0 30px rgba(255, 215, 0, 0.2);
    }
}

.slot-time {
    display: block;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.slot-content {
    display: block;
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
}

.slot-host {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
    font-style: italic;
}

/* ======================== */
/* Section Qui sommes-nous  */
/* ======================== */

.about-section {
    margin-top: 60px;
    scroll-margin-top: 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    align-items: stretch;
}

.about-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 450px;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.about-card.about-main {
    grid-column: span 1;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
    flex-shrink: 0;
}

.about-card-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.about-card-content::-webkit-scrollbar {
    width: 6px;
}

.about-card-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.about-card-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* ======================== */
/* Section Équipe           */
/* ======================== */

.team-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.team-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.team-member {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    padding: 3px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.member-avatar.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.member-role {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.member-bio {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
}

/* ======================== */
/* Section Contact          */
/* ======================== */

.contact-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.contact-section > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
}

.contact-icon {
    font-size: 24px;
}

/* ======================== */
/* Scroll margin pour nav   */
/* ======================== */

#player {
    scroll-margin-top: 120px;
}

#history {
    scroll-margin-top: 120px;
}

/* ======================== */
/* Responsive               */
/* ======================== */

@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .schedule-day:nth-child(7) {
        grid-column: span 1;
    }
    
    .team-member {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        height: auto;
        max-height: none;
    }
    
    .about-card-content {
        overflow-y: visible;
    }
    
    .about-card.about-main {
        grid-column: span 1;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Mini Player - Barre fixe en bas */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.98) 0%, rgba(15, 15, 35, 0.99) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.mini-player-track {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.mini-cover {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mini-info {
    min-width: 0;
    flex: 1;
}

.mini-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.mini-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
}

.mini-play-btn svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.mini-play-btn .pause-icon {
    display: none;
}

.mini-play-btn.playing .play-icon {
    display: none;
}

.mini-play-btn.playing .pause-icon {
    display: block;
}

.mini-volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.mini-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.5);
    transition: transform 0.2s;
}

.mini-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.mini-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.5);
}

/* Ajouter un padding en bas du body pour le mini-player */
body {
    padding-bottom: 70px;
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
    }
    
    /* Ligne 1: Logo + Tagline à gauche, Réseaux sociaux à droite */
    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .tagline {
        font-size: 11px;
        max-width: 120px;
        line-height: 1.2;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 24px;
        height: 24px;
    }
    
    /* Ligne 2: Navigation centrée sur toute la largeur */
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 6px;
        margin-top: 5px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 6px 10px;
        white-space: nowrap;
    }
    
    /* Mini player mobile */
    .mini-player {
        height: 60px;
        padding: 0 10px;
    }
    
    .mini-cover {
        width: 42px;
        height: 42px;
    }
    
    .mini-title {
        font-size: 12px;
    }
    
    .mini-artist {
        font-size: 10px;
    }
    
    .mini-player-controls {
        padding: 0 15px;
    }
    
    .mini-play-btn {
        width: 40px;
        height: 40px;
    }
    
    .mini-play-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .mini-volume-slider {
        width: 60px; /* Plus petit sur mobile */
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .now-playing {
        flex-direction: column;
        text-align: center;
    }
    
    .album-art {
        width: 150px;
        height: 150px;
    }
    
    .track-title {
        font-size: 22px;
    }
    
    .track-artist {
        font-size: 16px;
    }
    
    .player-controls {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .history-item {
        flex-wrap: wrap;
        gap: 15px;
        min-height: 140px;
        padding: 15px;
    }
    
    .history-cover {
        width: 80px;
        height: 80px;
    }
    
    .history-info {
        flex: 1;
        min-width: 150px;
    }
    
    .history-title {
        font-size: 16px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .history-artist {
        font-size: 14px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.3;
    }
    
    .history-time {
        font-size: 14px;
        min-width: auto;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-day:nth-child(7) {
        grid-column: span 2;
    }
    
    .day-name {
        font-size: 12px;
    }
    
    .slot-time {
        font-size: 10px;
    }
    
    .slot-content {
        font-size: 11px;
    }
    
    .slot-host {
        font-size: 9px;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        padding: 20px 15px;
    }
    
    .team-grid {
        gap: 15px;
    }
    
    .member-avatar {
        width: 90px;
        height: 90px;
    }
    
    .team-member h4 {
        font-size: 16px;
    }
    
    .member-bio {
        font-size: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    #player, #history, #schedule, #about {
        scroll-margin-top: 140px;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-circle {
        width: 42px;
        height: 42px;
    }
    
    .tagline {
        font-size: 9px;
        max-width: 100px;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
    }
    
    .nav {
        gap: 4px;
        margin-top: 4px;
    }
    
    .nav-link {
        font-size: 9px;
        padding: 5px 7px;
        border-radius: 6px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .player-card, .history-container, .schedule-container {
        padding: 20px 15px;
    }
    
    .album-art {
        width: 120px;
        height: 120px;
    }
    
    .track-title {
        font-size: 18px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-day:nth-child(7) {
        grid-column: span 1;
    }
    
    .team-member {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 15px;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .team-member-info {
        flex: 1;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .contact-section {
        padding: 25px 15px;
    }
    
    .contact-title {
        font-size: 22px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    #player, #history, #schedule, #about {
        scroll-margin-top: 140px;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .header .container {
        padding: 6px 8px;
    }
    
    .logo-circle {
        width: 38px;
        height: 38px;
    }
    
    .tagline {
        font-size: 8px;
        max-width: 80px;
    }
    
    .social-link {
        width: 20px;
        height: 20px;
    }
    
    .nav-link {
        font-size: 8px;
        padding: 4px 6px;
    }
    
    #player, #history, #schedule, #about {
        scroll-margin-top: 130px;
    }
}
