.page-index-f88bet-hot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-index-f88bet-hot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-f88bet-hot-games__hero {
  background: linear-gradient(135deg, #0A2E50 0%, #1A4A7A 100%); /* Darker blue gradient for hero */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-index-f88bet-hot-games__hero {
    flex-direction: row;
    text-align: left;
    padding: 120px 0;
  }
  .page-index-f88bet-hot-games__hero-content {
    flex: 1;
    padding-right: 30px;
  }
  .page-index-f88bet-hot-games__hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}

.page-index-f88bet-hot-games__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-index-f88bet-hot-games__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-f88bet-hot-games__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .page-index-f88bet-hot-games__cta-group {
    justify-content: flex-start;
  }
}

.page-index-f88bet-hot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-index-f88bet-hot-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2E50; /* Dark Navy Blue */
  border: 2px solid #FFD700;
}

.page-index-f88bet-hot-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-f88bet-hot-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-f88bet-hot-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2E50;
  transform: translateY(-2px);
}

.page-index-f88bet-hot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A2E50;
  border: none;
}

.page-index-f88bet-hot-games__btn--small:hover {
  background-color: #e6c200;
}

.page-index-f88bet-hot-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-index-f88bet-hot-games__hero-image-container {
  max-width: 500px;
}

.page-index-f88bet-hot-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-f88bet-hot-games__section {
  padding: 60px 0;
}

.page-index-f88bet-hot-games__section--why-choose {
  background-color: #f0f2f5;
}

.page-index-f88bet-hot-games__section-title {
  font-size: 2.5em;
  color: #0A2E50; /* Dark Navy Blue */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-index-f88bet-hot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-f88bet-hot-games__text-center {
  text-align: center;
}

.page-index-f88bet-hot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-f88bet-hot-games__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-f88bet-hot-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-f88bet-hot-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-index-f88bet-hot-games__feature-title {
  font-size: 1.5em;
  color: #0A2E50;
  margin-bottom: 15px;
}

.page-index-f88bet-hot-games__feature-item p {
  color: #555;
}

.page-index-f88bet-hot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-f88bet-hot-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-f88bet-hot-games__game-card:hover {
  transform: translateY(-10px);
}

.page-index-f88bet-hot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-f88bet-hot-games__game-card .page-index-f88bet-hot-games__game-title {
  font-size: 1.4em;
  color: #0A2E50;
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-index-f88bet-hot-games__game-card p {
  color: #555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-index-f88bet-hot-games__game-card .page-index-f88bet-hot-games__btn {
  margin: 0 20px 20px;
  text-align: center;
}

.page-index-f88bet-hot-games__section--guide {
  background-color: #0A2E50;
  color: #ffffff;
}

.page-index-f88bet-hot-games__section--guide .page-index-f88bet-hot-games__section-title {
  color: #FFD700;
}

.page-index-f88bet-hot-games__section--guide .page-index-f88bet-hot-games__section-title::after {
  background-color: #FFD700;
}

.page-index-f88bet-hot-games__section--guide p {
  color: #e0e0e0;
}

.page-index-f88bet-hot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-f88bet-hot-games__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-f88bet-hot-games__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-f88bet-hot-games__step-item p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-index-f88bet-hot-games__section--promotions {
  background-color: #f8f9fa;
}

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

.page-index-f88bet-hot-games__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-index-f88bet-hot-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-index-f88bet-hot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-f88bet-hot-games__promo-title {
  font-size: 1.4em;
  color: #0A2E50;
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-index-f88bet-hot-games__promo-card p {
  color: #555;
  padding: 0 20px 15px;
}

.page-index-f88bet-hot-games__promo-card .page-index-f88bet-hot-games__btn {
  margin: 0 20px 20px;
  text-align: center;
}

.page-index-f88bet-hot-games__section--faq {
  background-color: #e9ecef;
}

.page-index-f88bet-hot-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.page-index-f88bet-hot-games__faq-item {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-f88bet-hot-games__faq-question {
  font-size: 1.3em;
  color: #0A2E50;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-f88bet-hot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
}

.page-index-f88bet-hot-games__faq-question.active::after {
  content: '-';
}

.page-index-f88bet-hot-games__faq-answer {
  color: #555;
  display: none;
  margin-top: 10px;
}

.page-index-f88bet-hot-games__faq-question.active + .page-index-f88bet-hot-games__faq-answer {
  display: block;
}

.page-index-f88bet-hot-games__faq-item .page-index-f88bet-hot-games__btn {
  margin-top: 15px;
}

.page-index-f88bet-hot-games__section--final-cta {
  background-color: #0A2E50;
  color: #ffffff;
  padding: 80px 0;
}

.page-index-f88bet-hot-games__section--final-cta .page-index-f88bet-hot-games__section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-index-f88bet-hot-games__section--final-cta .page-index-f88bet-hot-games__section-title::after {
  background-color: #FFD700;
}

.page-index-f88bet-hot-games__section--final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-f88bet-hot-games__main-title {
    font-size: 2.5em;
  }
  .page-index-f88bet-hot-games__subtitle {
    font-size: 1.1em;
  }
  .page-index-f88bet-hot-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .page-index-f88bet-hot-games__hero {
    padding: 80px 15px;
  }
  .page-index-f88bet-hot-games__main-title {
    font-size: 2em;
  }
  .page-index-f88bet-hot-games__subtitle {
    font-size: 1em;
  }
  .page-index-f88bet-hot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-f88bet-hot-games__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-index-f88bet-hot-games__section {
    padding: 40px 0;
  }
  .page-index-f88bet-hot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-f88bet-hot-games__features-grid, 
  .page-index-f88bet-hot-games__game-grid, 
  .page-index-f88bet-hot-games__guide-steps, 
  .page-index-f88bet-hot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-f88bet-hot-games__feature-item, 
  .page-index-f88bet-hot-games__game-card, 
  .page-index-f88bet-hot-games__step-item, 
  .page-index-f88bet-hot-games__promo-card {
    padding: 20px;
  }
  .page-index-f88bet-hot-games__faq-question {
    font-size: 1.1em;
  }
  .page-index-f88bet-hot-games__section--final-cta {
    padding: 50px 0;
  }
  .page-index-f88bet-hot-games__section--final-cta p {
    font-size: 1em;
  }
}