* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 20px 10px;
}

.headline {
  color: #cc0000;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  line-height: 1.25;
  margin: 10px 0 20px;
}

.subheadline {
  color: #111;
  font-size: 20px;
  text-align: center;
  font-weight: normal;
  margin: 0 0 25px;
  line-height: 1.4;
}

.separator {
  text-align: center;
  letter-spacing: 10px;
  color: #999;
  margin: 20px 0 25px;
  font-size: 18px;
}

.italic-open {
  font-style: italic;
  text-align: center;
  font-size: 19px;
  color: #333;
  margin-bottom: 25px;
}

.copy-block p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.italic-emph {
  font-style: italic;
  font-weight: bold;
  text-align: center;
  font-size: 19px;
}

.content-image {
  width: 100%;
  max-width: 620px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 25px auto;
  border-radius: 6px;
}

.content-image.contain-image {
  object-fit: contain;
  background: #f5f5f5;
  max-height: 360px;
}

.subtitle-red {
  color: #cc0000;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin: 40px 0 20px;
  line-height: 1.3;
}

.urgency-block p {
  margin-bottom: 10px;
}

.alert-box {
  background-color: #fff8d6;
  border: 2px solid #cc0000;
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 1.5;
  margin: 30px 0;
}

/* VIDEO MOCKUP */
.video-wrapper {
  margin: 30px 0 5px;
  position: relative;
}

.video-mockup {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.video-mockup img {
  width: 100%;
  display: block;
  opacity: 0.85;
}

.badge {
  position: absolute;
  top: 12px;
  background-color: #cc0000;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-top-left {
  left: 12px;
}

.badge-top-right {
  right: 12px;
  background-color: #111;
}

.timer-icon {
  position: absolute;
  bottom: 14px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 20px;
}

.play-pointer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  position: absolute;
  color: #000;
  font-size: 34px;
  transform: rotate(180deg) translate(70px, 30px);
  text-shadow: 0 0 6px #fff;
}

.play-button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #cc0000;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.watch-now-text {
  position: absolute;
  bottom: 14px;
  right: 14px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

.video-loading {
  width: 100%;
  min-height: 300px;
  background-color: #000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-loading.hidden {
  display: none;
}

.video-loading p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}

.continue-btn {
  background-color: #cc0000;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.continue-btn:hover {
  background-color: #a80000;
}

.wait-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin: 10px 0 30px;
}

.cta-button {
  display: block;
  background-color: #cc0000;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  padding: 20px 15px;
  border-radius: 8px;
  margin: 20px 0 15px;
  box-shadow: 0 4px 0 #8f0000;
}

.cta-button:hover {
  background-color: #a80000;
}

.cta-secondary {
  display: block;
  text-align: center;
  color: #cc0000;
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  margin-bottom: 30px;
}

.closing-block {
  margin-top: 30px;
}

.footer {
  background-color: #f2f2f2;
  padding: 20px 15px;
  margin-top: 30px;
  text-align: center;
}

.footer-links {
  font-size: 12px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  max-width: 720px;
  margin: 0 auto;
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .headline {
    font-size: 28px;
  }

  .subheadline {
    font-size: 17px;
  }

  .subtitle-red {
    font-size: 22px;
  }

  .copy-block p,
  .italic-emph,
  .italic-open {
    font-size: 16px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .arrow {
    display: none;
  }

  .cta-button {
    font-size: 18px;
  }
}
