/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  background: #000;
}

.dark-background {
  background: linear-gradient(180deg, #000, #111);
  padding: 2rem;
}

/* Header Image */
.header-image {
  text-align: center;
  margin-bottom: 2rem;
}

.header-image .banner-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Header Section */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 0.5rem;
  font-style: italic;
}

/* How It Works Section */
.how-it-works {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 2rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  background: #222;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  text-align: center;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
}

.highlight {
  color: #ff0000;
  font-weight: bold;
}

.arrow {
  font-size: 2rem;
  color: #fff;
  margin: 1rem 0;
}

/* CTA Section */
.cta-section {
  margin-top: 3rem;
}

.cta-image {
  text-align: center;
  margin-bottom: 2rem;
}

.cta-image .banner-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cta-description {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.cta-header {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #ff0000;
  margin: 1rem 0;
}

.cta-subtext {
  font-size: 1rem;
  color: #aaa;
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
}

.cta-button {
  display: block;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #cc0000;
}

/* Timer Section */
.below-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.below-cta-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

.timer {
  font-size: 1.8rem; /* Increased size for prominence */
  color: #ff0000; /* Bright red to stand out */
  font-weight: bold;
  background: #222; /* Dark background for contrast */
  padding: 0.5rem 1.5rem;
  border-radius: 10px; /* Rounded corners */
  display: inline-block;
  margin: 0.5rem auto;
  box-shadow: 0 6px 12px rgba(255, 0, 0, 0.7); /* Slight glow effect */
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timer {
    font-size: 2rem; /* Adjusted size for smaller screens */
  }
}
