:root {
    --text-color: white;
    --link-color: rgba(128, 128, 128, 1);
    --link-glow: 0 0 10px white;
    --bg-tint: rgba(0, 0, 0, 0.4);
    --lsp: 5px;
}

@font-face {
    font-family: "Old English Five";
    src: url("/fonts/OldEnglishFive.ttf") format("truetype");
}

@font-face {
    font-family: "Times New Roman";
    src: url("/fonts/Times New Roman.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color: var(--text-color);
    background: url(/img/A-Rainy-mountain-view-in-the-Scottish-Highlands-by-David-Gibbeson.jpg);
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    font-family: "Times New Roman", serif;
    padding: 4%;
}

body {
    max-width: 500px;
    margin: auto;
    min-height: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.cover-image {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.content {
    padding: 1.5rem;
}

.meta {
    text-align: left;
    margin-bottom: 1.5rem;
}

.artist {
    font-size: 0.9em;
    color: var(--link-color);
    margin-bottom: 0.25rem;
}

.title {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.links {
    list-style: none;
}

.links li {
    margin-bottom: 0.5rem;
}

.links li:last-child {
    margin-bottom: 0;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--text-color);
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.2);
    transition: all 0.3s;
}

.links a:hover {
    background: rgba(128, 128, 128, 0.2);
    text-shadow: var(--link-glow);
}

.platform-info {
    display: flex;
    align-items: center;
}

.links i {
    font-size: 1.1em;
    margin-right: 0.75rem;
    width: 20px;
}

.platform-action {
    font-size: 0.85em;
    color: var(--link-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo {
    padding: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
