/* style/index-hubet-exclusive-promotions.css */
.page-index-hubet-exclusive-promotions {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-index-hubet-exclusive-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-hubet-exclusive-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-hubet-exclusive-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-hubet-exclusive-promotions__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-hubet-exclusive-promotions__hero {
  background: linear-gradient(135deg, #0A192F 0%, #3a506b 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-index-hubet-exclusive-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-index-hubet-exclusive-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hubet-exclusive-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-hubet-exclusive-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-hubet-exclusive-promotions__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-index-hubet-exclusive-promotions__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-hubet-exclusive-promotions__hero-image-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.page-index-hubet-exclusive-promotions__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Hubet Section */
.page-index-hubet-exclusive-promotions__why-hubet {
  background-color: #1a2a40;
}

.page-index-hubet-exclusive-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-hubet-exclusive-promotions__feature-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-hubet-exclusive-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-hubet-exclusive-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-hubet-exclusive-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hubet-exclusive-promotions__feature-text {
  color: #C0C0C0;
}

/* Promotion Types Section */
.page-index-hubet-exclusive-promotions__promotion-types {
  background-color: #0A192F;
}

.page-index-hubet-exclusive-promotions__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-hubet-exclusive-promotions__promotion-card {
  background-color: #1a2a40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-index-hubet-exclusive-promotions__promotion-card:hover {
  transform: translateY(-5px);
}

.page-index-hubet-exclusive-promotions__card-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-hubet-exclusive-promotions__card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hubet-exclusive-promotions__card-text {
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-hubet-exclusive-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-index-hubet-exclusive-promotions__card-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* How to Claim Section */
.page-index-hubet-exclusive-promotions__how-to-claim {
  background-color: #1a2a40;
}

.page-index-hubet-exclusive-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-hubet-exclusive-promotions__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hubet-exclusive-promotions__step-number {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-index-hubet-exclusive-promotions__step-content {
  flex-grow: 1;
}

.page-index-hubet-exclusive-promotions__step-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-index-hubet-exclusive-promotions__step-text {
  color: #C0C0C0;
}

/* App Download Section */
.page-index-hubet-exclusive-promotions__app-download {
  background-color: #0A192F;
}

.page-index-hubet-exclusive-promotions__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-index-hubet-exclusive-promotions__app-text-wrapper {
  max-width: 600px;
}

.page-index-hubet-exclusive-promotions__app-image {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-index-hubet-exclusive-promotions__faq {
  background-color: #1a2a40;
}

.page-index-hubet-exclusive-promotions__accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-index-hubet-exclusive-promotions__accordion-item {
  background-color: #0A192F;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-hubet-exclusive-promotions__accordion-header {
  padding: 20px 25px;
  background-color: #2a3b50;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-hubet-exclusive-promotions__accordion-header:hover {
  background-color: #3a4b60;
}

.page-index-hubet-exclusive-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-hubet-exclusive-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-hubet-exclusive-promotions__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-hubet-exclusive-promotions__accordion-content p {
  padding-bottom: 20px;
  color: #C0C0C0;
}

/* Final CTA Section */
.page-index-hubet-exclusive-promotions__final-cta {
  background: linear-gradient(135deg, #3a506b 0%, #0A192F 100%);
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hubet-exclusive-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-hubet-exclusive-promotions__section-title {
    font-size: 2em;
  }
  .page-index-hubet-exclusive-promotions__features-grid,
  .page-index-hubet-exclusive-promotions__promotion-cards,
  .page-index-hubet-exclusive-promotions__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-hubet-exclusive-promotions__app-content {
    flex-direction: column;
  }
  .page-index-hubet-exclusive-promotions__app-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-index-hubet-exclusive-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-hubet-exclusive-promotions__hero-subtitle,
  .page-index-hubet-exclusive-promotions__section-description {
    font-size: 1em;
  }
  .page-index-hubet-exclusive-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-hubet-exclusive-promotions__section {
    padding: 40px 0;
  }
  .page-index-hubet-exclusive-promotions__feature-item,
  .page-index-hubet-exclusive-promotions__promotion-card,
  .page-index-hubet-exclusive-promotions__step-item {
    padding: 20px;
  }
  .page-index-hubet-exclusive-promotions__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-hubet-exclusive-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-hubet-exclusive-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-hubet-exclusive-promotions__features-grid,
  .page-index-hubet-exclusive-promotions__promotion-cards,
  .page-index-hubet-exclusive-promotions__steps-list {
    grid-template-columns: 1fr;
  }
  .page-index-hubet-exclusive-promotions__step-number {
    font-size: 1.5em;
  }
  .page-index-hubet-exclusive-promotions__step-title {
    font-size: 1.1em;
  }
  .page-index-hubet-exclusive-promotions__app-image {
    max-width: 250px;
  }
}