/* style/index-exclusive-offers.css */
.page-index-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-index-exclusive-offers__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-exclusive-offers__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

.page-index-exclusive-offers__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-index-exclusive-offers__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-index-exclusive-offers__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-exclusive-offers__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-exclusive-offers__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-index-exclusive-offers__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-index-exclusive-offers__btn--text {
  background: none;
  border: none;
  color: #FFD700;
  text-decoration: underline;
  padding: 0;
}

.page-index-exclusive-offers__btn--text:hover {
  color: #e6c200;
}

/* Hero Section */
.page-index-exclusive-offers__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5B 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-offers__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,dark_blue,gold_accents]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-exclusive-offers__hero-section > .page-index-exclusive-offers__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-index-exclusive-offers__hero-content {
  flex: 1;
  text-align: left;
}

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

.page-index-exclusive-offers__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 600px;
}

.page-index-exclusive-offers__hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-exclusive-offers__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Featured Offers Section */
.page-index-exclusive-offers__featured-offers {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-exclusive-offers__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-exclusive-offers__offer-card {
  background-color: #1A3A5B; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-offers__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offers__offer-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-index-exclusive-offers__offer-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-exclusive-offers__offer-text {
  color: #C0C0C0;
  margin-bottom: 25px;
  font-size: 1em;
}

/* Why 789P Offers Section */
.page-index-exclusive-offers__why-789p-offers {
  padding: 80px 0;
  background-color: #0F2A4C;
}

.page-index-exclusive-offers__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-index-exclusive-offers__feature-list li {
  background-color: #1A3A5B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index-exclusive-offers__feature-list h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-exclusive-offers__feature-list p {
  color: #C0C0C0;
}

/* How to Claim Section */
.page-index-exclusive-offers__how-to-claim {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-exclusive-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-exclusive-offers__step-card {
  background-color: #1A3A5B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__step-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-index-exclusive-offers__step-number {
  font-size: 2.2em;
  font-weight: bold;
  color: #0A2342;
}

.page-index-exclusive-offers__step-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-exclusive-offers__step-card p {
  color: #C0C0C0;
}

.page-index-exclusive-offers__cta-bottom {
  text-align: center;
}

/* Game Categories Section */
.page-index-exclusive-offers__game-categories {
  padding: 80px 0;
  background-color: #0F2A4C;
}

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

.page-index-exclusive-offers__category-card {
  background-color: #1A3A5B;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__category-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #FFD700;
}

.page-index-exclusive-offers__category-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-exclusive-offers__category-card p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* App CTA Section */
.page-index-exclusive-offers__app-cta {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-exclusive-offers__app-cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background-color: #1A3A5B;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offers__app-text {
  flex: 1;
  text-align: left;
}

.page-index-exclusive-offers__app-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: bold;
}

.page-index-exclusive-offers__app-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-index-exclusive-offers__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-exclusive-offers__app-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

/* Responsible Gambling Section */
.page-index-exclusive-offers__responsible-gambling {
  padding: 80px 0;
  background-color: #0F2A4C;
  text-align: center;
}

/* FAQ Section */
.page-index-exclusive-offers__faq {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-exclusive-offers__faq-item {
  background-color: #1A3A5B;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-exclusive-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-exclusive-offers__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-exclusive-offers__faq-answer {
  color: #C0C0C0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-exclusive-offers__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-exclusive-offers__hero-section > .page-index-exclusive-offers__container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-exclusive-offers__hero-content,
  .page-index-exclusive-offers__hero-image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-index-exclusive-offers__hero-title {
    font-size: 2.8em;
  }

  .page-index-exclusive-offers__hero-description {
    font-size: 1.1em;
    max-width: none;
  }

  .page-index-exclusive-offers__hero-cta-group {
    justify-content: center;
  }

  .page-index-exclusive-offers__app-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index-exclusive-offers__app-text,
  .page-index-exclusive-offers__app-image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-index-exclusive-offers__app-image {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-offers__section-title {
    font-size: 2em;
  }

  .page-index-exclusive-offers__hero-title {
    font-size: 2.2em;
  }

  .page-index-exclusive-offers__hero-description {
    font-size: 1em;
  }

  .page-index-exclusive-offers__offer-grid,
  .page-index-exclusive-offers__feature-list,
  .page-index-exclusive-offers__steps-grid,
  .page-index-exclusive-offers__category-cards {
    grid-template-columns: 1fr;
  }

  .page-index-exclusive-offers__app-title {
    font-size: 1.8em;
  }

  .page-index-exclusive-offers__app-image {
    max-width: 80%;
  }

  .page-index-exclusive-offers__offer-image {
    height: 150px;
  }

  .page-index-exclusive-offers__category-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-offers__hero-section,
  .page-index-exclusive-offers__featured-offers,
  .page-index-exclusive-offers__why-789p-offers,
  .page-index-exclusive-offers__how-to-claim,
  .page-index-exclusive-offers__game-categories,
  .page-index-exclusive-offers__app-cta,
  .page-index-exclusive-offers__responsible-gambling,
  .page-index-exclusive-offers__faq {
    padding: 40px 0;
  }

  .page-index-exclusive-offers__hero-title {
    font-size: 1.8em;
  }

  .page-index-exclusive-offers__section-title {
    font-size: 1.6em;
  }

  .page-index-exclusive-offers__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-exclusive-offers__btn {
    width: 100%;
  }

  .page-index-exclusive-offers__app-title {
    font-size: 1.5em;
  }
}