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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
.vsl-header {
  text-align: center;
  padding: 30px 15px;
  background: #ffffff;
  border-bottom: 2px solid #eaeaea;
}

.main-headline {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.sub-headline {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

.gold-text {
  color: #d4af37;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

/* Video Section */
.video-section {
  max-width: 450px; /* Reduced from 800px to make the video much smaller */
  margin: 30px auto;
  padding: 0 15px;
}

.vsl-player-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.paused-video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.paused-badge-card {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.play-icon-circle {
  font-size: 50px;
  margin-bottom: 15px;
  color: #fff;
}

.paused-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.paused-subtitle {
  font-size: 16px;
}

.minimal-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 20;
}

.vsl-player-wrapper:hover .minimal-controls {
  opacity: 1;
}

.ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.time-slider-container {
  flex-grow: 1;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: #d4af37;
  width: 0%;
  border-radius: 3px;
}

.time-readout {
  color: #fff;
  font-size: 14px;
  font-family: monospace;
}

/* Order Section */
.order-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.offer-header-banner {
  background: #28a745;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.action-text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stock-counter-text {
  font-size: 15px;
}

.stock-badge {
  background: #fff;
  color: #28a745;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
}

.offer-content-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 30px;
  align-items: center;
}

.product-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.product-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.discount-tag {
  display: inline-block;
  background: #ffc107; /* Changed to yellow */
  color: #111; /* Changed to dark text for contrast */
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 15px;
}

.form-col {
  flex: 1;
  min-width: 300px;
}

.price-box {
  text-align: center;
  margin-bottom: 25px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 20px;
  margin-right: 15px;
}

.new-price {
  color: #d4af37;
  font-size: 32px;
  font-weight: 900;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

.submit-btn {
  background: #d4af37;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #c39e2d;
}

.form-disclaimer-note {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 10px;
}

/* Footer */
.full-width-footer {
  background: #222;
  color: #ccc;
  padding: 40px 15px 20px;
  font-size: 14px;
  margin-top: 50px;
}

.footer-inner-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-disclaimer-box {
  border: 1px solid #555;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.5;
}

.disclaimer-title {
  font-weight: 700;
  color: #fff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

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

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

.footer-bottom-bar {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .offer-content-grid {
    flex-direction: column;
  }
}
