/* Ultra-minimal CSS - Zero cognitive load */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #000;
    padding: 2rem 1rem;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0;
}

nav a:hover {
    text-decoration: underline;
}

/* Subpage styles */
.page h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.back {
    display: inline-block;
    color: #000;
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.back:hover {
    text-decoration: underline;
}

.arabic {
    font-size: 1.8rem;
    line-height: 2.2;
    text-align: right;
    direction: rtl;
    margin: 1.5rem 0;
}

.latin {
    font-style: italic;
    color: #333;
    margin: 1rem 0;
}

.trans {
    color: #000;
    margin: 1rem 0;
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    .arabic {
        font-size: 1.5rem;
    }
}