@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  background-color: var(--color-bg-base);
  color: var(--color-platinum);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #060911;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 208, 132, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(30, 58, 138, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Modern DZPARTNER Glass Header */
.site-header {
  background: rgba(6, 9, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 208, 132, 0.45));
}

.brand-title {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  direction: ltr;
}

.brand-dz {
  color: #00d084;
  text-shadow: 0 0 16px rgba(0, 208, 132, 0.45);
}

.brand-vest {
  color: #38bdf8;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: #00d084;
}

.btn-nav-join {
  background: linear-gradient(135deg, #00d084 0%, #06b6d4 100%);
  color: #02161f !important;
  font-weight: 900 !important;
  border-radius: var(--radius-full) !important;
  padding: 8px 24px !important;
  box-shadow: 0 0 20px rgba(0, 208, 132, 0.45);
  transition: all 0.3s ease;
}

.btn-nav-join:hover {
  box-shadow: 0 0 28px rgba(0, 208, 132, 0.7);
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-glass-border);
  background: #05070d;
  padding: 34px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 16px rgba(0, 208, 132, 0.25));
}

.footer-tagline-ar {
  color: #00d084;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-tagline-en {
  color: #94a3b8;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
}

.brand-partner { font-size: .74em; letter-spacing: -1px; }
.brand-logo .brand-title { gap: 1px; }
.brand-logo .brand-partner { font-size: .66em; letter-spacing: -1.2px; }
