/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-loader {
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(220, 20, 60, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(220, 20, 60, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 30px rgba(220, 20, 60, 0.5); }
}

@keyframes fade-in-out {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes pulse-live {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ===== LOADER DE DÉMARRAGE ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: #ffffff;
}

.loader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 30px;
    animation: pulse-loader 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
}

.loader-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fade-in-out 2s ease-in-out infinite;
}

.loader-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #dc143c);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #dc143c;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-brand .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.current-track-nav {
    font-size: 14px;
    color: #ffd700;
    font-weight: 500;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

/* Dropdown navigation */
.nav-item {
    position: relative;
}

.nav-item > .nav-link::after {
    content: '▼';
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item:hover > .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.auth-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-auth {
    display: flex;
}

.nav-auth-section {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.auth-btn {
    background: transparent;
    border: 1.5px solid #ffd700;
    color: #ffd700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.auth-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-1px);
}

.auth-btn.register-btn {
    background: #ffd700;
    color: #000000;
}

.auth-btn.register-btn:hover {
    background: transparent;
    color: #ffd700;
}

.auth-btn.logout-btn {
    border-color: #dc143c;
    color: #dc143c;
    font-size: 10px;
}

.auth-btn.logout-btn:hover {
    background: #dc143c;
    color: #ffffff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 22px;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    min-height: 35px;
}

.user-name {
    color: #ffd700;
    font-weight: 700;
    font-size: 12px;
    text-transform: capitalize;
}

/* Menu utilisateur déroulant */
.user-menu {
    position: relative;
}

.user-name-container {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.user-name-container:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: white;
}

.user-menu.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.user-dropdown-link:hover {
    background-color: #f8f9fa;
}

.user-dropdown-link:last-child {
    border-bottom: none;
}

.logout-link {
    color: #dc3545 !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 4px;
}

.social-link:hover {
    color: #ffd700;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('https://media.gqmagazine.fr/photos/5b990ffa479e940011a6f053/16:9/w_1280,c_limit/johnny_hallyday___50_ans_de_style__les_tops_et_les_flops_5315.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin: 40px 0;
}

.hero-logo .logo-circle,
.logo-circle {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 40px;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #ffd700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* ===== WIDGETS ===== */
.radio-widget {
    --primary-black: #0a0a0a;
    --gold-primary: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #fff700 100%);
    --accent-gold: #ffd700;
    --text-gold: #e6c068;
    --glass-bg: rgba(42, 42, 42, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    width: 100%;
    max-width: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
    cursor: pointer;
}

.radio-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-primary);
}

.widget-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.widget-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37 !important;
    animation: pulse 2s infinite;
}

.widget-subtitle,
.widget-subtitle1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.widget-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    color: #e6c068 !important;
}

.widget-platforms {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.platform-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #d4af37 !important;
}

.platform-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.widget-cta {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-black);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.widget-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Widget Planning */
.planning-widget {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    min-height: 80vh;
    width: 100%;
    margin: 0;
    max-width: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.widget-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #000000;
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.live-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

.current-program {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 16px;
    padding: 16px;
    border-radius: 12px;
}

.current-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffd700;
}

.week-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
    background: rgba(255, 215, 0, 0.05);
}

.day-button {
    min-width: 80px;
    padding: 12px 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    user-select: none;
}

.day-button:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.day-button.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #000000;
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    font-weight: bold;
}

.day-name {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
    opacity: 0.8;
}

