* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #0a0a0a;
    background-image: url("grain-texture.png");
    background-size: cover;
    background-repeat: repeat;
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
header {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff0040;
}

/* Hero section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 5rem;
    letter-spacing: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 10px 0;
    color: #ccc;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1rem;
    color: #999;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.socials {
    margin-bottom: 10px;
}

.socials a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
}

.socials a:hover {
    color: #ff0040;
}

.music-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.music-section h1 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.music-widget {
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.right-align {
    margin-left: auto;
    margin-right: 0;
    width: 400px;
}

.center-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-content {
    padding-top: 80px;
}
