:root {
    --bg: #121212;
    --bg-light: #1a1a1a;
    --text: #e0e0e0;
    --muted: #888;
    --accent: #EBEBEB;
    --border: #222;
}

/* Global Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0F0F1A;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.logo {
    font-size: 22px;
    font-weight: 500;
    color: white;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-container:hover .header-logo,
.logo-container:hover .logo {
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(20, 20, 40, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(3px);
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    color: #CCC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    padding: 0 5px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #4FC3F7, #F59E0B);
    transition: width 0.3s;
}

nav a:hover {
    color: white;
}

nav a:hover::after {
    width: 100%;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 80px 20px 40px;
}

.page-header h1 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.back-link {
    color: #CCC;
    margin-bottom: 20px;
}

.back-link:hover {
    color: #EBEBEB;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 50px;
    position: relative;
    font-size: 14px;
    color: #AAA;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #4FC3F7, #F59E0B);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #CCC;
    margin: 0 15px;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

/* Focus States for Accessibility */
a:focus, .bandcamp-btn:focus {
    outline: 2px solid var(--accent);
}

/* Image Optimization */
img {
    width: 100%;
    height: auto;
}