html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #e0e0e0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 2px;
}

nav {
    padding: 0.5rem 0 0 0;
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

.container {
    padding-top: 120px; 
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #222;
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 2rem;
    text-align: center;
}

p, ul {
    max-width: 800px;
    text-align: center;
    font-size: 1.2rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 0.5rem;
}

#intro { background: #1a1a1a; }
#members { background: #2a2a2a; }
#history { background: #1a1a1a; }
#albums { background: #2a2a2a; }