body {
    font-family: "Courier New", "Courier", monospace;
    max-width: 720px;
    margin: 40px auto;
    padding: 0 20px;
    color: #0a0a0a;
    background: #f5f5dc; 
    line-height: 1.6;
    font-size: 20px;
}

#current-date {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 16px;
    color: #0a0a0a;
    font-weight: bold;
    opacity: 1;
}

h1 {
    font-family: "Courier New", "Courier", monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
}

h1[lang="ur"], h1 span[lang="ur"], h2 [lang="ur"], h2 span[lang="ur"] {
    font-family: "Noto Nastaliq Urdu",  serif;
    letter-spacing: 0;
}

h2, h3 {
    font-family: "Courier New", "Courier", monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    margin: 15px 0 30px 0;
    font-size: 14px;
    font-weight: bold;
}

nav a {
    color: #000;
    text-decoration: none;
    margin-right: 15px;
}

nav a:hover {
    background: #000;
    color: #f5f5dc;
}

ul {
    padding-left: 0;
    list-style: none;
}

ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    background: #000;
    color: #f5f5dc;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, #000 2px, #000 3px);
    pointer-events: none;
}