.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f9fa; /* Light background for the page content */
}

/* Ensure content is pushed down by fixed header */
.page-game-guides__hero-banner {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
}

.page-game-guides__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-guides__container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff; /* White background for main content blocks */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.page-game-guides__main-title {
  font-size: 38px;
  font-weight: bold;
  color: #FF4500; /* Brand primary color */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-game-guides__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1E90FF; /* Brand secondary color */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-game-guides__intro-text,
.page-game-guides__section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-game-guides__intro-text a,
.page-game-guides__section p a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides__intro-text a:hover,
.page-game-guides__section p a:hover {
  text-decoration: underline;
  color: #007bff;
}

/* Hero Banner Specific Styles */
.page-game-guides__hero-banner {
  position: relative;
  background: linear-gradient(135deg, #FF4500, #FFA500); /* Vibrant gradient */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-game-guides__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
}

.page-game-guides__hero-content .page-game-guides__main-title {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 20px;
}

.page-game-guides__hero-content .page-game-guides__intro-text {
  color: #f0f0f0;
  font-size: 19px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-game-guides__hero-content .page-game-guides__intro-text a {
  color: #e0f2f7;
  font-weight: bold;
}

.page-game-guides__hero-content .page-game-guides__intro-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #1E90FF; /* Secondary brand color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-game-guides__cta-button:hover {
  background: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-game-guides__cta-button--large {
  padding: 20px 50px;
  font-size: 22px;
}

/* General Principles Section */
.page-game-guides__general-principles .page-game-guides__container {
  background: #fdfdfd;
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-guides__list-item {
  background: #f9f9f9;
  border-left: 5px solid #FF4500;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.page-game-guides__list-item:hover {
  transform: translateY(-5px);
}

.page-game-guides__list-title {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides__list-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.page-game-guides__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Game Categories Section */
.page-game-guides__game-categories .page-game-guides__container {
  background: #fdfdfd;
}

.page-game-guides__game-category-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-game-guides__game-category-card:hover {
  transform: translateY(-5px);
}

.page-game-guides__category-title {
  font-size: 26px;
  font-weight: bold;
  color: #FF4500;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.page-game-guides__category-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-game-guides__sub-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
}

.page-game-guides__sub-list strong {
  color: #333333;
}

.page-game-guides__category-button {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  padding: 12px 30px;
  background: #1E90FF;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__category-button:hover {
  background: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.page-game-guides__benefits .page-game-guides__container {
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff); /* Light blue gradient */
  border: 1px solid #cce7ff;
}

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

.page-game-guides__benefits-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__benefits-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-game-guides__benefits-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.page-game-guides__benefits-title {
  font-size: 24px;
  font-weight: bold;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-game-guides__benefits-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  text-align: center;
}

/* Expert Advice Section */
.page-game-guides__expert-advice .page-game-guides__container {
  background: #fdfdfd;
}

.page-game-guides__expert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-guides__expert-item {
  background: #f9f9f9;
  border-left: 5px solid #1E90FF;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.page-game-guides__expert-item:hover {
  transform: translateY(-5px);
}

/* FAQ Section */
.page-game-guides__faq-section {
  padding: 60px 20px;
  background: #f1f3f5;
}

.page-game-guides__faq-section .page-game-guides__container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-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;
  padding: 0 15px;
  opacity: 0;
}

.page-game-guides__faq-item.active .page-game-guides__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

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

.page-game-guides__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-game-guides__faq-question:active {
  background: #eeeeee;
}

.page-game-guides__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-game-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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: 28px;
  height: 28px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides__section-title {
    font-size: 28px;
  }
  .page-game-guides__main-title {
    font-size: 36px;
  }
  .page-game-guides__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-banner {
    padding-top: 100px !important; /* Mobile: Adjust based on actual header height */
    padding-bottom: 40px;
  }
  .page-game-guides__hero-content .page-game-guides__main-title {
    font-size: 32px;
  }
  .page-game-guides__hero-content .page-game-guides__intro-text {
    font-size: 16px;
  }
  .page-game-guides__cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-game-guides__cta-button--large {
    padding: 18px 40px;
    font-size: 20px;
  }
  .page-game-guides__section {
    padding: 40px 15px;
  }
  .page-game-guides__container {
    padding: 25px;
  }
  .page-game-guides__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-game-guides__intro-text, .page-game-guides__section p {
    font-size: 15px;
  }
  .page-game-guides__list-title {
    font-size: 20px;
  }
  .page-game-guides__list-item {
    padding: 20px;
  }
  .page-game-guides__game-category-card {
    padding: 20px;
  }
  .page-game-guides__category-title {
    font-size: 22px;
  }
  .page-game-guides__sub-list {
    font-size: 15px;
  }
  .page-game-guides__category-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-game-guides__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__benefits-icon {
    width: 100px;
  }
  .page-game-guides__benefits-title {
    font-size: 22px;
  }
  .page-game-guides__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-game-guides__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-game-guides__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-game-guides__faq-answer {
    padding: 0 15px;
  }
  .page-game-guides__faq-item.active .page-game-guides__faq-answer {
    padding: 15px !important;
  }
  /* Mobile image responsiveness */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-game-guides__section,
  .page-game-guides__container,
  .page-game-guides__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}