:root {
  color-scheme: dark;
  --bg: #030303;
  --text: #f7f7fb;
  --muted: #d6d6dd;
  --line: rgba(255, 255, 255, 0.78);
  --cyan: #77e8ff;
  --orange: #ff9d0a;
  --orange-deep: #ff6506;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow: hidden;
}

.screen {
  position: relative;
  display: grid;
  height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.backdrop {
  position: fixed;
  inset: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  object-fit: cover;
  filter: blur(16px) brightness(0.34) saturate(1.15);
  transform: scale(1.03);
}

.screen::after {
  position: fixed;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), #000 48%, #000 100%),
    radial-gradient(circle at 50% 8%, rgba(63, 211, 255, 0.18), transparent 38%);
  pointer-events: none;
}

.panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  height: 100vh;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.cover-wrap {
  position: relative;
  padding: 0;
}

.cover-wrap::after {
  position: absolute;
  right: 0;
  bottom: -95px;
  left: 0;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, #000 76%);
  pointer-events: none;
}

.cover {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.8vh, 32px);
  padding: clamp(30px, 4vh, 52px) clamp(18px, 5.6vw, 36px) clamp(26px, 4vh, 54px);
  text-align: center;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #f1f1f5;
  font-size: clamp(26px, 6.1vw, 32px);
  font-weight: 800;
  line-height: 1.1;
}

.stars {
  color: #ffc83d;
  font-size: 0.95em;
  letter-spacing: 1px;
  text-shadow:
    0 1px 0 #7a4500,
    0 0 9px rgba(255, 212, 77, 0.55);
}

.divider {
  width: min(276px, 72%);
  height: 1px;
  background: var(--line);
}

h1 {
  max-width: 440px;
  margin: 0;
  color: #efeff4;
  font-size: clamp(23px, 5.5vw, 29px);
  font-weight: 850;
  line-height: 1.17;
  letter-spacing: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 458px);
  min-height: clamp(62px, 7.8svh, 68px);
  padding: 16px 64px 16px 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(22px, 6.2vw, 34px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(142, 69, 0, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 30px rgba(255, 115, 0, 0.18);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.cta:hover {
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 16px 34px rgba(255, 115, 0, 0.28);
}

.cta:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.cta svg {
  position: absolute;
  right: clamp(11px, 3vw, 20px);
  width: clamp(46px, 12vw, 66px);
  height: clamp(46px, 12vw, 66px);
  fill: #fff;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));
  transform: rotate(-10deg);
}

@media (max-width: 390px) {
  .content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cta {
    padding-right: 48px;
    padding-left: 22px;
  }
}

@media (max-width: 720px) {
  .panel {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .rating {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
