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

/* Base styles for the page */
.page-resources-sun88-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f5f5f5;
}

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

.page-resources-sun88-game-guide__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-sun88-game-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* Hero Section */
.page-resources-sun88-game-guide__hero-section {
  position: relative;
  padding: 120px 0 80px; /* Adjusted for header offset */
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #1A202C; /* Main brand color */
  padding-top: var(--header-offset, 120px);
}

.page-resources-sun88-game-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-resources-sun88-game-guide__hero-section .page-resources-sun88-game-guide__container {
  position: relative;
  z-index: 1;
}

.page-resources-sun88-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: #FFD700; /* Auxiliary color for emphasis */
}

.page-resources-sun88-game-guide__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-resources-sun88-game-guide__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-resources-sun88-game-guide__btn-primary,
.page-resources-sun88-game-guide__btn-secondary,
.page-resources-sun88-game-guide__btn-tertiary,
.page-resources-sun88-game-guide__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sun88-game-guide__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-resources-sun88-game-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-sun88-game-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-sun88-game-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-sun88-game-guide__btn-tertiary {
  background-color: #DC143C;
  color: #ffffff;
  border: 2px solid #DC143C;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-resources-sun88-game-guide__btn-tertiary:hover {
  background-color: #c01132;
  border-color: #c01132;
}

.page-resources-sun88-game-guide__btn-link {
  background: none;
  border: none;
  color: #DC143C;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-resources-sun88-game-guide__btn-link:hover {
  color: #a0102b;
}

/* Feature List Section */
.page-resources-sun88-game-guide__content-area {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-resources-sun88-game-guide__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-sun88-game-guide__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-resources-sun88-game-guide__feature-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-resources-sun88-game-guide__feature-item p {
  color: #555555;
  font-size: 0.95em;
}

/* Content Images */
.page-resources-sun88-game-guide__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Game Types Section */
.page-resources-sun88-game-guide__game-types-section {
  padding: 80px 0;
  background-color: #1A202C;
  color: #ffffff;
}

.page-resources-sun88-game-guide__game-types-section .page-resources-sun88-game-guide__section-title {
  color: #FFD700;
}

.page-resources-sun88-game-guide__game-types-section .page-resources-sun88-game-guide__section-description {
  color: #f0f0f0;
}

.page-resources-sun88-game-guide__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-sun88-game-guide__game-card {
  background-color: #2a3447;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-resources-sun88-game-guide__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-sun88-game-guide__game-card-title {
  font-size: 1.6em;
  margin: 20px 15px 10px;
  color: #FFD700;
}

.page-resources-sun88-game-guide__game-card-title a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-resources-sun88-game-card-text {
  color: #cccccc;
  font-size: 0.95em;
  padding: 0 15px;
  flex-grow: 1;
}

.page-resources-sun88-game-card .page-resources-sun88-game-guide__btn-tertiary {
  margin: 20px 15px;
}

/* How To Play Section */
.page-resources-sun88-game-guide__how-to-play-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-resources-sun88-game-guide__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-sun88-game-guide__step-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-resources-sun88-game-guide__step-card p {
  color: #555555;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-resources-sun88-game-guide__step-card .page-resources-sun88-game-guide__btn-link {
  margin-top: 20px;
}

/* Tips Section */
.page-resources-sun88-game-guide__tips-section {
  padding: 80px 0;
  background-color: #1A202C;
  color: #ffffff;
}

.page-resources-sun88-game-guide__tips-section .page-resources-sun88-game-guide__section-title {
  color: #FFD700;
}

.page-resources-sun88-game-guide__tips-section .page-resources-sun88-game-guide__section-description {
  color: #f0f0f0;
}

.page-resources-sun88-game-guide__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-sun88-game-guide__tip-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sun88-game-guide__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-sun88-game-guide__tip-item p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-resources-sun88-game-guide__tips-section .page-resources-sun88-game-guide__btn-primary {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-resources-sun88-game-guide__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-resources-sun88-game-guide__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-resources-sun88-game-guide__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sun88-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #f0f0f0;
  color: #1A202C;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-sun88-game-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-sun88-game-guide__faq-title {
  margin: 0;
  font-size: 1.1em;
  color: #1A202C;
}

.page-resources-sun88-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #DC143C;
}

.page-resources-sun88-game-guide__faq-item.active .page-resources-sun88-game-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-sun88-game-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  font-size: 0.95em;
}

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

/* CTA Section */
.page-resources-sun88-game-guide__cta-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
  color: #ffffff;
}

.page-resources-sun88-game-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-sun88-game-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-resources-sun88-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Color Contrast Fixes (as per instructions) */
.page-resources-sun88-game-guide__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-sun88-game-guide__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sun88-game-guide__hero-title {
    font-size: 3em;
  }
  .page-resources-sun88-game-guide__section-title {
    font-size: 2em;
  }
  .page-resources-sun88-game-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-sun88-game-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-resources-sun88-game-guide__hero-section {
    padding: 100px 0 60px; /* Adjust for mobile header offset */
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-sun88-game-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-sun88-game-guide__hero-description {
    font-size: 1em;
  }

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

  .page-resources-sun88-game-guide__btn-primary,
  .page-resources-sun88-game-guide__btn-secondary,
  .page-resources-sun88-game-guide__btn-tertiary,
  .page-resources-sun88-game-guide__btn-link,
  .page-resources-sun88-game-guide a[class*="button"],
  .page-resources-sun88-game-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  /* Ensure button containers also adapt */
  .page-resources-sun88-game-guide__cta-buttons,
  .page-resources-sun88-game-guide__button-group,
  .page-resources-sun88-game-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Allow buttons to wrap */
    gap: 10px;
  }

  .page-resources-sun88-game-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-sun88-game-guide__section-description {
    font-size: 0.9em;
  }

  .page-resources-sun88-game-guide__feature-item,
  .page-resources-sun88-game-guide__game-card,
  .page-resources-sun88-game-guide__step-card,
  .page-resources-sun88-game-guide__tip-item {
    padding: 20px;
  }

  .page-resources-sun88-game-guide__game-card-image {
    height: 200px;
  }

  .page-resources-sun88-game-guide__cta-title {
    font-size: 2em;
  }

  .page-resources-sun88-game-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-sun88-game-guide__faq-title {
    font-size: 1em;
  }

  .page-resources-sun88-game-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-sun88-game-guide__faq-item.active .page-resources-sun88-game-guide__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile responsive images */
  .page-resources-sun88-game-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive image containers */
  .page-resources-sun88-game-guide__section,
  .page-resources-sun88-game-guide__card,
  .page-resources-sun88-game-guide__container,
  .page-resources-sun88-game-guide__hero-section,
  .page-resources-sun88-game-guide__content-area,
  .page-resources-sun88-game-guide__game-types-section,
  .page-resources-sun88-game-guide__how-to-play-section,
  .page-resources-sun88-game-guide__tips-section,
  .page-resources-sun88-game-guide__faq-section,
  .page-resources-sun88-game-guide__cta-section {
    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 */
  }

  /* Mobile responsive video styles */
  .page-resources-sun88-game-guide video,
  .page-resources-sun88-game-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-sun88-game-guide__video-section,
  .page-resources-sun88-game-guide__video-container,
  .page-resources-sun88-game-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-resources-sun88-game-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-sun88-game-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-sun88-game-guide__cta-title {
    font-size: 1.8em;
  }
}