/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-game-guides__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-game-guides__hero-title .highlight {
  color: #FFCC00;
}

.page-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

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

.page-game-guides__section {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-game-guides__section:nth-of-type(even) {
  background-color: #f0f4f7;
}

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

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-game-guides__section-title .highlight {
  color: #FFCC00;
}

.page-game-guides__introduction p, 
.page-game-guides__why-hm88 p, 
.page-game-guides__responsible-gaming p, 
.page-game-guides__cta-final p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-game-guides__why-hm88 ul, 
.page-game-guides__responsible-gaming ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-game-guides__why-hm88 ul li, 
.page-game-guides__responsible-gaming ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

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

.page-game-guides__guide-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-guides__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides__card-image {
  height: 200px;
  overflow: hidden;
}

.page-game-guides__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-game-guides__guide-card:hover .page-game-guides__card-image img {
  transform: scale(1.05);
}

.page-game-guides__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-game-guides__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #003366;
  font-weight: bold;
}

.page-game-guides__card-title a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
  color: #FFCC00;
}

.page-game-guides__card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.page-game-guides__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-game-guides__btn-primary:hover {
  background-color: #e6b800;
  color: #002244;
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
}

.page-game-guides__btn-secondary:hover {
  background-color: #002244;
  color: #FFCC00;
  transform: translateY(-2px);
}

.page-game-guides__cta-final {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #003366;
  color: #fff;
}

.page-game-guides__cta-final .page-game-guides__section-title {
  color: #fff;
}

.page-game-guides__cta-final .page-game-guides__section-title .highlight {
  color: #FFCC00;
}

.page-game-guides__cta-final p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-game-guides__cta-note {
  font-style: italic;
  font-size: 1em !important;
  margin-top: 20px;
}

.page-game-guides__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__hero-description {
    font-size: 1.2em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 60px 15px;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__section {
    padding: 40px 15px;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__btn-primary, .page-game-guides__btn-secondary {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-description {
    font-size: 0.9em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__btn-primary, .page-game-guides__btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides__why-hm88 ul, 
  .page-game-guides__responsible-gaming ul {
    margin-left: 15px;
  }
  .page-game-guides__why-hm88 ul li, 
  .page-game-guides__responsible-gaming ul li {
    font-size: 0.95em;
  }
}