/* style/promotions-limited-time-offers.css */
.page-promotions-limited-time-offers {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-promotions-limited-time-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-limited-time-offers__section {
  padding: 60px 0;
}

.page-promotions-limited-time-offers__section-title {
  color: #FFD700; /* Auxiliary gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-promotions-limited-time-offers__text-center {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-promotions-limited-time-offers__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.05em;
  text-align: center;
}

.page-promotions-limited-time-offers__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-promotions-limited-time-offers__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-limited-time-offers__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary actions */
  border: 2px solid #FFD700;
}

.page-promotions-limited-time-offers__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-promotions-limited-time-offers__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

/* Hero Section */
.page-promotions-limited-time-offers__hero {
  background: linear-gradient(135deg, #0A192F 0%, #203550 100%); /* Gradient dark blue */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-promotions-limited-time-offers__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-offers__hero-subtitle {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About hubet Section */
.page-promotions-limited-time-offers__about-hubet p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #c0c0c0;
}

.page-promotions-limited-time-offers__about-hubet strong {
  color: #FFD700;
}

.page-promotions-limited-time-offers__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__image--full-width {
  width: 100%;
}

.page-promotions-limited-time-offers__image--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section */
.page-promotions-limited-time-offers__why-choose .page-promotions-limited-time-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-limited-time-offers__why-choose .page-promotions-limited-time-offers__grid-item {
  background-color: #1a2c40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #FFD700;
}

.page-promotions-limited-time-offers__why-choose .page-promotions-limited-time-offers__grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__why-choose .page-promotions-limited-time-offers__grid-item p {
  color: #c0c0c0;
  font-size: 1em;
}

/* Featured Offers */
.page-promotions-limited-time-offers__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-limited-time-offers__offer-card {
  background-color: #1a2c40;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers__offer-card:hover {
  transform: translateY(-5px);
}

.page-promotions-limited-time-offers__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions-limited-time-offers__offer-content {
  padding: 25px;
}

.page-promotions-limited-time-offers__offer-content h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__offer-content p {
  color: #c0c0c0;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__validity {
  font-style: italic;
  color: #888;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-promotions-limited-time-offers__validity span {
  color: #FFD700;
  font-weight: bold;
}

/* How To Claim */
.page-promotions-limited-time-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-limited-time-offers__step-item {
  background-color: #1a2c40;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__step-icon {
  background-color: #FFD700;
  color: #0A192F;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-promotions-limited-time-offers__step-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__step-item p {
  color: #c0c0c0;
  font-size: 1em;
}

/* Terms and Conditions */
.page-promotions-limited-time-offers__list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-promotions-limited-time-offers__list li {
  background-color: #1a2c40;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  color: #c0c0c0;
  font-size: 1.05em;
}

.page-promotions-limited-time-offers__list li strong {
  color: #FFD700;
  font-size: 1.1em;
}

/* Safety Section */
.page-promotions-limited-time-offers__safety p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #c0c0c0;
}

/* FAQ Section */
.page-promotions-limited-time-offers__accordion {
  margin-top: 40px;
}

.page-promotions-limited-time-offers__accordion-item {
  background-color: #1a2c40;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-limited-time-offers__accordion-header {
  width: 100%;
  background-color: #2a3e59; /* Slightly lighter dark blue for header */
  color: #FFD700;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.25em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-limited-time-offers__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-limited-time-offers__accordion-content {
  padding: 0 25px;
  background-color: #1a2c40;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions-limited-time-offers__accordion-content p {
  padding: 15px 0;
  color: #c0c0c0;
  font-size: 1.05em;
}

/* Bottom CTA */
.page-promotions-limited-time-offers__cta-bottom {
  background-color: #1a2c40;
  text-align: center;
  padding: 80px 0;
  border-top: 5px solid #FFD700;
}

.page-promotions-limited-time-offers__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #c0c0c0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-limited-time-offers__hero-title {
    font-size: 3em;
  }
  .page-promotions-limited-time-offers__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-limited-time-offers__section-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-offers__offers-grid,
  .page-promotions-limited-time-offers__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-offers__hero {
    padding: 80px 0;
  }
  .page-promotions-limited-time-offers__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-limited-time-offers__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-limited-time-offers__section {
    padding: 40px 0;
  }
  .page-promotions-limited-time-offers__section-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-offers__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions-limited-time-offers__offers-grid,
  .page-promotions-limited-time-offers__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-limited-time-offers__why-choose .page-promotions-limited-time-offers__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-offers__hero-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-offers__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-limited-time-offers__btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-promotions-limited-time-offers__container {
    padding: 0 15px;
  }
  .page-promotions-limited-time-offers__offer-content h3 {
    font-size: 1.4em;
  }
  .page-promotions-limited-time-offers__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-limited-time-offers__accordion-content p {
    font-size: 0.95em;
    padding: 10px 0;
  }
}