* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: #f0f0f0;
  color: #2a2a2a;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(12px, 3vw, 20px) clamp(10px, 4vw, 16px) clamp(20px, 5vw, 32px);
}

.card {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(18px, 4.5vw, 26px) clamp(14px, 4vw, 22px) clamp(18px, 4vw, 24px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.05rem, 4.2vw + 0.35rem, 1.35rem);
  line-height: 1.25;
  font-weight: 800;
  color: #1d1d1d;
}

.title .red {
  color: #ff0000;
}

.title .subtitle {
  display: inline;
  font-weight: 800;
}

.offer {
  margin: 12px 0 10px;
  text-align: center;
  color: #ff0000;
  font-size: clamp(0.8rem, 2.8vw + 0.25rem, 0.95rem);
  line-height: 1.3;
  font-weight: 700;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 12px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #ffa000;
  font-size: clamp(1rem, 3.5vw + 0.2rem, 1.15rem);
  line-height: 1;
}

.star {
  display: inline-block;
}

.star.half {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: middle;
}

.star-bg {
  color: #bdbdbd;
}

.star-half-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #ffa000;
  line-height: 1;
}

.rating-text {
  margin: 0;
  font-size: clamp(0.78rem, 2.6vw + 0.2rem, 0.9rem);
  color: #666666;
  font-weight: 500;
}

.media-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 14px;
  background: #3f3f3f;
}

.media-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.86);
  pointer-events: none;
}

.media-click {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.cta-button {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #ff7f27;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 3.8vw + 0.35rem, 1.2rem);
  line-height: 1.1;
  padding: clamp(12px, 3.2vw, 14px) 14px;
  border-radius: 12px;
  margin: 6px 0 14px;
  letter-spacing: 0.02em;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.cta-button:active {
  transform: translateY(1px);
}

.copy p {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(0.8rem, 2.7vw + 0.2rem, 0.92rem);
  line-height: 1.45;
  color: #333333;
}

.cta-button.bottom {
  margin-top: 14px;
  margin-bottom: 16px;
}

.footer {
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: #4f84c7;
}

.footer-links a {
  color: #4f84c7;
  text-decoration: none;
  font-size: clamp(0.72rem, 2.3vw + 0.15rem, 0.82rem);
}

.legal-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: clamp(0.74rem, 2.3vw + 0.15rem, 0.85rem);
  color: #383838;
}

.legal-text {
  margin: 0;
  font-size: clamp(0.65rem, 2vw + 0.1rem, 0.72rem);
  line-height: 1.45;
  color: #6d6d6d;
}

@media (min-width: 600px) {
  .page {
    align-items: center;
    padding-top: clamp(24px, 4vh, 48px);
    padding-bottom: clamp(24px, 4vh, 48px);
  }
}
