* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ff3366;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff3366;
}

.hero {
    height: 75vh;
    /* Remplacement du fond par une ambiance urbaine et sombre texturée style TATASANDO */
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1601042879364-f3947d3f9c16?q=80&w=1000') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    letter-spacing: 6px;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #eee;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff3366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #e02454;
    transform: scale(1.05);
}

.music-section {
    padding: 60px 5%;
    text-align: center;
}

.music-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.platform-card {
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, background-color 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.spotify:hover { background-color: #1DB954; }
.apple:hover { background-color: #fc3c44; }
.soundcloud:hover { background-color: #ff5500; }
.discord:hover { background-color: #5865F2; }
.instagram:hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); 
}

.player-container {
    margin-top: 50px;
    background: #161616;
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.player-container h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #ff3366;
}

.audio-player {
    margin-top: 10px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
}

footer {
    text-align: center;
    padding: 25px;
    background-color: #000;
    color: #555;
    font-size: 0.9rem;
}