@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
:root{
    --bg: #0a0a0b;
    --box-bg: #111113;
    --text: #e4e4e7;
    --border: #a78bfa;
}

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

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.page-container {
    width: 100%;
    max-width: 1200px;
}

/* --- Navigation Styles --- */
.top-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1); /* Subtle purple line */
}

.nav-links {
    display: flex;
    gap: 40px; /* Spacing between links */
}

.nav-links a {
    font-family: 'JetBrains Mono', monospace;
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--border);
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* --- Header Styles --- */
.main-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.main-header h2 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
}

/* --- Content Layout --- */
.content-wrapper {
    display: flex;
    justify-content: space-between;
}

.info-box {
    background-color: var(--box-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    width: 350px; /* Fixed width for consistency */
    min-height: 400px;
}

.metadata {
    margin-left: 5%; 
}

.metadata h3 {
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 20px;
}

.metadata p {
    font-family: 'Verdana', sans-serif;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.spacer {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cover-art {
    max-width: 200px;
    height: auto;
}

.downloads {
    margin-right: 5%;
}

.downloads h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 500;
}

.downloads ul {
    list-style: none;
}

.downloads li {
    margin-bottom: 15px;
    text-align: center;
}

.downloads a {
    text-decoration: none;
    color: inherit;
    font-family: 'JetBrains Mono', monospace;
}

.downloads a:hover {
    color: var(--border);
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .info-box {
        width: 90%;
        min-height: auto;
        margin: 0;
    }

    .nav-links {
        gap: 20px;
    }
}