/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --neo-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.5);
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

/* Base Typography */
body {
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: var(--tertiary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Common Buy Now Styles */
.buy-now-classic,
.buy-now-attention,
.buy-now-guarantee,
.buy-now-limited,
.buy-now-special {
  padding: 40px 0;
  background: white;
}

.buy-now-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Header Text Styles */
.header-text {
  margin-bottom: 30px;
}

.header-text h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;
}

.main-offer {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.test-drive {
  color: #0066cc;
  text-decoration: underline;
}

.program-name {
  color: #0066cc;
  font-style: italic;
}

.regular-price {
  color: #666;
  font-size: 18px;
}

/* Secure Order Form */
.secure-header {
  background: #333;
  color: white;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.secure-header h3 {
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
}

/* Retail Price and Special Offer */
.retail-price {
  color: #666;
  text-decoration: line-through;
  margin: 15px 0;
}

.special-offer {
  color: #009900;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
}

/* Product Display */
.product-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.digital-product img,
.dvd-product img {
  max-width: 100%;
  height: auto;
}

.plus-sign {
  color: #ff0000;
  font-size: 30px;
  font-weight: bold;
}

/* Buy Now Button */
.buy-now-link {
  display: block;
  width: 300px;
  margin: 30px auto;
}

.buy-now-button {
  width: 100%;
  height: auto;
  display: block;
}

/* Access Info */
.access-info {
  text-align: center;
  margin: 25px 0;
}

.access-info p {
  margin: 10px 0;
  font-size: 16px;
}

.shipping {
  color: #ff0000;
  font-weight: bold;
}

.shipping-note {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

/* Important Note */
.important-note {
  background: #ffff99;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}

.important-note h4 {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.important-note p {
  margin: 5px 0;
  color: #000;
}

.countdown-bar {
  background: #333;
  color: white;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.timer {
  font-size: 24px;
  font-weight: bold;
}

.timer .label {
  font-size: 14px;
  opacity: 0.8;
}

/* Media Queries */
@media (max-width: 768px) {
  .product-display {
    flex-direction: column;
  }

  .plus-sign {
    margin: 10px 0;
  }

  .buy-now-link {
    width: 250px;
  }

  .header-text h2,
  .main-offer {
    font-size: 18px;
  }
}

/* Buy Now Limited Template */
.buy-now-limited {
  padding: clamp(40px, 5vw, 100px) clamp(15px, 3vw, 40px);
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  position: relative;
}

/* Countdown Bar */
.countdown-bar {
  background: var(--primary-gradient);
  padding: 20px;
  margin-bottom: 40px;
  color: white;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 40px;
  border-radius: 100px;
  box-shadow: var(--neo-shadow);
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 700;
}

.timer-icon {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.time {
  font-size: 1.8rem;
  font-family: monospace;
  letter-spacing: 2px;
}

.label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Main Content */
.buy-now-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: clamp(30px, 4vw, 40px);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.program-title {
  margin: 25px 0;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.price-display {
  margin: 25px auto 0;
  padding: 20px;
  background: rgba(129, 183, 26, 0.1);
  border-radius: 15px;
  max-width: 300px;
}

.price-comparison {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.original {
  text-decoration: line-through;
  opacity: 0.7;
}

.savings {
  color: var(--primary-color);
  font-weight: 700;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Order Section */
.order-section {
  background: white;
  border-radius: 30px;
  padding: clamp(30px, 4vw, 40px);
  margin-bottom: 40px;
  box-shadow: var(--neo-shadow);
}

.secure-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 12px 25px;
  border-radius: 100px;
  margin: 0 auto 30px;
  width: fit-content;
}

.lock-icon {
  font-size: 1.2rem;
}

/* Urgency Message */
.urgency-message {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  margin: 30px auto;
  max-width: 600px;
  background: rgba(129, 183, 26, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(129, 183, 26, 0.2);
}

.message-icon {
  font-size: 2rem;
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

.message-text {
  text-align: left;
}

.message-text h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.message-text p {
  margin: 5px 0 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Product Showcase */
.product-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 800px;
}

.digital-product,
.physical-product {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  max-width: 300px;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--neo-shadow);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-info {
  margin-top: 15px;
  text-align: center;
}

.product-info h4 {
  color: var(--primary-color);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.product-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Countdown Message */
.countdown-message {
  text-align: center;
  margin: 30px 0;
  animation: bounce 2s infinite;
}

.arrow {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.countdown-message p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Buy Now Button */
.buy-now-button {
  display: block;
  text-decoration: none;
  margin: 40px auto;
  max-width: 400px;
  position: relative;
}

.button-content {
  background: var(--primary-gradient);
  padding: 20px 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.button-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(129, 183, 26, 0.2);
}

.button-text {
  color: white;
  text-align: left;
}

.main-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sub-text {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.button-price {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.secure-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: white;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Access Info */
.access-info {
  margin: 40px auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  box-shadow: var(--neo-shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(129, 183, 26, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
}

.info-icon {
  font-size: 24px;
  color: var(--primary-color);
}

.info-text h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-color);
}

.info-text p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Guarantee Section */
.guarantee-section {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  margin: 30px auto;
  max-width: 600px;
  box-shadow: var(--neo-shadow);
}

.guarantee-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.guarantee-content h4 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.guarantee-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-showcase {
    flex-direction: column;
  }

  .plus-sign {
    transform: rotate(90deg);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .timer {
    flex-direction: column;
    gap: 5px;
  }

  .urgency-message {
    flex-direction: column;
    text-align: center;
  }

  .message-text {
    text-align: center;
  }

  .button-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .button-price {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
  }

  .digital-product,
  .physical-product {
    max-width: 100%;
  }

  .secure-badge {
    position: relative;
    top: 10px;
    right: 0;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .buy-now-limited {
    padding: 20px 10px;
  }

  .countdown-bar {
    margin: 0 10px 30px;
  }

  .header-section,
  .order-section {
    padding: 20px;
  }
}
