/* style/index-iwin-exclusive-promotions.css */
.page-index-iwin-exclusive-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
}

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

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

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

.page-index-iwin-exclusive-promotions__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CCCCCC; /* Slightly lighter grey for descriptions */
}

.page-index-iwin-exclusive-promotions__text-center {
  text-align: center;
}

/* Hero Section */
.page-index-iwin-exclusive-promotions__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-iwin-exclusive-promotions__hero-subtitle {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 900px;
  line-height: 1.5;
}

.page-index-iwin-exclusive-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-index-iwin-exclusive-promotions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-iwin-exclusive-promotions__hero-image-wrapper {
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
  position: relative;
}

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

/* Why iwin Section */
.page-index-iwin-exclusive-promotions__why-iwin {
  background-color: #122847; /* Slightly lighter dark blue */
}

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

.page-index-iwin-exclusive-promotions__feature-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-index-iwin-exclusive-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-index-iwin-exclusive-promotions__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-iwin-exclusive-promotions__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

/* Promotion Categories Section */
.page-index-iwin-exclusive-promotions__promotion-categories {
  background-color: #0A1931;
}

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

.page-index-iwin-exclusive-promotions__card {
  background-color: #122847;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-iwin-exclusive-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-index-iwin-exclusive-promotions__card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-index-iwin-exclusive-promotions__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-index-iwin-exclusive-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-iwin-exclusive-promotions__card-button:hover {
  background-color: #e6c200;
}

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

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

.page-index-iwin-exclusive-promotions__steps-list li {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-iwin-exclusive-promotions__step-icon-wrapper {
  background-color: #FFD700;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-index-iwin-exclusive-promotions__step-icon {
  width: 50px;
  height: 50px;
  filter: invert(10%) sepia(100%) saturate(7400%) hue-rotate(217deg) brightness(80%) contrast(120%); /* Convert gold icon to dark blue */
}

.page-index-iwin-exclusive-promotions__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-iwin-exclusive-promotions__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-index-iwin-exclusive-promotions__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-iwin-exclusive-promotions__step-button:hover {
  background-color: #e6c200;
}

.page-index-iwin-exclusive-promotions__note {
  font-size: 0.9em;
  color: #AAAAAA;
  margin-top: 40px;
  text-align: center;
}

/* Game Types Section */
.page-index-iwin-exclusive-promotions__game-types {
  background-color: #0A1931;
}

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

.page-index-iwin-exclusive-promotions__game-item {
  background-color: #122847;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-iwin-exclusive-promotions__game-item:hover {
  transform: translateY(-10px);
}

.page-index-iwin-exclusive-promotions__game-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-index-iwin-exclusive-promotions__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-iwin-exclusive-promotions__game-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

/* Mobile App Section */
.page-index-iwin-exclusive-promotions__mobile-app {
  background-color: #122847;
}

.page-index-iwin-exclusive-promotions__mobile-app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-index-iwin-exclusive-promotions__mobile-app-text {
  flex: 1;
  min-width: 300px;
}

.page-index-iwin-exclusive-promotions__mobile-app-text .page-index-iwin-exclusive-promotions__section-title {
  text-align: left;
}

.page-index-iwin-exclusive-promotions__mobile-app-text .page-index-iwin-exclusive-promotions__section-description {
  text-align: left;
  margin-left: 0;
}

.page-index-iwin-exclusive-promotions__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-index-iwin-exclusive-promotions__app-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-index-iwin-exclusive-promotions__app-features li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-iwin-exclusive-promotions__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

/* Safety Section */
.page-index-iwin-exclusive-promotions__safety {
  background-color: #0A1931;
}

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

.page-index-iwin-exclusive-promotions__safety-item {
  background-color: #122847;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-iwin-exclusive-promotions__safety-item:hover {
  transform: translateY(-10px);
}

.page-index-iwin-exclusive-promotions__safety-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-index-iwin-exclusive-promotions__safety-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-iwin-exclusive-promotions__safety-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

/* FAQ Section */
.page-index-iwin-exclusive-promotions__faq {
  background-color: #122847;
}

.page-index-iwin-exclusive-promotions__faq-item {
  background-color: #0A1931;
  margin-top: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

.page-index-iwin-exclusive-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-iwin-exclusive-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-iwin-exclusive-promotions__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-index-iwin-exclusive-promotions__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
  padding-top: 15px;
}

/* Final CTA Section */
.page-index-iwin-exclusive-promotions__final-cta {
  background-color: #0A1931;
  padding-bottom: 100px;
}

.page-index-iwin-exclusive-promotions__large-button {
  padding: 20px 50px;
  font-size: 1.5em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-iwin-exclusive-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-iwin-exclusive-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-iwin-exclusive-promotions__section-title {
    font-size: 2.2em;
  }
  .page-index-iwin-exclusive-promotions__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-iwin-exclusive-promotions__mobile-app-text .page-index-iwin-exclusive-promotions__section-title,
  .page-index-iwin-exclusive-promotions__mobile-app-text .page-index-iwin-exclusive-promotions__section-description {
    text-align: center;
  }
  .page-index-iwin-exclusive-promotions__app-features {
    text-align: left;
    margin: 30px auto;
    max-width: 400px; /* Constrain list width for better readability */
  }
}

@media (max-width: 768px) {
  .page-index-iwin-exclusive-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-iwin-exclusive-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-iwin-exclusive-promotions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-iwin-exclusive-promotions__section {
    padding: 60px 0;
  }
  .page-index-iwin-exclusive-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-iwin-exclusive-promotions__grid, .page-index-iwin-exclusive-promotions__steps-list, .page-index-iwin-exclusive-promotions__safety-points {
    grid-template-columns: 1fr;
  }
  .page-index-iwin-exclusive-promotions__card, .page-index-iwin-exclusive-promotions__feature-item, .page-index-iwin-exclusive-promotions__steps-list li, .page-index-iwin-exclusive-promotions__game-item, .page-index-iwin-exclusive-promotions__safety-item {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-index-iwin-exclusive-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-iwin-exclusive-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-iwin-exclusive-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-iwin-exclusive-promotions__section {
    padding: 40px 0;
  }
  .page-index-iwin-exclusive-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-iwin-exclusive-promotions__feature-title, .page-index-iwin-exclusive-promotions__card-title, .page-index-iwin-exclusive-promotions__step-title, .page-index-iwin-exclusive-promotions__game-title, .page-index-iwin-exclusive-promotions__safety-title {
    font-size: 1.4em;
  }
  .page-index-iwin-exclusive-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-index-iwin-exclusive-promotions__large-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}