:root {
    --aged-paper: #f4f1ea;
    --ink-black: #1a1a1a;
    --border-lines: 3px double #1a1a1a;
    --font-masthead: 'Chomsky', 'UnifrakturMaguntia', serif;
    /* Fallback for gothic */
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Merriweather', serif;
    --column-gap: 2rem;
}

body {
    background-color: var(--aged-paper);
    color: var(--ink-black);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    /* Subtle texture */
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Playfair+Display:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

.masthead {
    font-family: var(--font-masthead);
    font-size: 4rem;
    text-align: center;
    border-bottom: var(--border-lines);
    border-top: var(--border-lines);
    padding: 1rem 0;
    margin: 2rem 0;
    line-height: 1;
}

.sub-masthead {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink-black);
    padding: 5px 0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
}

h1.headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h2.sub-headline {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid black;
    display: inline-block;
}

/* Layout Columns */
.newspaper-cols {
    column-count: 2;
    column-gap: 2rem;
    column-rule: 1px solid #ccc;
}

/* Components */
.weather-widget {
    border: 2px solid black;
    padding: 1rem;
    text-align: center;
    background: white;
}

.weather-icon {
    font-size: 2.5rem;
    margin: 10px 0;
}

.classifieds-box {
    border: 1px dashed black;
    padding: 1rem;
    margin-top: 2rem;
    background: #fffdf5;
}

.coupon-cutout {
    border: 2px dashed black;
    padding: 2rem;
    position: relative;
    background: white;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.btn-news {
    background: black;
    color: white;
    font-family: var(--font-headline);
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

.btn-news:hover {
    background: #333;
    color: white;
    text-decoration: none;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-retro {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #f4f1ea;
    border: 2px solid #f4f1ea;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Images */
.grainy-photo {
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
    border: 1px solid black;
    padding: 5px;
    background: white;
    max-width: 100%;
}

.photo-caption {
    font-size: 0.8rem;
    font-style: italic;
    color: #444;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .newspaper-cols {
        column-count: 1;
    }

    .masthead {
        font-size: 2.5rem;
    }

    h1.headline {
        font-size: 2.5rem;
    }
}