:root {
    --gold: #c5a059;
    --dark-bg: #0a0a0a;
    --card-bg: #161616;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --saudi-green: #002e16;
}

* { box-sizing: border-box; }

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header */
header {
    background: #000;
    padding: 15px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

/* Premium Mobile Menu: Centered & Balanced */
nav {
    display: flex;
    flex-wrap: wrap; /* This ensures they don't hide off-screen */
    justify-content: center; /* Perfectly centered */
    gap: 8px;
    width: 100%;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.75rem; /* Smaller font to fit more on one line */
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    transition: 0.2s;
    white-space: nowrap;
}

.acquisition-link {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    background: rgba(197, 160, 89, 0.1) !important;
}

/* Desktop Polish */
@media (min-width: 992px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 8%;
    }
    .logo { margin-bottom: 0; font-size: 1.5rem; }
    nav { width: auto; gap: 15px; }
    nav a { background: transparent; font-size: 0.9rem; }
}

/* Content Alignment */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.hero {
    padding: 40px 5%;
    text-align: center;
    background: linear-gradient(180deg, var(--saudi-green) 0%, var(--dark-bg) 100%);
    border-bottom: 2px solid var(--gold);
}

.hero h1 {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 10px 0;
}

@media (min-width: 768px) {
    .hero { padding: 80px 10%; }
    .hero h1 { font-size: 3rem; }
}

main {
    padding: 20px 5% !important;
}

article {
    max-width: 850px;
    margin: 0 auto;
}