:root {
  --bg: #050505;
  --card: rgba(14, 14, 14, 0.88);
  --text: #ffffff;
  --muted: #cfcfcf;
  --red: #e20b0b;
  --yellow: #f4df16;
  --gold: #c88933;
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(226, 11, 11, 0.18), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(244, 223, 22, 0.14), transparent 28%),
    linear-gradient(135deg, #000 0%, var(--bg) 48%, #080808 100%);
}

a { color: inherit; text-decoration: none; }

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(100%, 980px);
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.glow-one { background: var(--red); top: -80px; right: -60px; }
.glow-two { background: var(--yellow); bottom: -100px; left: -70px; }

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(24px, 5vw, 54px);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.logo {
  width: min(100%, 620px);
  max-height: 340px;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 800;
  letter-spacing: 0.2px;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 12vw, 132px);
  line-height: 0.95;
  font-weight: 900;
  color: var(--text);
  text-shadow: 0 0 28px rgba(226, 11, 11, 0.35);
}

.subtitle {
  width: min(100%, 660px);
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.8;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), #9e0505);
  border-color: rgba(226, 11, 11, 0.6);
}

.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.info div {
  padding: 18px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
}

.info span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-weight: 900;
  font-size: 15px;
}

.info a {
  color: #fff;
  font-size: 15px;
  direction: ltr;
  unicode-bidi: plaintext;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .page { padding: 16px; }
  .card { border-radius: 26px; }
  .logo { max-height: 260px; margin-bottom: 18px; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .info { grid-template-columns: 1fr; }
}
