/* style/resources-fa-bet-promotions-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --button-login: #EA7C07;
}

.page-resources-fa-bet-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
}

.page-resources-fa-bet-promotions-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  text-align: center;
  overflow: hidden;
  background-color: var(--primary-color); /* Fallback, image will cover */
}

.page-resources-fa-bet-promotions-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.page-resources-fa-bet-promotions-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-resources-fa-bet-promotions-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-fa-bet-promotions-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-resources-fa-bet-promotions-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-fa-bet-promotions-guide__section {
  padding: 60px 20px;
}

.page-resources-fa-bet-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-light); /* Light text on dark background */
  background-color: var(--bg-dark);
}

.page-resources-fa-bet-promotions-guide__dark-section {
  background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent primary color */
  color: var(--text-light);
}

.page-resources-fa-bet-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-fa-bet-promotions-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-fa-bet-promotions-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-fa-bet-promotions-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-align: justify;
}

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

.page-resources-fa-bet-promotions-guide__promo-card,
.page-resources-fa-bet-promotions-guide__step-card {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white for cards on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-fa-bet-promotions-guide__promo-card:hover,
.page-resources-fa-bet-promotions-guide__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-fa-bet-promotions-guide__promo-image,
.page-resources-fa-bet-promotions-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-fa-bet-promotions-guide__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-fa-bet-promotions-guide__card-description {
  font-size: 1em;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-fa-bet-promotions-guide__btn-primary,
.page-resources-fa-bet-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-fa-bet-promotions-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-fa-bet-promotions-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-resources-fa-bet-promotions-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-fa-bet-promotions-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-fa-bet-promotions-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-fa-bet-promotions-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-fa-bet-promotions-guide__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--primary-color);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-fa-bet-promotions-guide__list-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-fa-bet-promotions-guide__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-fa-bet-promotions-guide__faq-container {
  margin-top: 40px;
}

.page-resources-fa-bet-promotions-guide__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-fa-bet-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2); /* Lighter primary for question */
  color: var(--secondary-color);
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-fa-bet-promotions-guide__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.3);
}

.page-resources-fa-bet-promotions-guide__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.page-resources-fa-bet-promotions-guide__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-fa-bet-promotions-guide__faq-item.active .page-resources-fa-bet-promotions-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-fa-bet-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-light);
}

.page-resources-fa-bet-promotions-guide__faq-item.active .page-resources-fa-bet-promotions-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px;
}

.page-resources-fa-bet-promotions-guide__faq-answer p {
  margin-bottom: 15px;
  font-size: 1em;
  color: var(--text-light);
}

.page-resources-fa-bet-promotions-guide__cta-section {
  background-color: var(--primary-color);
  padding: 80px 20px;
  text-align: center;
  color: var(--secondary-color);
}

.page-resources-fa-bet-promotions-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-fa-bet-promotions-guide__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-resources-fa-bet-promotions-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-fa-bet-promotions-guide__btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Image Optimization & Responsive */
.page-resources-fa-bet-promotions-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-resources-fa-bet-promotions-guide__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

  .page-resources-fa-bet-promotions-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-fa-bet-promotions-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-fa-bet-promotions-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-fa-bet-promotions-guide__section-title {
    font-size: 2em;
  }

  .page-resources-fa-bet-promotions-guide__paragraph {
    font-size: 1em;
  }

  .page-resources-fa-bet-promotions-guide__promotions-grid,
  .page-resources-fa-bet-promotions-guide__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-fa-bet-promotions-guide__promo-card,
  .page-resources-fa-bet-promotions-guide__step-card {
    padding: 20px;
  }

  .page-resources-fa-bet-promotions-guide__card-title {
    font-size: 1.3em;
  }

  .page-resources-fa-bet-promotions-guide__list-item {
    padding: 15px 20px;
  }

  .page-resources-fa-bet-promotions-guide__list-title {
    font-size: 1.1em;
  }

  .page-resources-fa-bet-promotions-guide__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-fa-bet-promotions-guide__cta-title {
    font-size: 2em;
  }

  .page-resources-fa-bet-promotions-guide__cta-description {
    font-size: 1em;
  }

  .page-resources-fa-bet-promotions-guide__cta-buttons {
    flex-direction: column;
  }

  /* Force responsive for all images */
  .page-resources-fa-bet-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Ensure all containers for images/videos/buttons are responsive */
  .page-resources-fa-bet-promotions-guide__section,
  .page-resources-fa-bet-promotions-guide__container,
  .page-resources-fa-bet-promotions-guide__promo-card,
  .page-resources-fa-bet-promotions-guide__step-card,
  .page-resources-fa-bet-promotions-guide__faq-item,
  .page-resources-fa-bet-promotions-guide__cta-section,
  .page-resources-fa-bet-promotions-guide__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons specific mobile styles */
  .page-resources-fa-bet-promotions-guide__btn-primary,
  .page-resources-fa-bet-promotions-guide__btn-secondary,
  .page-resources-fa-bet-promotions-guide a[class*="button"],
  .page-resources-fa-bet-promotions-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-fa-bet-promotions-guide__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
}