:root {
  color-scheme: light;
  --shell-bg: #111827;
  --bg: #f6f9fc;
  --ink: #1f2937;
  --text: #344054;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --gold: #f4b740;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--shell-bg);
}


.page {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(11, 99, 206, 0.08) 0 25%, transparent 25% 100%),
    linear-gradient(315deg, rgba(244, 183, 64, 0.12) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #edf4fb 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 26px 70px rgba(0, 0, 0, 0.32);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.hero::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 6px;
  content: "";
  background: linear-gradient(180deg, #5147e8, #7f83f6);
}

.brand-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.1) 0 24px, transparent 25px),
    radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.1) 0 24px, transparent 25px),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.08) 0 24px, transparent 25px),
    radial-gradient(circle at 34% 86%, rgba(255, 255, 255, 0.08) 0 24px, transparent 25px),
    radial-gradient(circle at 57% 86%, rgba(255, 255, 255, 0.08) 0 24px, transparent 25px),
    radial-gradient(circle at 80% 86%, rgba(255, 255, 255, 0.08) 0 24px, transparent 25px),
    linear-gradient(135deg, #5a4dec 0%, #7f83f6 100%);
}


.logo-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 248px);
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(0, 31, 75, 0.2);
}

.logo-mark {
  width: 100%;
  height: auto;
  display: block;
}

.location {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  width: 100%;
  justify-content: center;
  margin: 22px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  direction: rtl;
  text-align: center;
}

.pin {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transform: translateY(-1px);
}

.pin svg {
  width: 100%;
  height: 100%;
  display: block;
}

.info-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 38px 18px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.9)),
    var(--panel-strong);
  text-align: center;
}

.info-card::before {
  position: absolute;
  inset-inline-start: 50%;
  top: 24px;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  transform: translateX(-50%);
}

.info-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.48;
}

.cta-button {
  width: calc(100% - 36px);
  display: block;
  margin: 22px auto 26px;
  color: #ffffff;
  text-decoration: none;
  animation: button-double-bounce 5s ease-in-out infinite;
}

.cta-surface {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1.5px solid #111827;
  border-radius: 999px;
  background: #2bd66f;
  direction: rtl;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.cta-button:hover .cta-surface {
  filter: brightness(1.03);
  transform: translateY(-2px) scale(1.02);
}

.cta-button:focus-visible {
  border-radius: 999px;
  outline: 3px solid rgba(43, 214, 111, 0.45);
  outline-offset: 4px;
}

.cta-button:active .cta-surface {
  transform: scale(0.992);
  filter: brightness(0.98);
}

.cta-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.cta-icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.cta-label {
  color: #111827;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

@keyframes button-double-bounce {
  from,
  12% {
    transform: translateY(0);
  }

  18% {
    transform: translateY(-11px);
  }

  26% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  48% {
    transform: translateY(0);
  }

  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-button {
    transform: none;
    animation: none;
  }

  .cta-surface {
    transition: none;
  }

  .cta-button:hover .cta-surface,
  .cta-button:active .cta-surface {
    transform: none;
  }
}


@media (max-width: 480px) {
  .page {
    max-width: none;
    box-shadow: none;
  }
}

.limited-container {
  width: min(100% - 28px, 480px);
  margin: 0 auto;
}

.limited-cta-section {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  padding: 32px 0;
}

.limited-cta-section::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.limited-cta-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 26px 20px;
  text-align: center;
}

.limited-cta-box h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.limited-cta-box p {
  margin: 16px auto 0;
  max-width: 500px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0.95;
}

.limited-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.limited-timer-box {
  width: 74px;
  min-height: 88px;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.limited-timer-value {
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.limited-timer-label {
  margin-top: 12px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.limited-footer {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: #172033;
  color: #ffffff;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

@media (min-width: 481px) {
  .brand-block {
    padding: 44px 28px 34px;
  }

  .logo-shell {
    width: min(100%, 286px);
    padding: 20px;
  }

  .location {
    margin-top: 22px;
    font-size: 13px;
  }

  .info-card {
    padding: 44px 26px 28px;
  }

  .info-card h1 {
    font-size: 21px;
  }

  .cta-button {
    width: calc(100% - 52px);
    margin: 28px auto 32px;
  }
}
