/* style/hi88-game-features.css */
.page-hi88-game-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Dark blue main background */
  line-height: 1.6;
}

.page-hi88-game-features h1, .page-hi88-game-features h2, .page-hi88-game-features h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 1em;
  font-weight: bold;
}

.page-hi88-game-features h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-hi88-game-features h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 2em;
}

.page-hi88-game-features h3 {
  font-size: 1.6em;
  margin-top: 1.5em;
}

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

.page-hi88-game-features__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F, #30475E); /* Gradient background for hero */
  position: relative;
  overflow: hidden;
}

.page-hi88-game-features__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-hi88-game-features__hero-content p {
  font-size: 1.2em;
  margin-bottom: 2em;
  color: #C0C0C0;
}

.page-hi88-game-features__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-hi88-game-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-hi88-game-features__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text on gold */
  border-color: #FFD700;
}

.page-hi88-game-features__btn--primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
}

.page-hi88-game-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-hi88-game-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-hi88-game-features__hero-image {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  z-index: 1;
}

.page-hi88-game-features__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-hi88-game-features__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-hi88-game-features__why-hi88-item, .page-hi88-game-features__feature-item, .page-hi88-game-features__detail-item {
  background-color: #1A2E44; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-hi88-game-features__why-hi88-item:hover, .page-hi88-game-features__feature-item:hover, .page-hi88-game-features__detail-item:hover {
  transform: translateY(-5px);
}

.page-hi88-game-features__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-hi88-game-features__feature-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-hi88-game-features__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-hi88-game-features__list li {
  background-color: #1A2E44;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #E0E0E0;
}

.page-hi88-game-features__list li strong {
  color: #FFD700;
}

.page-hi88-game-features__cta-bottom {
  background-color: #0E2033; /* Slightly lighter than main background */
  padding: 80px 20px;
}

.page-hi88-game-features__cta-content p {
  font-size: 1.1em;
  margin-bottom: 2.5em;
  color: #C0C0C0;
}

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

.page-hi88-game-features__detail-item h3 {
  color: #FFD700;
  margin-bottom: 10px;
}

.page-hi88-game-features__detail-item p {
  color: #C0C0C0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-hi88-game-features__btn--link {
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.page-hi88-game-features__btn--link:hover {
  background-color: #E0B800;
}

.page-hi88-game-features__detail-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hi88-game-features__detail-item h3 a:hover {
  color: #FFF;
}

.page-hi88-game-features__responsible-gaming p {
  max-width: 900px;
  margin: 20px auto;
  color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hi88-game-features h1 {
    font-size: 2.2em;
  }

  .page-hi88-game-features h2 {
    font-size: 1.8em;
  }

  .page-hi88-game-features h3 {
    font-size: 1.4em;
  }

  .page-hi88-game-features__hero {
    padding: 60px 20px;
  }

  .page-hi88-game-features__hero-content p {
    font-size: 1em;
  }

  .page-hi88-game-features__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-hi88-game-features__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-hi88-game-features__why-hi88-grid, .page-hi88-game-features__feature-grid, .page-hi88-game-features__detail-list {
    grid-template-columns: 1fr;
  }

  .page-hi88-game-features__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-hi88-game-features h1 {
    font-size: 1.8em;
  }

  .page-hi88-game-features h2 {
    font-size: 1.6em;
  }

  .page-hi88-game-features h3 {
    font-size: 1.2em;
  }

  .page-hi88-game-features__hero {
    padding: 40px 15px;
  }

  .page-hi88-game-features__container {
    padding: 0 15px;
  }
}