.page-game-guides {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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;
  padding-top: 10px; /* Small top padding */
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

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

.page-game-guides__hero-content {
  padding: 40px 20px;
  max-width: 900px;
}

.page-game-guides__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-game-guides__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-game-guides__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-game-guides__section-title {
  font-size: 2.2em;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

.page-game-guides__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-game-guides__guide-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-game-guides__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides__guide-card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-game-guides__guide-card-content {
  padding: 25px;
}

.page-game-guides__guide-card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-game-guides__guide-card-title a {
  color: #1F2D3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__guide-card-title a:hover {
  color: #2F6BFF;
}

.page-game-guides__guide-card-text {
  font-size: 1em;
  color: #000000;
  margin-bottom: 20px;
}

.page-game-guides__read-more-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.3s ease;
}

.page-game-guides__read-more-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-game-guides__view-all-wrapper {
  text-align: center;
}

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

.page-game-guides__view-all-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-game-guides__tips-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-game-guides__tips-item-title {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-game-guides__tips-item-text {
  font-size: 1em;
  color: #000000;
}

.page-game-guides__cta-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-game-guides__cta-content {
  max-width: 800px;
}

.page-game-guides__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-game-guides__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-game-guides__cta-button--primary {
  margin-right: 15px;
}

.page-game-guides__cta-button--secondary {
  background: #6FA3FF;
  color: #FFFFFF;
}

.page-game-guides__cta-button--secondary:hover {
  background: #A5C4FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-guides__hero-content {
    padding: 20px;
  }

  .page-game-guides__main-title {
    font-size: 1.8em;
  }

  .page-game-guides__hero-description {
    font-size: 1em;
  }

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

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

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

  .page-game-guides__cta-title {
    font-size: 2em;
  }

  .page-game-guides__cta-text {
    font-size: 1em;
  }

  .page-game-guides__cta-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .page-game-guides__cta-button--primary {
    margin-right: 0;
  }

  /* Image resize for mobile to prevent overflow */
  .page-game-guides img {
    max-width: 100%;
    height: auto;
  }
}