.page-ho88 {
  font-family: 'Arial', sans-serif;
  background-color: #000000; /* Nền đen */
  color: #FFFFFF; /* Chữ trắng */
  line-height: 1.6;
}

.page-ho88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* body đã có padding-top, chỉ cần 10px ở đây */
  background-color: #000000;
}

.page-ho88__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

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

.page-ho88__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-ho88__main-title {
  color: #FFD700; /* Chữ vàng */
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-ho88__hero-description {
  font-size: 1.1em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-ho88__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Nền vàng */
  color: #000000; /* Chữ đen */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-ho88__btn-primary:hover {
  background-color: #ffe033;
  transform: translateY(-3px);
}

.page-ho88__section-title {
  color: #FFD700; /* Chữ vàng */
  font-size: clamp(1.8em, 4vw, 2.8em);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-ho88__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
  font-size: 1em;
  padding: 0 15px;
}

.page-ho88__game-categories-section,
.page-ho88__featured-games-section,
.page-ho88__why-choose-section,
.page-ho88__game-providers-section,
.page-ho88__faq-section,
.page-ho88__social-media-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-ho88__game-category-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-sizing: border-box;
  border: 1px solid #333333;
}

.page-ho88__game-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  border-color: #FFD700;
}

.page-ho88__game-category-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-ho88__game-category-title {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-ho88__game-category-text {
  font-size: 0.95em;
  color: #E0E0E0;
}

.page-ho88__featured-games-section {
  background-color: #0d0d0d;
  padding: 80px 20px;
}

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

.page-ho88__game-showcase-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #333333;
}

.page-ho88__game-showcase-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.page-ho88__game-showcase-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-ho88__game-showcase-text {
  font-size: 1.05em;
  color: #E0E0E0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-ho88__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Chữ vàng */
  border: 2px solid #FFD700; /* Viền vàng */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-ho88__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

.page-ho88__game-providers-section {
  background-color: #000000;
}

.page-ho88__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
}

.page-ho88__provider-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-sizing: border-box;
  border: 1px solid #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ho88__provider-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

.page-ho88__provider-logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: brightness(1.2); /* Làm sáng logo để nổi bật trên nền đen */
}

.page-ho88__why-choose-section {
  background-color: #0d0d0d;
}

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

.page-ho88__benefit-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
  border: 1px solid #333333;
  transition: box-shadow 0.3s ease;
}

.page-ho88__benefit-item:hover {
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.page-ho88__benefit-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-ho88__benefit-text {
  color: #E0E0E0;
  font-size: 1em;
}

.page-ho88__cta-container {
  text-align: center;
  margin-top: 50px;
}

.page-ho88__faq-section {
  background-color: #000000;
}

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

.page-ho88__faq-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #333333;
}

.page-ho88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-ho88__faq-question:hover {
  background-color: #2a2a2a;
}

.page-ho88__faq-qtext {
  pointer-events: none; /* Ngăn chặn click vào text */
  color: #FFD700;
}

.page-ho88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  pointer-events: none; /* Ngăn chặn click vào biểu tượng */
  color: #FFD700;
}

.page-ho88__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #E0E0E0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  font-size: 1em;
}

.page-ho88__faq-item.active .page-ho88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-ho88__social-media-section {
  background-color: #0d0d0d;
}

.page-ho88__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.page-ho88__social-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.page-ho88__social-icon-link:hover {
  transform: translateY(-5px);
  color: #FFD700;
}

.page-ho88__social-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 50%;
  background-color: #1a1a1a;
  padding: 10px;
  border: 1px solid #333333;
}

.page-ho88__floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: block;
}

.page-ho88__floating-btn {
  background-color: #FFD700; /* Nền vàng */
  color: #000000; /* Chữ đen */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.page-ho88__floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #ffe033;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ho88__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }
  .page-ho88__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }
  .page-ho88__game-categories-grid,
  .page-ho88__game-showcase-grid,
  .page-ho88__providers-grid,
  .page-ho88__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  .page-ho88__floating-btn {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .page-ho88 {
    font-size: 15px;
  }
  .page-ho88__hero-section {
    padding: 10px 10px 40px;
  }
  .page-ho88__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-ho88__hero-description {
    font-size: 0.95em;
  }
  .page-ho88__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-ho88__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    padding-top: 30px;
  }
  .page-ho88__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-ho88__game-categories-section,
  .page-ho88__featured-games-section,
  .page-ho88__why-choose-section,
  .page-ho88__game-providers-section,
  .page-ho88__faq-section,
  .page-ho88__social-media-section {
    padding: 40px 15px;
  }
  .page-ho88__game-categories-grid,
  .page-ho88__game-showcase-grid,
  .page-ho88__providers-grid,
  .page-ho88__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ho88__game-category-card,
  .page-ho88__game-showcase-card,
  .page-ho88__provider-item,
  .page-ho88__benefit-item,
  .page-ho88__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ho88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-ho88__social-links {
    gap: 15px;
  }
  .page-ho88__social-icon {
    width: 50px;
    height: 50px;
  }
  .page-ho88__floating-button {
    bottom: 15px;
    right: 15px;
  }
  .page-ho88__floating-btn {
    font-size: 0.9em;
    padding: 10px 18px;
  }
  .page-ho88__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-ho88__faq-answer {
    padding: 15px 20px !important;
  }
  .page-ho88__benefits-list li,
  .page-ho88__faq-list li {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .page-ho88__benefits-list,
  .page-ho88__faq-list {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .page-ho88__main-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-ho88__section-title {
    font-size: clamp(1.3em, 6vw, 1.8em);
  }
  .page-ho88__floating-btn {
    padding: 8px 15px;
    font-size: 0.85em;
  }
}