/* style/promotions.css */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: #0A2342; /* Main background color */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero > .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
  background-color: #1A3F6C; /* Darker blue from main palette */
  color: #FFD700;
  padding: 10px 20px;
  font-size: 0.95em;
  border: 1px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.section-padding {
  padding: 60px 0;
}

.section-bg-dark {
  background-color: #0A2342;
}

.section-bg-gold {
  background-color: #FFD700;
  color: #0A2342;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.section-bg-gold .page-promotions__section-title {
  color: #0A2342;
}

.page-promotions__text-content {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.section-bg-gold .page-promotions__text-content {
  color: #333;
}

.page-promotions__text-content--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

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

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

.page-promotions__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-promotions__feature-item p {
  color: #e0e0e0;
  font-size: 1em;
}

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background-color: #1A3F6C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__promo-title a:hover {
  color: #e6c200;
}

.page-promotions__promo-description {
  color: #c0c0c0;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__how-to-claim ol {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions__how-to-claim ol li {
  background-color: #1A3F6C;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon-wrapper {
  background-color: #FFD700;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-promotions__step-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: invert(100%) brightness(0); /* Make icons dark for gold background */
}

.page-promotions__how-to-claim h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__how-to-claim h4 a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__how-to-claim h4 a:hover {
  text-decoration: underline;
}

.page-promotions__how-to-claim p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-promotions__how-to-claim p a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__how-to-claim p a:hover {
  text-decoration: underline;
}

.page-promotions__responsible-gaming ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__responsible-gaming li {
  background-color: #1A3F6C;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  object-fit: contain;
  filter: invert(100%) brightness(0) sepia(100%) saturate(700%) hue-rotate(0deg); /* Goldish tint */
}

.page-promotions__faq-item {
  background-color: #1A3F6C;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-promotions__faq-question:hover {
  color: #e6c200;
}

.page-promotions__faq-answer {
  color: #c0c0c0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
  max-height: 200px; /* Adjust as needed for content, or use scrollHeight in JS */
}

.page-promotions__cta-content {
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-content .page-promotions__section-title {
  margin-bottom: 20px;
}

.page-promotions__cta-content .page-promotions__text-content {
  color: #333;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid,
  .page-promotions__features-grid,
  .page-promotions__how-to-claim ol {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__promo-grid,
  .page-promotions__features-grid,
  .page-promotions__how-to-claim ol {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-claim ol li {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__btn--primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__text-content {
    font-size: 0.95em;
  }
  .page-promotions__feature-item h3,
  .page-promotions__promo-title,
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
}