* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* Conteneur principal */
.radio-container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

/* Carte principale */
.radio-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* En-tête */
.radio-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b9b08f 0%, #817d6c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.logo-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.station-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #b9b08f 0%, #817d6c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.slogan {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Zone player */
.player-wrapper {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05), 0 2px 5px rgba(0,0,0,0.02);
}

/* Cover art animé */
.cover-art {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vinyl-disc {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 0 4px #e2e8f0, 0 0 0 8px #cbd5e1;
    transition: all 0.3s ease;
}

.vinyl-disc i {
    font-size: 3rem;
    color: #e2e8f0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Animation de rotation */
.vinyl-disc.playing {
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Infos station */
.station-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.live-tag i {
    font-size: 0.6rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.station-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.station-description {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* Bouton play/pause */
.playback-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.control-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #b9b08f 0%, #817d6c 100%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

.control-btn:active {
    transform: scale(0.98);
}

/* Volume control */
.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.volume-icon {
    color: #667eea;
    font-size: 0.9rem;
}

input[type="range"] {
    flex: 1;
    height: 5px;
    background: linear-gradient(90deg, #b9b08f 0%, #817d6c 100%);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    border: 2px solid white;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Statut du stream */
.stream-status {
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
    padding: 0.5rem;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stream-status i {
    color: #28a745;
}

/* Section sociale */
.social-section {
    margin-bottom: 1.5rem;
}

.social-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.social-link i {
    font-size: 1.1rem;
}

.social-link span {
    font-size: 0.85rem;
}

.facebook {
    color: #1877f2;
    border: 1px solid #e4e6eb;
}

.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.youtube {
    color: #ff0000;
    border: 1px solid #e4e6eb;
}

.youtube:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Footer */
.radio-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.radio-footer p {
    font-size: 0.7rem;
    color: #adb5bd;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablettes */
@media (max-width: 768px) {
    .radio-card {
        padding: 1.5rem 1.2rem;
    }
    
    .station-name {
        font-size: 1.6rem;
    }
    
    .vinyl-disc {
        width: 100px;
        height: 100px;
    }
    
    .vinyl-disc i {
        font-size: 2.5rem;
    }
    
    .control-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .station-title {
        font-size: 1.2rem;
    }
    
    .social-link {
        padding: 0.5rem 1rem;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

/* Grands mobiles */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .radio-card {
        padding: 1.2rem 1rem;
        border-radius: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 1.4rem;
    }
    
    .station-name {
        font-size: 1.4rem;
    }
    
    .slogan {
        font-size: 0.8rem;
    }
    
    .player-wrapper {
        padding: 1rem;
    }
    
    .vinyl-disc {
        width: 80px;
        height: 80px;
    }
    
    .vinyl-disc i {
        font-size: 2rem;
    }
    
    .control-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .station-title {
        font-size: 1rem;
    }
    
    .station-description {
        font-size: 0.75rem;
    }
    
    .volume-wrapper {
        padding: 0.4rem 0.8rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.4rem 0.8rem;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .social-link span {
        font-size: 0.7rem;
    }
    
    .stream-status {
        font-size: 0.7rem;
    }
}

/* Petits mobiles */
@media (max-width: 380px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 80%;
        justify-content: center;
    }
    
    .station-name {
        font-size: 1.2rem;
    }
    
    .control-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Support paysage sur mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .radio-container {
        max-width: 600px;
    }
    
    .player-wrapper {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .cover-art {
        grid-row: span 3;
        margin-bottom: 0;
    }
    
    .station-info {
        text-align: left;
        margin-bottom: 0;
    }
    
    .playback-controls {
        margin-bottom: 0;
        justify-content: flex-start;
    }
    
    .volume-wrapper {
        margin-bottom: 0;
    }
    
    .stream-status {
        grid-column: 2;
    }
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-card {
    animation: fadeInUp 0.6s ease-out;
}