.page-game-guides {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-game-guides__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2F6BFF;
  padding-bottom: 40px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-game-guides__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  color: #FFFFFF;
}

.page-game-guides__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 600px; /* Constrain H1 width */
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size for H1 */
}

.page-game-guides__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-game-guides__section-title {
  font-size: 2.5rem;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-game-guides__overview-section {
  background-color: #FFFFFF;
  border-radius: 15px;
  margin-top: -30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-guides__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-guides__image-text-image {
  flex: 1;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides__image-text-content {
  flex: 1;
}

.page-game-guides__sub-title {
  font-size: 1.8rem;
  color: #1F2D3D;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-game-guides__list-item {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #1F2D3D;
}

.page-game-guides__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2F6BFF;
}

.page-game-guides__text-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-game-guides__text-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-game-guides__game-categories {
  background-color: #F4F7FB;
}

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

.page-game-guides__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.2s ease;
}

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

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides__card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  padding: 0 15px;
}

.page-game-guides__card-link {
  color: #1F2D3D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-game-guides__card-link:hover {
  color: #2F6BFF;
}

.page-game-guides__card-text {
  font-size: 0.95rem;
  color: #1F2D3D;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-game-guides__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.page-game-guides__card-button:hover {
  background: #6FA3FF;
}

.page-game-guides__tips-section {
  background-color: #FFFFFF;
}

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

.page-game-guides__tip-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides__tip-title {
  font-size: 1.6rem;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__tip-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-game-guides__tip-button {
  display: inline-block;
  padding: 8px 18px;
  background: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.page-game-guides__tip-button:hover {
  background: #2F6BFF;
}

.page-game-guides__faq-section {
  background-color: #F4F7FB;
}

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

.page-game-guides__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides__faq-question {
  font-size: 1.3rem;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-game-guides__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
}

.page-game-guides__faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .page-game-guides__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-game-guides__image-text-content {
    order: 2;
  }

  .page-game-guides__image-text-image {
    order: 1;
    margin-bottom: 20px;
  }

  .page-game-guides__list-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-game-guides__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    max-width: 90%;
  }

  .page-game-guides__intro-text {
    font-size: 1rem;
    max-width: 90%;
  }

  .page-game-guides__section-title {
    font-size: 2rem;
  }

  .page-game-guides__section-description {
    font-size: 1rem;
  }

  .page-game-guides__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-game-guides__tips-list {
    grid-template-columns: 1fr;
  }

  .page-game-guides__hero-image,
  .page-game-guides__image-text-image,
  .page-game-guides__card-image,
  .page-game-guides__tip-item img,
  .page-game-guides__faq-item img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-content {
    padding: 15px;
  }

  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-game-guides__section-title {
    font-size: 1.8rem;
  }

  .page-game-guides__sub-title {
    font-size: 1.5rem;
  }

  .page-game-guides__card-title {
    font-size: 1.3rem;
  }

  .page-game-guides__tip-title {
    font-size: 1.4rem;
  }

  .page-game-guides__faq-question {
    font-size: 1.1rem;
  }
}