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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  background: #0b1220;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.it-hit {
  display: block;
  width: 100%;
  height: 100dvh;
  height: 100svh;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.it-page {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding:
    max(8px, env(safe-area-inset-top))
    clamp(12px, 4vw, 18px)
    max(10px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.it-page--hasimg .it-head {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.it-page--hasimg .it-cta-block {
  margin-top: auto;
}

.it-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 18, 32, 0) 0%,
      rgba(11, 18, 32, 0.25) 50%,
      rgba(11, 18, 32, 0.88) 82%,
      #0b1220 100%),
    var(--it-scene) center top / cover no-repeat;
  pointer-events: none;
}

.it-bg--fallback {
  background:
    linear-gradient(180deg, #141e30 0%, #0b1220 60%, #060a12 100%),
    radial-gradient(ellipse at 50% 20%, rgba(245, 197, 24, 0.12) 0%, transparent 50%);
}

.ld-wrap--static.it-hit {
  cursor: default;
}

.it-head,
.it-spacer,
.it-cta-block {
  position: relative;
  z-index: 1;
}

.it-head {
  text-align: center;
  flex-shrink: 0;
}

.it-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(4px, 1vh, 8px);
}

.it-brand__name {
  font-size: clamp(18px, 5vmin, 24px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.it-slogan {
  font-size: clamp(10px, 2.8vmin, 13px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.it-slogan strong {
  color: #f5c518;
}

.it-spacer {
  flex: 1;
  min-height: 0;
}

.it-cta-block {
  text-align: center;
  flex-shrink: 0;
  padding-bottom: clamp(4px, 1vh, 8px);
}

.it-cta-title {
  font-size: clamp(12px, 3.5vmin, 16px);
  font-weight: 700;
  margin-bottom: clamp(10px, 2.5vh, 16px);
  line-height: 1.3;
}

.it-cta-title strong {
  color: #f5c518;
}

.it-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: min(92vw, 320px);
  padding: clamp(14px, 3.8vmin, 18px) 20px;
  background: linear-gradient(180deg, #ffe033 0%, #f5c518 50%, #d4a800 100%);
  color: #111;
  font-size: clamp(15px, 4.2vmin, 19px);
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
  letter-spacing: 0.02em;
}

.it-cta-btn__play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #f5c518;
  display: grid;
  place-items: center;
  font-size: 12px;
  padding-left: 2px;
}

.it-cta-foot {
  margin-top: clamp(10px, 2.5vh, 14px);
  font-size: clamp(8px, 2.2vmin, 10px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

@media (max-height: 560px) {
  .it-slogan {
    display: none;
  }
}

@media (min-width: 520px) {
  body {
    background: #050810;
  }

  .it-page {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
  }
}
