/* style/resources-new-player-bonuses.css */
.page-resources-new-player-bonuses {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so use light text */
}

.page-resources-new-player-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-new-player-bonuses__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-new-player-bonuses__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-new-player-bonuses__hero-section {
  position: relative;
  padding: 100px 0 60px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
}

.page-resources-new-player-bonuses__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-resources-new-player-bonuses__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-new-player-bonuses__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-new-player-bonuses__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-new-player-bonuses__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-new-player-bonuses__btn-primary,
.page-resources-new-player-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-new-player-bonuses__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-new-player-bonuses__btn-primary:hover {
  background-color: #d46c06;
  border-color: #d46c06;
}

.page-resources-new-player-bonuses__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-new-player-bonuses__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-new-player-bonuses__content-area {
  padding: 60px 0;
}

.page-resources-new-player-bonuses__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-new-player-bonuses__light-bg .page-resources-new-player-bonuses__section-title,
.page-resources-new-player-bonuses__light-bg .page-resources-new-player-bonuses__sub-section-title {
  color: #000000;
}

.page-resources-new-player-bonuses__dark-bg .page-resources-new-player-bonuses__section-title,
.page-resources-new-player-bonuses__dark-bg .page-resources-new-player-bonuses__sub-section-title {
  color: #ffffff;
}

.page-resources-new-player-bonuses__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-new-player-bonuses__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-new-player-bonuses__ordered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-new-player-bonuses__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-new-player-bonuses__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-new-player-bonuses__image--center {
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-new-player-bonuses__card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-new-player-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-new-player-bonuses__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-new-player-bonuses__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-new-player-bonuses__card-text {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

.page-resources-new-player-bonuses__card .page-resources-new-player-bonuses__btn-primary,
.page-resources-new-player-bonuses__card .page-resources-new-player-bonuses__btn-secondary {
  width: 100%;
  max-width: 250px;
  margin-top: auto;
}

.page-resources-new-player-bonuses__sub-section-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-new-player-bonuses__faq-list {
  margin-top: 40px;
}

.page-resources-new-player-bonuses__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-new-player-bonuses__light-bg .page-resources-new-player-bonuses__faq-item {
  background-color: #f9f9f9;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-new-player-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  background-color: rgba(38, 169, 224, 0.8);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.page-resources-new-player-bonuses__light-bg .page-resources-new-player-bonuses__faq-question {
  background-color: #26A9E0;
  color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-resources-new-player-bonuses__faq-question:hover {
  background-color: #208cb9;
}

.page-resources-new-player-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-new-player-bonuses__faq-item.active .page-resources-new-player-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-new-player-bonuses__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-new-player-bonuses__faq-item.active .page-resources-new-player-bonuses__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-resources-new-player-bonuses__faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: justify;
}

.page-resources-new-player-bonuses__light-bg .page-resources-new-player-bonuses__faq-answer p {
  color: #333333;
}

.page-resources-new-player-bonuses__dark-bg .page-resources-new-player-bonuses__faq-answer p {
  color: #ffffff;
}

.page-resources-new-player-bonuses__cta-buttons--bottom {
  margin-top: 60px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-new-player-bonuses__hero-title {
    font-size: 3em;
  }
  .page-resources-new-player-bonuses__section-title {
    font-size: 2em;
  }
  .page-resources-new-player-bonuses__sub-section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-new-player-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-new-player-bonuses__hero-section {
    padding: 80px 0 40px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-new-player-bonuses__hero-title {
    font-size: 2.5em;
  }
  .page-resources-new-player-bonuses__hero-description {
    font-size: 1em;
  }
  .page-resources-new-player-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-new-player-bonuses__btn-primary,
  .page-resources-new-player-bonuses__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-new-player-bonuses__content-area {
    padding: 40px 0;
  }
  .page-resources-new-player-bonuses__section-title {
    font-size: 1.8em;
  }
  .page-resources-new-player-bonuses__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-new-player-bonuses__card-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-new-player-bonuses__card {
    padding: 20px;
  }
  .page-resources-new-player-bonuses__faq-question {
    font-size: 1.1em;
  }

  /* Mobile image and video responsive adaptation */
  .page-resources-new-player-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-new-player-bonuses video,
  .page-resources-new-player-bonuses__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-new-player-bonuses__section,
  .page-resources-new-player-bonuses__card,
  .page-resources-new-player-bonuses__container,
  .page-resources-new-player-bonuses__video-section,
  .page-resources-new-player-bonuses__video-container,
  .page-resources-new-player-bonuses__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-new-player-bonuses__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}