/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}

/* Announcement Banner */
.announcement-banner {
  background-color: #000;
  color: #fff;
  width: 100%;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  padding: 10px 20px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* No longer needed as logo moved */

.announcement-banner p {
  margin: 0;
  font-size: 18px;
  text-align: center;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Logo Container */
.logo-container {
  text-align: center;
  margin: 0 auto 30px;
}

.main-logo {
  max-height: 100px;
  margin: 0 auto;
}

/* Header Styles */
header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline-row {
  display: block;
  width: 100%;
}

h2 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Video Container */
.video-container {
  position: relative;
  width: 80%;
  margin: 0 auto 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.custom-player {
  position: relative;
  width: 100%;
  height: 450px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.youtube-player {
  width: 100%;
  height: 100%;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sales Copy */
.sales-copy {
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sales-copy p {
  margin-bottom: 20px;
}

/* Pricing */
.pricing {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 10px;
}

.sale-price {
  color: #ff0000;
  font-size: 30px;
}

/* Checkout */
.checkout-container {
  text-align: center;
  margin: 30px 0;
}

.checkout-button {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.checkout-button:hover {
  background-color: #f0c000;
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  opacity: 0.7;
}

/* Retry Popup */
.retry-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .container {
    padding: 30px 15px;
  }
  
  .video-container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .video-container {
    width: 95%;
    margin-bottom: 40px;
  }
  
  .banner-content {
    flex-direction: column;
    align-items: center;
  }
  
  .main-logo {
    max-height: 80px;
  }
  
  .announcement-banner p {
    font-size: 14px;
    text-align: center;
  }
  
  .sales-copy {
    font-size: 18px;
  }
  
  .pricing {
    font-size: 20px;
  }
  
  .sale-price {
    font-size: 24px;
  }
  
  .checkout-button {
    padding: 12px 30px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 18px;
  }
  
  .main-logo {
    max-height: 60px;
    margin-bottom: 15px;
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  .container {
    padding: 20px 10px;
  }
  
  .video-container {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-icon {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #ffcc00;
  }
  
  .sales-copy {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .pricing {
    font-size: 18px;
  }
  
  .sale-price {
    font-size: 22px;
  }
  
  .checkout-button {
    padding: 10px 25px;
    font-size: 18px;
    width: 80%;
    max-width: 250px;
  }
}
