body {
    margin: 0;
    padding: 0;
    background-color: #e8e0d0;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c2c2c;
    line-height: 1.6;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139,69,19,0.08) 2px,
            rgba(139,69,19,0.08) 4px
        ),
        radial-gradient(circle at 20% 80%, rgba(139,69,19,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139,69,19,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139,69,19,0.03) 0%, transparent 30%);
    background-size: 100% 100%, 600px 600px, 800px 800px, 400px 400px;
}

.newspaper-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f2ebde;
    box-shadow: 0 0 30px rgba(0,0,0,0.3), inset 0 0 100px rgba(139,69,19,0.1);
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(139,69,19,0.15) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(139,69,19,0.12) 0%, transparent 25%),
        radial-gradient(circle at 60% 10%, rgba(139,69,19,0.08) 0%, transparent 20%),
        linear-gradient(45deg, transparent 49%, rgba(139,69,19,0.03) 50%, transparent 51%);
    background-size: 800px 800px, 600px 600px, 400px 400px, 20px 20px;
}

.newspaper-container::before,
.newspaper-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, rgba(139,69,19,0.2), rgba(139,69,19,0.1), transparent);
    pointer-events: none;
}

.newspaper-container::before {
    left: 0;
}

.newspaper-container::after {
    right: 0;
    transform: rotate(180deg);
}

.header {
    text-align: center;
    padding: 20px;
    border-bottom: 3px double #333;
    background-color: #f2ebde;
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(139,69,19,0.1) 0%, transparent 40%),
        linear-gradient(90deg, transparent 30%, rgba(139,69,19,0.02) 50%, transparent 70%);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 10px;
    padding: 0 20px;
}

.weather {
    font-style: italic;
}

.edition-info {
    text-align: right;
}

.header h1 {
    font-size: 72px;
    margin: 0;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: 'Times New Roman', 'Georgia', serif;
    text-shadow: 2px 2px 0 #ddd;
    position: relative;
}

.tagline {
    font-size: 16px;
    font-style: italic;
    margin-top: 5px;
}

.date-price {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.stock-ticker {
    padding: 10px;
    background: #333;
    color: #fff;
    font-family: monospace;
    overflow: hidden;
    white-space: nowrap;
}

.stock-ticker-content {
    display: inline-block;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

.main-content {
    padding: 20px;
}

.main-article {
    max-width: 1000px;
    margin: 0 auto;
}

.article-headline {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.article-image {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    position: relative;
    filter: grayscale(100%) contrast(1.2) brightness(1.1);
    border: 2px solid #333;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(139,69,19,0.08) 1px,
            rgba(139,69,19,0.08) 2px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(139,69,19,0.04) 3px,
            rgba(139,69,19,0.04) 4px
        );
    mix-blend-mode: multiply;
}

.image-caption {
    font-size: 12px;
    font-style: italic;
    text-align: center;
    margin-top: 5px;
    color: #666;
}

.byline {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.article-content {
    column-count: 3;
    column-gap: 30px;
    column-rule: 1px solid #ddd;
    text-align: left;
}

.article-content::first-letter {
    font-size: 80px;
    line-height: 60px;
    font-weight: bold;
    float: left;
    margin: 0 5px 0 0;
}

.article-content p {
    margin: 0 0 8px 0;
    text-indent: 15px;
}

.article-content p:first-child {
    text-indent: 0;
}

.secondary-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-top: 3px double #333;
    max-width: 1000px;
    margin: 0 auto;
}

.secondary-article {
    padding: 15px;
}

.secondary-article h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.secondary-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.3) sepia(0.2);
    border: 1px solid #333;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.secondary-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(139,69,19,0.08) 1px,
            rgba(139,69,19,0.08) 2px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(139,69,19,0.04) 3px,
            rgba(139,69,19,0.04) 4px
        );
    mix-blend-mode: multiply;
}

.gzw-image {
    filter: grayscale(100%) contrast(1.3) sepia(0.2) brightness(1.8);
}

.discord-section {
    padding: 20px 20px 0 20px;
    border-top: 3px double #333;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.discord-image {
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    filter: grayscale(100%) contrast(1.3) sepia(0.2);
    margin: 0 auto 10px auto;
    position: relative;
    overflow: hidden;
    display: inline-block;
    mix-blend-mode: multiply;
}


.discord-section h3 {
    font-size: 32px;
    margin: 15px 0;
    text-transform: uppercase;
}

.discord-section a {
    color: inherit !important;
    text-decoration: none;
}

.discord-section a:hover {
    color: inherit !important;
    text-decoration: none;
}

.discord-section a:visited {
    color: inherit !important;
    text-decoration: none;
}

.discord-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 20px;
    border-top: 3px double #333;
    font-size: 14px;
    background-color: #f9f7f1;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }
    
    .header h1::before,
    .header h1::after {
        display: none;
    }
    
    .article-content {
        column-count: 1;
    }
    
    .article-headline {
        font-size: 32px;
    }
    
    .secondary-articles {
        grid-template-columns: 1fr;
    }
    
    .discord-section h3 {
        font-size: 24px;
    }
    
    .discord-section p {
        font-size: 16px;
    }
}