:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --ink: #f5f2ec;
  --muted: rgba(245, 242, 236, 0.58);
  --line: rgba(245, 242, 236, 0.12);
  --white: #ffffff;
  --black: #0d0d0d;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "IBM Plex Sans Arabic", "Outfit", sans-serif;
  --display: "Outfit", "IBM Plex Sans Arabic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.en { direction: ltr; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
::selection { background: #2a2a2a; color: #fff; }

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.lang-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-width: 46px;
  min-height: 38px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lang-toggle:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #121212;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  will-change: transform, opacity;
  animation: heroZoom 40s linear infinite alternate;
}
.hero-img.is-active {
  opacity: 1;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.18) 45%, rgba(10,10,10,0.4) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.12) 42%, rgba(10,10,10,0.28) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.lead {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: var(--ink);
  color: var(--black);
}
.btn-solid:hover { background: #fff; }
.btn-line {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.03);
}
.btn-line:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.social-row a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.social-row a:hover { color: var(--ink); }

.hero-portrait { width: min(100%, 380px); margin-inline-start: auto; }
.portrait-frame {
  min-height: 480px;
  border-radius: 28px;
  background-color: #1a1a1a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.portrait-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 0;
  color: var(--muted);
  font-size: 14px;
}
.portrait-meta strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
}

.section {
  padding: 88px clamp(18px, 4vw, 48px);
}
.section-head {
  margin-bottom: 36px;
  max-width: 920px;
}
h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.counters {
  padding-top: 36px;
  padding-bottom: 36px;
}
.stats-row {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  min-height: 210px;
  padding: 28px 28px 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03) 42%, rgba(255,255,255,0.06)),
    rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, border-color 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.stat-glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.stat-card.ig .stat-glow {
  background: radial-gradient(circle, rgba(225, 48, 108, 0.55), rgba(131, 58, 180, 0.2), transparent 70%);
}
.stat-card.tt .stat-glow {
  background: radial-gradient(circle, rgba(37, 244, 238, 0.35), rgba(254, 44, 85, 0.28), transparent 70%);
}
.stat-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.stat-icon {
  width: 30px;
  height: 30px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));
}
.stat-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 45, 106, 0.16);
  border: 1px solid rgba(255, 45, 106, 0.35);
  color: #ff7aa2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.stat-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff2d6a;
  box-shadow: 0 0 0 0 rgba(255, 45, 106, 0.7);
  animation: liveBeat 1.4s infinite;
}
.stat-number {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.stat-number.tick {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.92;
}
.stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery {
  columns: 3 280px;
  column-gap: 16px;
}
.gallery a {
  break-inside: avoid;
  display: block;
  margin: 0 0 16px;
  border-radius: 18px;
  overflow: hidden;
  background: #151515;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.gallery a:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.gallery a:hover img { transform: scale(1.04); }

.tiktok-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  padding: 36px 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 244, 238, 0.12), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(254, 44, 85, 0.14), transparent 42%),
    #121212;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.tiktok-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.24);
}
.tiktok-card-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tiktok-card strong {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 700;
}
.tiktok-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.video-post-wrap {
  max-width: 380px;
}
.video-post {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #151515;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.video-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.video-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.video-post:hover img { transform: scale(1.04); }
.video-post-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.video-post-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.video-post-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.platform {
  min-height: 150px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}
.platform:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
}
.platform b {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 650;
}
.platform span { color: var(--muted); font-size: 14px; }

.contact {
  padding-bottom: 110px;
}
.contact-block {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 64px 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.08), transparent 55%),
    #101010;
}
.contact-block h2 {
  margin: 0 auto 36px;
  max-width: 16ch;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(100%, 420px);
  min-height: 76px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fe577, var(--wa) 45%, var(--wa-dark));
  color: #05301a;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  box-shadow: 0 22px 50px rgba(37, 211, 102, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  color: #05301a;
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 60px rgba(37, 211, 102, 0.36);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px) 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}
footer div { display: flex; gap: 18px; }
footer a:hover { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
@keyframes liveBeat {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 106, 0.65); }
  70% { box-shadow: 0 0 0 8px rgba(255, 45, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 106, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; transform: scale(1.02); }
  .reveal { opacity: 1; transform: none; transition: none; }
  .stat-live i { animation: none; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { margin: 0; width: min(100%, 420px); }
  .platform-row { grid-template-columns: 1fr; }
  .portrait-frame { min-height: 420px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .gallery { columns: 2 140px; }
  h1 { font-size: 64px; }
  footer { flex-direction: column; text-align: center; }
  .wa-btn { min-height: 68px; border-radius: 22px; width: 100%; }
}
@media (max-width: 480px) {
  .gallery { columns: 1; }
}
