/* صفحات إعلانات خفيفة — HTML ثابت للموبايل (تيكتوك / ميتا / جوجل) */
:root {
  --navy: #030712;
  --cyan: #22d3ee;
  --gold: #eab308;
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.65);
  --border: rgba(255, 255, 255, 0.1);
  --font: 'Tajawal', system-ui, -apple-system, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(14, 116, 144, 0.4), transparent 55%),
    linear-gradient(180deg, #020617 0%, #0f172a 55%, #0c4a6e 100%);
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.6;
  overflow-x: hidden;
}

.ads-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 2rem;
  text-align: center;
}

.ads-card {
  width: 100%;
  max-width: 26rem;
}

.ads-badge {
  display: inline-block;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.65);
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.ads-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #86efac;
  margin-bottom: 0.75rem;
}

.ads-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: ads-pulse 1.6s ease-in-out infinite;
}

@keyframes ads-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.ads-title {
  font-size: clamp(1.85rem, 7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.ads-title span {
  background: linear-gradient(135deg, #22d3ee, #fde047, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ads-lead {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.ads-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  margin-bottom: 1.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.ads-stats strong { color: var(--text); }

.ads-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.ads-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.ads-btn:active { transform: scale(0.98); }

.ads-btn-primary {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
  color: #042f3a;
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35);
}

.ads-btn-google {
  background: #fff;
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ads-btn-google .g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}

.ads-btn-ghost {
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
  border: 1px solid var(--border);
}

.ads-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.ads-regions {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.45);
}

.ads-foot {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.38);
}

.ads-utm-box {
  margin-top: 1.25rem;
  text-align: start;
}

.ads-utm-card {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: rgba(2, 6, 23, 0.55);
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ads-utm-card strong {
  font-size: 0.82rem;
  color: var(--cyan);
}

.ads-utm-code {
  display: block;
  font-size: 0.68rem;
  word-break: break-all;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 0.5rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--border);
}

.ads-utm-copy {
  align-self: stretch;
  border: 0;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.ads-utm-meta,
.ads-utm-hint {
  font-size: 0.72rem;
  color: var(--muted);
}

.ads-utm-test {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
}

.perf-lite .ads-live-dot { animation: none; }
