* {margin:0;padding:0;box-sizing:border-box;font-family:'Tajawal',sans-serif;}
body {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 25%, #151a25 50%, #1e2538 100%);
    background-attachment: fixed;
    color: #e0e6ed;
    direction: rtl;
    min-height: 100vh;
    padding: 2rem 5%;
    text-align: center;
}
.site-header {margin-bottom: 3rem;}
.main-logo {
    height: 140px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.35));
}
h1 {
    color: #d4af37;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212,175,55,0.4);
}
.slogan {color: #f1c40f; font-size: 1.6rem;}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}
.stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 14px;
    padding: 1.2rem 1.8rem;
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
}

.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.card-link {
    background: rgba(255,255,255,0.05);
    border-bottom: 3px solid #d4af37;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: #e0e6ed;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.card-link:hover {
    background: rgba(212,175,55,0.12);
    transform: translateY(-5px);
    color: #f1c40f;
}
.btn-en {background: linear-gradient(135deg, #d4af37, #b8860b); color: #000 !important; font-weight: bold;}

.site-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212,175,55,0.25);
    color: #a0aec0;
}