.day-date {
    font-size: 16px;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffd700;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Couleurs des catégories */
.category-concert { 
    background: rgba(220, 20, 60, 0.2); 
    color: #ff6b6b; 
    border: 1px solid rgba(220, 20, 60, 0.3);
}
.category-annees { 
    background: rgba(255, 215, 0, 0.2); 
    color: #ffd700; 
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.category-history { 
    background: rgba(138, 43, 226, 0.2); 
    color: #ba68c8; 
    border: 1px solid rgba(138, 43, 226, 0.3);
}
.category-special { 
    background: rgba(255, 140, 0, 0.2); 
    color: #ff8c00; 
    border: 1px solid rgba(255, 140, 0, 0.3);
}
.category-studio { 
    background: rgba(50, 205, 50, 0.2); 
    color: #32cd32; 
    border: 1px solid rgba(50, 205, 50, 0.3);
}

/* ===== PLAYER SECTION ===== */
.player-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid #ffd700;
    padding: 20px;
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.album-art {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dc143c 0%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.track-info {
    min-width: 0;
}

.track-title {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 12px;
    color: #ffd700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.player-btn:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.play-pause-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: #ffffff;
    font-size: 18px;
    border: 2px solid #ffd700;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    transform: scale(1.05);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: #333333;
    outline: none;
    border-radius: 2px;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
}

/* ===== SECTIONS ===== */
.about-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
    z-index: 3;
}

.contact-section {
    padding: 80px 0;
    background: #000000;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Suite du CSS - Fin du fichier */

.floating-heart-btn {
    position: fixed;
    bottom: 130px;
    right: 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border: 2px solid #ffd700;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-heart-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8) !important;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%) !important;
    color: #000000 !important;
}

.heart-tooltip {
    position: absolute !important;
    top: -45px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 0, 0, 0.9) !important;
    color: #ffd700 !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
    border: 1px solid #ffd700 !important;
    z-index: 1002 !important;
}

.floating-heart-btn:hover .heart-tooltip {
    opacity: 1 !important;
}

/* ===== BOUTONS DE PARTAGE SOCIAL ===== */
.social-share {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.linkedin { background: #0077B5; }
.share-btn.copy { background: #666; }
.share-btn.mail { background: #FF0000; }

/* ===== CAROUSEL DÉDICACES ===== */
.dedicaces-carousel {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 800;
}

.carousel-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.carousel-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.view-all-link {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* ===== MODAL DU MUR DES COEURS ===== */
.heart-wall-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.heart-wall-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    position: relative;
}

.close-heart-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffd700;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-heart-modal:hover {
    color: #dc143c;
    transform: scale(1.1);
}

.heart-wall-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.heart-wall-title {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 2px solid #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #666666;
    font-size: 14px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.made-with {
    color: #999999;
    font-size: 12px;
}

.made-with i {
    color: #dc143c;
}

/* ===== RESPONSIVE - TABLETTES ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }
    
    .current-track-nav {
        max-width: 180px;
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu.active .nav-auth-section {
        display: block;
    }
    
    .desktop-auth {
        display: none !important;
    }
    
    /* Sous-menus toujours ouverts sur tablette */
    .nav-menu .dropdown-menu {
        position: static;
        display: block !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    
    .nav-menu .nav-item {
        margin-bottom: 15px;
    }
    
    .nav-menu .nav-link {
        padding: 12px 16px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 8px;
    }
    
    .nav-menu .dropdown-link {
        padding: 10px 20px;
        margin-left: 16px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 5px;
        border-left: 3px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .social-share {
        right: 15px;
        gap: 8px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ===== RESPONSIVE - MOBILES ===== */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 15px;
        height: 60px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-sizing: border-box;
    }
    
    .nav-brand {
        position: absolute;
        left: 15px;
        display: flex;
        align-items: center;
    }

    .nav-brand .logo img {
        height: 40px;
        width: auto;
    }
    
    .current-track-nav {
        display: none !important;
    }

    .nav-actions {
        position: absolute;
        right: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-actions .desktop-auth {
        display: none !important;
    }

    .nav-actions .social-links {
        display: flex;
        gap: 6px;
    }

    .social-link {
        font-size: 12px;
        padding: 4px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffd700;
        transition: color 0.3s ease;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px;
        gap: 30px;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 998;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active .nav-auth-section {
        display: block;
    }

    .nav-auth-section {
        padding: 20px 30px;
        border-bottom: 2px solid rgba(255, 215, 0, 0.2);
        margin-bottom: 10px;
    }
    
    .nav-auth-section .auth-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    
    .nav-auth-section .auth-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 20px;
    }

    /* Sous-menus toujours ouverts sur mobile */
    .nav-menu .dropdown-menu {
        position: static !important;
        display: block !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        margin-top: 10px !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        border: none !important;
    }
    
    .nav-menu .nav-item {
        margin-bottom: 15px;
    }
    
    .nav-menu .nav-link {
        padding: 12px 16px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        margin-bottom: 8px !important;
    }
    
    .nav-menu .dropdown-link {
        padding: 10px 20px !important;
        margin-left: 16px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        margin-bottom: 5px !important;
        border-left: 3px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .nav-menu .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.15) !important;
    }

    /* Menu utilisateur mobile - même style que les autres menus */
    .user-nav-item {
        margin-bottom: 15px;
    }
    
    .user-nav-header {
        padding: 12px 16px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        margin-bottom: 8px !important;
        color: white !important;
        text-decoration: none !important;
        display: block !important;
    }
    
    .user-nav-item .dropdown-menu {
        display: block !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        border: none !important;
    }
    
    .user-nav-item .dropdown-link {
        padding: 10px 20px !important;
        margin-left: 16px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        margin-bottom: 5px !important;
        border-left: 3px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
        text-decoration: none !important;
        display: block !important;
    }
    
    .user-nav-item .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.15) !important;
    }
    
    .user-nav-item .logout-link {
        color: #ff6b6b !important;
        border-left-color: #ff6b6b !important;
    }

    .hero {
        margin-top: 60px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                          url('https://i.pinimg.com/236x/ba/79/32/ba79325125d9f7f9119a9a454dd25342.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .player-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 10px 15px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .now-playing {
        position: absolute;
        left: 15px;
        flex: none;
        min-width: auto;
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 140px;
    }

    .album-art {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #d32f2f, #b71c1c);
        border-radius: 6px;
        color: white;
        font-size: 18px;
        flex-shrink: 0;
    }

    .track-info {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        flex: 1;
    }

    .track-title {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .track-artist {
        font-size: 10px;
        color: #ffd700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    .player-controls {
        flex: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .play-pause-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .player-info {
        position: absolute;
        right: 15px;
        flex: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .volume-slider {
        width: 50px;
        height: 4px;
    }

    .floating-heart-btn {
        bottom: 110px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }

    .planning-widget {
        text-align: center;
        padding: 20px 15px;
        margin: 0 15px 40px;
    }

    .radio-widget {
        margin: 1rem 0;
        padding: 1.5rem;
    }

    .social-share {
        right: 5px;
        top: 50%;
        z-index: 997;
    }

    .share-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .contact-section h2 {
        font-size: 2rem;
    }
}

/* ===== ÉCRANS TRÈS PETITS (480px et moins) ===== */
@media (max-width: 480px) {
    .navbar {
        padding: 8px 12px;
        height: 55px;
    }

    .hero {
        margin-top: 55px;
    }

    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }

    .player-container {
        padding: 8px 12px;
    }

    .album-art {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .track-title {
        font-size: 11px;
    }

    .track-artist {
        font-size: 9px;
    }

    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .share-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .container {
        padding: 0 10px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}

/* ===== DESKTOP - MENU UTILISATEUR ===== */
@media (min-width: 1025px) {
    .nav-auth-section {
        display: none;
    }
    
    .desktop-auth {
        display: flex !important;
    }
    
    .user-nav-item {
        display: none;
    }
    
    .nav-menu .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-item:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


