/* Roy's Picks — shared stylesheet */

:root {
    --bg: #0a0a0a;
    --card: #161616;
    --text: #e8e8e8;
    --text-dim: #666;
    --text-mid: #999;
    --border: #1e1e1e;
    --red: #e84040;
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
}

/* Typography */
h1 {
    font-family: 'Unbounded', cursive;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

h1 .picks, h1 .issue-num {
    display: block;
    color: var(--red);
    font-size: 4rem;
}

h2 {
    font-family: 'Unbounded', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.tagline, .intro {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.date {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 2rem 0;
}

/* Genre tags */
.genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.genre-tag {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Album cards */
.album-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s;
}

.album-card:hover {
    border-color: #444;
}

.album-cover-link {
    display: block;
}

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

.album-info {
    padding: 1.25rem;
}

.album-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.album-artist {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.album-description {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.album-reason {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.spotify-link {
    display: inline-block;
    color: var(--red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.spotify-link:hover {
    text-decoration: underline;
}

/* Issue list (landing page) */
.issues-header {
    font-family: 'Unbounded', cursive;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-weight: 400;
}

.issues {
    list-style: none;
}

.issues li {
    border-top: 1px solid var(--border);
}

.issues li:last-child {
    border-bottom: 1px solid var(--border);
}

.issues a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0.25rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.issues a:hover {
    color: var(--red);
    padding-left: 0.5rem;
}

.issue-number {
    font-family: 'Unbounded', cursive;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 0.75rem;
}

.issue-title {
    font-size: 1rem;
    font-weight: 400;
    flex: 1;
}

.issue-date {
    color: var(--text-dim);
    font-size: 0.8rem;
    white-space: nowrap;
    margin-left: 1.5rem;
}

.issue-arrow {
    color: var(--text-dim);
    margin-left: 0.75rem;
    transition: transform 0.2s;
}

.issues a:hover .issue-arrow {
    transform: translateX(3px);
    color: var(--red);
}

/* Back link */
.back-link {
    display: inline-block;
    color: var(--red);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.back-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.8rem;
    line-height: 1.8;
}

footer a {
    color: var(--red);
    text-decoration: none;
}

footer a:hover { text-decoration: underline; }

footer.centered { text-align: center; }
