:root {
  --navy: #181b3a;
  --purple: #342766;
  --purple-light: #51438e;
  --gold: #d6a23a;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #18152c;
  font-family: "Cairo", sans-serif;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow-x: hidden;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(86, 66, 160, .62), transparent 32rem),
    linear-gradient(145deg, #1b1536 0%, #312269 52%, #17142b 100%);
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  z-index: -1;
  width: 42vmax;
  height: 42vmax;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.coming-soon::before { top: -26vmax; right: -18vmax; }
.coming-soon::after { bottom: -29vmax; left: -19vmax; }

.glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(3px);
  opacity: .34;
}

.glow-one { width: 22rem; height: 22rem; top: 10%; left: -12rem; background: #533f9c; }
.glow-two { width: 16rem; height: 16rem; bottom: 4%; right: -7rem; background: #c99024; opacity: .12; }

.content { width: min(100%, 620px); text-align: center; }

.brand { margin-bottom: 28px; }
.brand-logo { display: block; width: 146px; height: 146px; margin: 0 auto; border-radius: 24px; box-shadow: 0 12px 28px rgba(0,0,0,.26); }

.eyebrow { margin: 0 0 12px; color: #d9d3f4; font-size: 1rem; font-weight: 600; }
h1 { margin: 0; font-size: clamp(3.4rem, 11vw, 6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.06em; }
.message { max-width: 470px; margin: 18px auto 34px; color: #e6e3f1; font-size: clamp(1rem, 2.6vw, 1.2rem); line-height: 2; }

.store-links { display: flex; justify-content: center; gap: 12px; direction: ltr; }
.store-card {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
  gap: 10px;
  padding: 11px 17px;
  color: rgba(255,255,255,.57);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  text-align: left;
  user-select: none;
}
.store-card small, .store-card strong { display: block; line-height: 1.2; }
.store-card small { font-size: .64rem; direction: rtl; text-align: left; }
.store-card strong { font: 700 .95rem/1.3 "Montserrat", sans-serif; }
.store-icon { display: inline-grid; width: 25px; place-items: center; color: var(--gold); font-size: 1.55rem; }
.play { font-size: 1.4rem; }

footer { margin-top: 28px; color: rgba(255,255,255,.48); font-size: .72rem; }

@media (max-width: 440px) {
  .coming-soon { padding-inline: 18px; }
  .brand { margin-bottom: 18px; }
  .brand-logo { width: 104px; height: 104px; border-radius: 18px; }
  .store-links { flex-direction: column; align-items: stretch; }
  .store-card { justify-content: center; }
}
