.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f8f9fa;
}

.page-game-guides__section {
  padding: 60px 0;
  margin-bottom: 0;
}

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

.page-game-guides__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-game-guides__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* HERO Section */
.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small fixed padding-top as body handles header offset */
  background: linear-gradient(135deg, #26A9E0, #36C0F0);
  color: #ffffff;
}

.page-game-guides__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-game-guides__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-game-guides__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-guides__main-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__hero-description {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f8ff;
}

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

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides__btn-primary {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-game-guides__btn-primary:hover {
  background: #d46c06;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-game-guides__btn-secondary:hover {
  background: #e0f7fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Getting Started Section */
.page-game-guides__getting-started-section {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-game-guides__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-guides__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-game-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

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

.page-game-guides__list li {
  margin-bottom: 8px;
}

/* Game Categories Section */
.page-game-guides__game-categories-section {
  background-color: #f8f9fa;
}

.page-game-guides__game-guide-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-game-guides__game-guide-item.page-game-guides__reverse-layout {
  flex-direction: row-reverse;
}

.page-game-guides__game-image {
  flex: 1;
  min-width: 400px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  display: block;
}

.page-game-guides__game-content {
  flex: 1.5;
  text-align: left;
}

.page-game-guides__game-title {
  font-size: 28px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-game-guides__game-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Tips & Strategy Section */
.page-game-guides__tips-strategy-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-game-guides__tips-strategy-section .page-game-guides__section-title {
  color: #ffffff;
}

.page-game-guides__tips-strategy-section .page-game-guides__text-block {
  color: #e0f7fa;
}

.page-game-guides__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-game-guides__card--dark {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-game-guides__card--dark .page-game-guides__card-title {
  color: #ffffff;
}

.page-game-guides__card--dark .page-game-guides__list {
  color: #f0f8ff;
}

.page-game-guides__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-game-guides__faq-section {
  background-color: #ffffff;
}

.page-game-guides__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question::-webkit-details-marker {
  display: none;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
  background: #f5f5f5;
}
.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-game-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* Conclusion Section */
.page-game-guides__conclusion-section {
  background-color: #f8f9fa;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides__game-guide-item {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides__game-guide-item.page-game-guides__reverse-layout {
    flex-direction: column;
  }
  .page-game-guides__game-image {
    min-width: unset;
    margin-bottom: 20px;
  }
  .page-game-guides__game-content {
    text-align: center;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__cta-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__main-title {
    font-size: 30px;
  }
  .page-game-guides__hero-description {
    font-size: 16px;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-game-guides__text-block {
    font-size: 16px;
  }
  .page-game-guides__game-guide-item {
    padding: 20px;
    margin-bottom: 40px;
  }
  .page-game-guides__game-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-game-guides__game-title {
    font-size: 24px;
  }
  .page-game-guides__game-subtitle {
    font-size: 18px;
  }
  .page-game-guides__grid-3-cols, .page-game-guides__grid-2-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__card {
    padding: 25px;
  }
  .page-game-guides__card-title {
    font-size: 20px;
  }
  .page-game-guides__list {
    font-size: 15px;
  }
  .page-game-guides__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__cta-button, .page-game-guides__btn-primary, .page-game-guides__btn-secondary, .page-game-guides a[class*="button"], .page-game-guides a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__cta-buttons, .page-game-guides__button-group, .page-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  details.page-game-guides__faq-item summary.page-game-guides__faq-question { padding: 15px; }
  .page-game-guides__faq-qtext { font-size: 15px; }
  details.page-game-guides__faq-item .page-game-guides__faq-answer { padding: 0 15px 15px; }
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__hero-section {
    padding-top: 10px !important;
  }
}