/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
}

.headline {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #007bff;
  color: #f02a3d;
}

.headline .highlight {
  color: #fad538;
}

.image-section {
  margin: 1.5rem 0;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
}

.video-placeholder {
  position: relative;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
}

.video-placeholder:hover img {
  transform: scale(1.05);
}

.video-placeholder::after {
  content: "Watch Now!";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  pointer-events: none;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.8;
  }
}

.text-section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #555;
}

.text-section strong {
  color: #f02a3d;
  font-weight: bold;
}

.cta-label {
  text-align: center;
  margin: 1.5rem 0;
}

.cta-text {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #d0342c;
  text-transform: uppercase;
}

.progress-bar {
  width: 100%;
  background: #e0e0e0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress {
  background: linear-gradient(90deg, #f79c1d, #ec281e);
  height: 100%;
  width: 100%;
  transition: width 1s linear;
}

.watch-video-button {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #f79c1d, #ec281e);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin: 0 auto;
  max-width: 90%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.watch-video-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.cta-countdown {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #d0342c;
  font-weight: bold;
}

.references {
  background: #fafafa;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  border-radius: 8px;
}

.references h3 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.references .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.references .logos img {
  height: auto;
  width: auto;
  max-height: 60px;
  margin: 0.5rem 1rem;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.references .logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
  }

  .video-placeholder::after {
    font-size: 1rem;
    bottom: 12px;
    padding: 0.4rem 0.8rem;
  }

  .watch-video-button {
    font-size: 1.2rem;
    padding: 0.9rem;
  }

  .text-section p {
    font-size: 1.2rem;
  }

  .video-placeholder img {
    width: 105%;
  }

  .references .logos img {
    max-height: 70px;
  }
}
