body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff;
}
header {
    background: #1e1e1e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
nav {
    display: flex;
    justify-content: center;
    background: #333;
    padding: 10px 0;
}
nav a {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
}
nav a:hover {
    background: #555;
}
.container {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
footer {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.5);
}
.intro, .artists, .artist-bio, .contact {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #2c2c2c;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.intro img, .artist-bio img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.artist-list {
    list-style: none;
    padding: 0;
}
.artist-list li {
    margin: 10px 0;
}
.artist-list a {
    color: #ff4081;
    text-decoration: none;
    transition: color 0.3s;
}
.artist-list a:hover {
    color: #ff80ab;
}