:root {
    --brand-dark: #1e1e1e;
    --brand-gold: #c5a86a;
    --brand-gold-light: #f7f4eb;
    --brand-gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    --text-muted: #6c757d;
    --bg-light: #f9f9fa;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--brand-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Support for LTR switching smoothly */
html[dir="ltr"] body {
    font-family: 'Inter', 'Cairo', sans-serif;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 25px;
}
