* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    transition: background 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.bio {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: -30px auto 0;
    padding: 0 20px 60px;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section h2 i {
    font-size: 1.6rem;
}

/* Grille des liens */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Cartes de liens */
.link-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.link-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.link-card:hover .card-icon {
    transform: scale(1.1);
}

.card-info {
    flex: 1;
}

.card-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.card-info p {
    font-size: 0.85rem;
    color: #666;
}

.link-card i:last-child {
    font-size: 20px;
    color: #999;
    transition: transform 0.3s ease;
}

.link-card:hover i:last-child {
    transform: translateX(5px);
}

/* Couleurs spécifiques pour chaque plateforme */
.spotify { color: #1DB954; }
.spotify .card-icon { background: rgba(29, 185, 84, 0.1); }

.deezer { color: #FEAA2D; }
.deezer .card-icon { background: rgba(254, 170, 45, 0.1); }

.apple { color: #FA243C; }
.apple .card-icon { background: rgba(250, 36, 60, 0.1); }

.youtube { color: #FF0000; }
.youtube .card-icon { background: rgba(255, 0, 0, 0.1); }

.amazon { color: #00A8E1; }
.amazon .card-icon { background: rgba(0, 168, 225, 0.1); }

.tidal { color: #000000; }
.tidal .card-icon { background: rgba(0, 0, 0, 0.05); }

.itunes { color: #FB5BC5; }
.itunes .card-icon { background: rgba(251, 91, 197, 0.1); }

.bandcamp { color: #629AA9; }
.bandcamp .card-icon { background: rgba(98, 154, 169, 0.1); }

.google { color: #4285F4; }
.google .card-icon { background: rgba(66, 133, 244, 0.1); }

.qobuz { color: #0885B9; }
.qobuz .card-icon { background: rgba(8, 133, 185, 0.1); }

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.theme-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mode sombre */
body.dark-mode {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body.dark-mode .hero {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
}

body.dark-mode .link-card {
    background: #334155;
}

body.dark-mode .card-info h3 {
    color: #f1f5f9;
}

body.dark-mode .card-info p {
    color: #94a3b8;
}

body.dark-mode .link-card i:last-child {
    color: #64748b;
}



/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .bio {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .link-card {
        padding: 16px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px 40px;
    }
    
    .hero {
        padding: 40px 15px 30px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}