:root {
    --bg: #070a12;
    --card: #0c1120;
    --text: #e7ecf5;
    --muted: #9aa3b2;
    --brand: #44eaff;
    --brand2: #a86bff;
    --accent: #00e9a5;
    --ring: #213265;
    --glow: 0 15px 50px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: radial-gradient(1400px 820px at 70% -10%, #111a36 0%, var(--bg) 60%);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Noto Sans Arabic', 'Noto Sans', Arial, sans-serif;
}

a {
    color: var(--brand);
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 120px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(68,234,255,.35));
}

.brand .name {
    font-weight: 800;
    letter-spacing: .8px;
    font-size: 1.6rem;
}

.lang-links {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
}

.lang-links a {
    background: #0f1730;
    border: 1px solid var(--ring);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
}

.hero {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--ring);
    box-shadow: var(--glow);
    margin-top: 8px;
}

.hero video {
    width: 100%;
    height: 52vh;
    min-height: 340px;
    max-height: 520px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05);
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,10,18,.55), rgba(7,10,18,.78) 55%, rgba(7,10,18,.92));
}

.hero .content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.hero h1 {
    font-size: 2.2rem;
    margin: 0 0 10px;
}

.hero p {
    max-width: 860px;
    color: var(--muted);
    margin: 6px 0 16px;
    line-height: 1.7;
}

.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--ring);
    background: #0f1730;
    color: var(--text);
    font-weight: 700;
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
    color: #07101e;
    border: none;
}

.section {
    margin-top: 26px;
}

.card {
    background: linear-gradient(180deg, #0f1528 0%, #0a0f1d 100%);
    border: 1px solid var(--ring);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--glow);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--ring);
}

.video-wrap {
    position: relative;
    border: 1px solid var(--ring);
    border-radius: 16px;
    overflow: hidden;
    background: #0b1020;
    max-width: 960px;
    margin: 0 auto;
}

.video-wrap video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 90px rgba(0,0,0,.4);
}

.footer {
    margin: 28px 0 10px;
    padding-top: 18px;
    border-top: 1px solid var(--ring);
    color: #8d98ad;
    text-align: center;
}

[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .cta {
    justify-content: center;
}

@media (max-width:980px) {
    .brand img { height: 96px; }
    .hero video { height: 46vh; min-height: 280px; }
    .grid-3 { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
}
