:root {
    --bg: #ffffff;
    --text: #111111;
    --subtext: #666666;
    --link-bg: #f0f0f0;
    --link-hover: #dddddd;
}

@media (prefers-color-scheme: dark) {
    :root {
    --bg: #121212;
    --text: #ffffff;
    --subtext: #aaaaaa;
    --link-bg: #222222;
    --link-hover: #333333;
    }
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: var(--bg);
    color: var(--text);
    text-align: center;
}

header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blurred-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image-url);
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.8);
    transform: scale(1.1);
    z-index: 1;
}

.album-art {
    position: relative;
    z-index: 2;
    margin-top: -150px;
}

.album-art img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background-color: var(--bg);
}

.info {
    margin-top: 20px;
}

.info h1 {
    font-size: 2em;
    margin: 0.2em 0;
}

.info h2 {
    font-weight: normal;
    color: var(--subtext);
    margin: 0.2em 0 1em 0;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 1.5em;
}

.links.links--row {
    flex-direction: row;
    justify-content: center;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    background: var(--link-bg);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9em;
    transition: background 0.2s;
}

.links a:hover {
    background: var(--link-hover);
}

.links i {
    font-size: 1.1em;
}

.release-date {
    font-size: 0.9em;
    color: var(--subtext);
    margin-bottom: 2em;
}

@media (max-width: 500px) {
    .album-art img {
    width: 140px;
    height: 140px;
    }

    .info h1 {
    font-size: 1.5em;
    }

    .links a {
    font-size: 0.8em;
    padding: 6px 10px;
    }
}