/* style/resources-latest-promotions-analysis.css */

/* Global styles for the page content */
.page-resources-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
  line-height: 1.6;
}

.page-resources-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-latest-promotions-analysis__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promotions-analysis__image-content--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-resources-latest-promotions-analysis__btn-primary,
.page-resources-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-resources-latest-promotions-analysis__btn-primary {
  background-color: #FFD700; /* Gold background */
  color: #1A202C; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-latest-promotions-analysis__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-latest-promotions-analysis__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-latest-promotions-analysis__link-in-text {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-latest-promotions-analysis__link-in-text:hover {
  color: #e6c200;
}

/* Hero Section */
.page-resources-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-resources-latest-promotions-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-latest-promotions-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-resources-latest-promotions-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* Introduction Section */
.page-resources-latest-promotions-analysis__introduction-section {
  padding: 80px 0;
  background-color: #1A202C; /* Dark background from brand colors */
}

/* Promo Types Section */
.page-resources-latest-promotions-analysis__promo-types-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Main body background */
}

.page-resources-latest-promotions-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-latest-promotions-analysis__card {
  background-color: #1A202C; /* Dark background from brand colors */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.page-resources-latest-promotions-analysis__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-latest-promotions-analysis__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #f0f0f0;
}

/* How to Claim Section */
.page-resources-latest-promotions-analysis__how-to-claim-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-resources-latest-promotions-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-latest-promotions-analysis__step-item {
  background-color: rgba(0, 0, 0, 0.4); /* Slightly transparent dark for steps */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-promotions-analysis__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-resources-latest-promotions-analysis__step-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-latest-promotions-analysis__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Terms & Conditions Section */
.page-resources-latest-promotions-analysis__terms-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-resources-latest-promotions-analysis__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-latest-promotions-analysis__terms-list li {
  background-color: #1A202C;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-resources-latest-promotions-analysis__terms-list li strong {
  color: #FFD700;
}

/* Responsible Gaming Section */
.page-resources-latest-promotions-analysis__responsible-gaming-section {
  padding: 80px 0;
  background-color: #1A202C;
}

/* FAQ Section */
.page-resources-latest-promotions-analysis__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-resources-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-promotions-analysis__faq-item {
  background-color: #1A202C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1A202C;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-latest-promotions-analysis__faq-question:hover {
  background-color: #2a313e; /* Slightly lighter dark for hover */
}

.page-resources-latest-promotions-analysis__faq-title {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ question */
  font-weight: bold;
}

.page-resources-latest-promotions-analysis__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #2a313e; /* Slightly lighter dark for answer background */
  color: #f0f0f0;
}

.page-resources-latest-promotions-analysis__faq-item.active .page-resources-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-resources-latest-promotions-analysis__faq-answer p {
  margin: 0;
  color: #f0f0f0;
  font-size: 1.05em;
}

/* Conclusion Section */
.page-resources-latest-promotions-analysis__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1A202C;
}

.page-resources-latest-promotions-analysis__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-promotions-analysis__hero-title {
    font-size: 3em;
  }
  .page-resources-latest-promotions-analysis__hero-description {
    font-size: 1.2em;
  }
  .page-resources-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-resources-latest-promotions-analysis__card-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-latest-promotions-analysis__container {
    padding: 0 15px !important; /* Important for mobile overflow */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-promotions-analysis__hero-section {
    height: auto;
    min-height: 60vh;
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset on mobile */
  }

  .page-resources-latest-promotions-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-resources-latest-promotions-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-promotions-analysis__btn-primary,
  .page-resources-latest-promotions-analysis__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-latest-promotions-analysis__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px; /* Add padding to container */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-latest-promotions-analysis__text-block,
  .page-resources-latest-promotions-analysis__card-text,
  .page-resources-latest-promotions-analysis__step-text,
  .page-resources-latest-promotions-analysis__terms-list li p,
  .page-resources-latest-promotions-analysis__faq-answer p {
    font-size: 0.95em;
  }

  .page-resources-latest-promotions-analysis__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure video responsiveness (if any, though not explicitly in content for this page) */
  .page-resources-latest-promotions-analysis video,
  .page-resources-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-latest-promotions-analysis__video-section,
  .page-resources-latest-promotions-analysis__video-container,
  .page-resources-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Specific padding for sections on mobile */
  .page-resources-latest-promotions-analysis__introduction-section,
  .page-resources-latest-promotions-analysis__promo-types-section,
  .page-resources-latest-promotions-analysis__how-to-claim-section,
  .page-resources-latest-promotions-analysis__terms-section,
  .page-resources-latest-promotions-analysis__responsible-gaming-section,
  .page-resources-latest-promotions-analysis__faq-section,
  .page-resources-latest-promotions-analysis__conclusion-section {
    padding: 40px 0;
  }

  .page-resources-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
  }

  .page-resources-latest-promotions-analysis__faq-title {
    font-size: 1.1em;
  }

  .page-resources-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-promotions-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-resources-latest-promotions-analysis__hero-description {
    font-size: 0.9em;
  }
  .page-resources-latest-promotions-analysis__section-title {
    font-size: 1.5em;
  }
  .page-resources-latest-promotions-analysis__card-title {
    font-size: 1.4em;
  }
}