:root {
  --navy: #0a1128;
  --navy-deep: #060a1a;
  --card-bg: #101a35;
  --card-border: #21304f;
  --blue: #38b6ff;
  --blue-soft: #7cd4ff;
  --green: #45e04a;
  --green-soft: #9dff6e;
  --ink: #eaf2ff;
  --ink-dim: #9fb0d1;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--navy);
  font-family: 'Tajawal', sans-serif;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  position: relative;
  overflow-x: hidden;
}

/* توهجات خلفية بألوان اللوغو */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.bg-glow--blue {
  width: 420px;
  height: 420px;
  background: var(--blue);
  top: -120px;
  right: -120px;
}

.bg-glow--green {
  width: 460px;
  height: 460px;
  background: var(--green);
  bottom: -150px;
  left: -140px;
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.links {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn--primary {
  color: var(--navy-deep);
  background: linear-gradient(95deg, var(--blue) 0%, var(--green) 100%);
  box-shadow: 0 12px 30px -8px rgba(69, 224, 74, 0.45);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 36px -8px rgba(56, 182, 255, 0.55);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-note {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0.7;
}

@media (max-width: 380px) {
  .card {
    padding: 32px 20px 26px;
  }
  .logo {
    width: 180px;
  }
}
