/* style/resources-gameplay-and-strategy.css */
.page-resources-gameplay-and-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so text color is white */
  background-color: transparent; /* Main content area will inherit body background */
}

.page-resources-gameplay-and-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-gameplay-and-strategy__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #26A9E0; /* Brand color for hero */
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-gameplay-and-strategy__video-wrapper {
  margin: 40px auto;
  max-width: 1000px; /* Max width for the video container */
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-gameplay-and-strategy__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer; /* Indicate clickable */
}

.page-resources-gameplay-and-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-gameplay-and-strategy__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-resources-gameplay-and-strategy__btn-primary,
.page-resources-gameplay-and-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box; /* For responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-gameplay-and-strategy__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-gameplay-and-strategy__btn-primary:hover {
  background-color: #ff9933;
  border-color: #ff9933;
}

.page-resources-gameplay-and-strategy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-gameplay-and-strategy__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-gameplay-and-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-resources-gameplay-and-strategy__subsection-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-gameplay-and-strategy__introduction-section,
.page-resources-gameplay-and-strategy__bet-types-section,
.page-resources-gameplay-and-strategy__money-management-section,
.page-resources-gameplay-and-strategy__platform-selection-section,
.page-resources-gameplay-and-strategy__conclusion-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background from body */
  color: #ffffff; /* Light text */
}

.page-resources-gameplay-and-strategy__rules-section,
.page-resources-gameplay-and-strategy__strategies-section,
.page-resources-gameplay-and-strategy__tips-section,
.page-resources-gameplay-and-strategy__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for alternating sections */
  color: #ffffff; /* Light text */
}

.page-resources-gameplay-and-strategy__light-bg .page-resources-gameplay-and-strategy__section-title,
.page-resources-gameplay-and-strategy__light-bg .page-resources-gameplay-and-strategy__subsection-title {
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__dark-bg .page-resources-gameplay-and-strategy__section-title,
.page-resources-gameplay-and-strategy__dark-bg .page-resources-gameplay-and-strategy__subsection-title {
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-resources-gameplay-and-strategy__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-gameplay-and-strategy__text-block {
  flex: 1;
}

.page-resources-gameplay-and-strategy__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-gameplay-and-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-resources-gameplay-and-strategy__ordered-list,
.page-resources-gameplay-and-strategy__unordered-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-gameplay-and-strategy__ordered-list li,
.page-resources-gameplay-and-strategy__unordered-list li {
  margin-bottom: 10px;
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__sub-unordered-list {
  margin-left: 20px;
  list-style-type: circle;
}

/* FAQ Section */
.page-resources-gameplay-and-strategy__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-gameplay-and-strategy__faq-item {
  background-color: #2a2a2a; /* Darker background for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-gameplay-and-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0; /* Brand color for question header */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-gameplay-and-strategy__faq-question:hover {
  background-color: #1f8ac7; /* Slightly darker hover */
}

.page-resources-gameplay-and-strategy__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-gameplay-and-strategy__faq-item.active .page-resources-gameplay-and-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-gameplay-and-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #2a2a2a; /* Darker background for answer */
  color: #ffffff;
}

.page-resources-gameplay-and-strategy__faq-item.active .page-resources-gameplay-and-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-resources-gameplay-and-strategy__faq-answer p {
  margin-bottom: 10px;
  color: #ffffff;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-resources-gameplay-and-strategy__hero-title {
    font-size: 2.8em;
  }

  .page-resources-gameplay-and-strategy__section-title {
    font-size: 2em;
  }

  .page-resources-gameplay-and-strategy__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-gameplay-and-strategy__content-wrapper--reverse {
    flex-direction: column; /* Keep column for mobile, reverse order not as important */
  }

  .page-resources-gameplay-and-strategy__image-block {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-gameplay-and-strategy__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
    padding-bottom: 60px;
  }

  .page-resources-gameplay-and-strategy__hero-title {
    font-size: 2em;
  }

  .page-resources-gameplay-and-strategy__hero-description {
    font-size: 1em;
  }

  .page-resources-gameplay-and-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px; /* Add padding to wrapper for mobile */
    overflow: hidden !important;
  }
  .page-resources-gameplay-and-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-gameplay-and-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to buttons container */
  }

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