.page-resources-acb888-popular-game-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

/* HERO Guide Section (First content section, needs padding-top) */
.page-resources-acb888-popular-game-guides__hero-guide-section {
  padding-top: 10px; /* Fixed nav spacing desktop */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #003366, #001a33);
  text-align: center;
}

.page-resources-acb888-popular-game-guides__main-title {
  font-size: 42px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-acb888-popular-game-guides__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-acb888-popular-game-guides__hero-image-wrapper {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-acb888-popular-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-acb888-popular-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-acb888-popular-game-guides__btn-primary,
.page-resources-acb888-popular-game-guides__btn-secondary,
.page-resources-acb888-popular-game-guides__btn-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Responsive button */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-acb888-popular-game-guides__btn-primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-resources-acb888-popular-game-guides__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-acb888-popular-game-guides__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-acb888-popular-game-guides__btn-secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-resources-acb888-popular-game-guides__btn-link {
  padding: 8px 15px;
  font-size: 16px;
  background-color: #003366;
  color: #FFD700;
  border: 1px solid #003366;
}

.page-resources-acb888-popular-game-guides__btn-link:hover {
  background-color: #002244;
  color: #ffffff;
  border-color: #002244;
}

.page-resources-acb888-popular-game-guides__section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-acb888-popular-game-guides__section--overview {
  background-color: #1a1a1a;
}

.page-resources-acb888-popular-game-guides__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-acb888-popular-game-guides__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-acb888-popular-game-guides__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-acb888-popular-game-guides__category-card {
  background-color: #003366;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-acb888-popular-game-guides__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-acb888-popular-game-guides__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-resources-acb888-popular-game-guides__category-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-acb888-popular-game-guides__category-description {
  font-size: 15px;
  color: #c0c0c0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-resources-acb888-popular-game-guides__guide-block {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-acb888-popular-game-guides__guide-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid #003366;
  padding-bottom: 10px;
}

.page-resources-acb888-popular-game-guides__guide-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-acb888-popular-game-guides__sub-heading {
  font-size: 22px;
  font-weight: 600;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-acb888-popular-game-guides__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #e0e0e0;
}

.page-resources-acb888-popular-game-guides__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-resources-acb888-popular-game-guides__list li strong {
  color: #FFD700;
}

.page-resources-acb888-popular-game-guides__cta-section {
  background-color: #003366;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-acb888-popular-game-guides__cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-acb888-popular-game-guides__cta-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-resources-acb888-popular-game-guides__section--faq {
  background-color: #0a0a0a;
}

.page-resources-acb888-popular-game-guides__faq-list {
  margin-top: 40px;
}

.page-resources-acb888-popular-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-acb888-popular-game-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.page-resources-acb888-popular-game-guides__faq-item.active .page-resources-acb888-popular-game-guides__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-resources-acb888-popular-game-guides__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-resources-acb888-popular-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #003366;
  border: 1px solid #002244;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-acb888-popular-game-guides__faq-question:hover {
  background-color: #002a52;
  border-color: #001f3f;
}

.page-resources-acb888-popular-game-guides__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-resources-acb888-popular-game-guides__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-acb888-popular-game-guides__faq-item.active .page-resources-acb888-popular-game-guides__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-acb888-popular-game-guides__main-title {
    font-size: 38px;
  }
  .page-resources-acb888-popular-game-guides__section-title {
    font-size: 32px;
  }
  .page-resources-acb888-popular-game-guides__guide-subtitle {
    font-size: 26px;
  }
  .page-resources-acb888-popular-game-guides__guide-block {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-acb888-popular-game-guides__hero-guide-section {
    padding-top: 10px !important; /* Fixed nav spacing mobile */
    padding-bottom: 40px;
  }
  .page-resources-acb888-popular-game-guides__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-resources-acb888-popular-game-guides__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-resources-acb888-popular-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to container of buttons */
  }
  .page-resources-acb888-popular-game-guides__btn-primary,
  .page-resources-acb888-popular-game-guides__btn-secondary,
  .page-resources-acb888-popular-game-guides__btn-link {
    padding: 12px 20px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-acb888-popular-game-guides__section {
    padding: 40px 0;
  }
  .page-resources-acb888-popular-game-guides__container {
    padding: 0 15px;
  }
  .page-resources-acb888-popular-game-guides__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-resources-acb888-popular-game-guides__category-card {
    margin-bottom: 20px;
  }
  .page-resources-acb888-popular-game-guides__category-title {
    font-size: 20px;
  }
  .page-resources-acb888-popular-game-guides__category-image {
    height: 180px;
  }
  .page-resources-acb888-popular-game-guides__guide-block {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-resources-acb888-popular-game-guides__guide-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .page-resources-acb888-popular-game-guides__sub-heading {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  .page-resources-acb888-popular-game-guides__list {
    padding-left: 15px;
  }
  .page-resources-acb888-popular-game-guides__list li {
    font-size: 15px;
  }
  .page-resources-acb888-popular-game-guides__cta-section {
    padding: 30px;
    margin-top: 40px;
  }
  .page-resources-acb888-popular-game-guides__cta-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .page-resources-acb888-popular-game-guides__cta-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-resources-acb888-popular-game-guides__faq-question {
    padding: 15px;
  }
  .page-resources-acb888-popular-game-guides__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-acb888-popular-game-guides__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-acb888-popular-game-guides__faq-item.active .page-resources-acb888-popular-game-guides__faq-answer {
    padding: 15px !important;
  }
  .page-resources-acb888-popular-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-acb888-popular-game-guides__section,
  .page-resources-acb888-popular-game-guides__category-card,
  .page-resources-acb888-popular-game-guides__guide-block,
  .page-resources-acb888-popular-game-guides__cta-section,
  .page-resources-acb888-popular-game-guides__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}