/* style/resources-f88-game-guide.css */

/* Base styles for the page content */
.page-resources-f88-game-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-f88-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-f88-game-guide__section {
  padding: 60px 0;
}

.page-resources-f88-game-guide__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-f88-game-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-f88-game-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-f88-game-guide__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-f88-game-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Hero Section */
.page-resources-f88-game-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px; /* Adjust as needed */
  overflow: hidden;
}

.page-resources-f88-game-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-f88-game-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-resources-f88-game-guide__hero-section .page-resources-f88-game-guide__container {
  position: relative;
  z-index: 1;
  padding-top: 50px; /* Additional spacing for content over image */
  padding-bottom: 50px;
}

.page-resources-f88-game-guide__main-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-f88-game-guide__intro-text {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-f88-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Buttons */
.page-resources-f88-game-guide__btn-primary,
.page-resources-f88-game-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-f88-game-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-f88-game-guide__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-resources-f88-game-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-f88-game-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-f88-game-guide__btn-text {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-f88-game-guide__btn-text:hover {
  color: #1a8cc4;
  text-decoration: underline;
}

/* Lists */
.page-resources-f88-game-guide__numbered-list {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-f88-game-guide__numbered-list li,
.page-resources-f88-game-guide__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-f88-game-guide__bullet-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

/* Game Grid */
.page-resources-f88-game-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-f88-game-guide__game-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-resources-f88-game-guide__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-resources-f88-game-guide__game-card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-f88-game-guide__game-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-f88-game-guide__game-card-title a:hover {
  text-decoration: underline;
}

.page-resources-f88-game-guide__game-card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Feature Grid */
.page-resources-f88-game-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-f88-game-guide__feature-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  color: #333333;
}

.page-resources-f88-game-guide__feature-card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-resources-f88-game-guide__feature-card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-f88-game-guide__feature-card-description {
  font-size: 1em;
  color: #555555;
}

/* FAQ Section */
.page-resources-f88-game-guide__faq-list {
  margin-top: 40px;
}

.page-resources-f88-game-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-f88-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background-color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-f88-game-guide__faq-question:hover {
  background-color: #1a8cc4;
}

.page-resources-f88-game-guide__faq-toggle {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-f88-game-guide__faq-item.active .page-resources-f88-game-guide__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-f88-game-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-f88-game-guide__faq-item.active .page-resources-f88-game-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-f88-game-guide__faq-answer p {
  margin-bottom: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-f88-game-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-f88-game-guide__container {
    padding: 0 15px;
  }

  .page-resources-f88-game-guide__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-f88-game-guide__main-title {
    font-size: 2.2em;
  }

  .page-resources-f88-game-guide__intro-text {
    font-size: 1em;
  }

  .page-resources-f88-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-f88-game-guide__btn-primary,
  .page-resources-f88-game-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-resources-f88-game-guide__section-title {
    font-size: 2em;
  }

  .page-resources-f88-game-guide__sub-title {
    font-size: 1.5em;
  }

  .page-resources-f88-game-guide__text-block {
    font-size: 1em;
  }

  .page-resources-f88-game-guide__game-grid,
  .page-resources-f88-game-guide__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-f88-game-guide__game-card-image,
  .page-resources-f88-game-guide__feature-card-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
  }

  /* Ensure all images in content sections are responsive */
  .page-resources-f88-game-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all containers with images/videos are responsive */
  .page-resources-f88-game-guide__section,
  .page-resources-f88-game-guide__card,
  .page-resources-f88-game-guide__container,
  .page-resources-f88-game-guide__game-card,
  .page-resources-f88-game-guide__feature-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-f88-game-guide__faq-question {
    font-size: 1.1em;
  }

  .page-resources-f88-game-guide__faq-answer {
    padding: 0 15px;
  }

  .page-resources-f88-game-guide__faq-item.active .page-resources-f88-game-guide__faq-answer {
    padding: 15px;
  }
}