* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background: #fffef0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 235, 59, 0.05) 1px, rgba(255, 235, 59, 0.05) 2px);
}

body[dir="rtl"] {
    direction: rtl;
}

/* Newspaper-style scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #fffef0;
    border-left: 2px solid #ffd700;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border: 2px solid #fffef0;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #b8860b;
    letter-spacing: 0.02em;
}

/* Newspaper article style */
.newspaper-article {
    background: #fffef0;
    border: 2px solid #ffd700;
    border-left: 4px solid #ffc107;
    box-shadow: 
        0 0 0 1px #ffeb3b,
        inset 0 0 20px rgba(255, 235, 59, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Newspaper headline style */
.headline {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 3px double #ffd700;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
}

