.page-no-hu-tua-game-hot {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-no-hu-tua-game-hot__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-no-hu-tua-game-hot__hero-section {
  padding-top: 10px; /* Adjusted for shared header offset */
  padding-bottom: 60px;
  background-color: #f7f9fc;
}

.page-no-hu-tua-game-hot__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.page-no-hu-tua-game-hot__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #1e1765;
}

.page-no-hu-tua-game-hot__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-no-hu-tua-game-hot__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555555;
}

.page-no-hu-tua-game-hot__hero-image {
  flex: 1 1 45%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-no-hu-tua-game-hot__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu-tua-game-hot__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-no-hu-tua-game-hot__btn-primary,
.page-no-hu-tua-game-hot__btn-secondary,
.page-no-hu-tua-game-hot__btn-play,
.page-no-hu-tua-game-hot a[class*="button"],
.page-no-hu-tua-game-hot a[class*="btn"] {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu-tua-game-hot__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-no-hu-tua-game-hot__btn-primary:hover {
  background-color: #1e87b0;
  border-color: #1e87b0;
}

.page-no-hu-tua-game-hot__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu-tua-game-hot__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87b0;
  border-color: #1e87b0;
}

.page-no-hu-tua-game-hot__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1e1765;
  text-align: center;
  margin-bottom: 20px;
}

.page-no-hu-tua-game-hot__section-description {
  font-size: 1.05rem;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-no-hu-tua-game-hot__intro-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-no-hu-tua-game-hot__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-no-hu-tua-game-hot__feature-item {
  background-color: #f7f9fc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-no-hu-tua-game-hot__feature-item:hover {
  transform: translateY(-10px);
}

.page-no-hu-tua-game-hot__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-no-hu-tua-game-hot__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also circular */
  display: block;
}

.page-no-hu-tua-game-hot__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-no-hu-tua-game-hot__feature-text {
  font-size: 1rem;
  color: #666666;
}

.page-no-hu-tua-game-hot__game-showcase-section {
  padding: 60px 0;
  background-color: #f0f5fa;
}

.page-no-hu-tua-game-hot__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-no-hu-tua-game-hot__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu-tua-game-hot__game-card:hover {
  transform: translateY(-8px);
}

.page-no-hu-tua-game-hot__game-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-no-hu-tua-game-hot__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu-tua-game-hot__game-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e1765;
}

.page-no-hu-tua-game-hot__game-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-no-hu-tua-game-hot__game-card-title a:hover {
  text-decoration: underline;
}

.page-no-hu-tua-game-hot__game-card-description {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu-tua-game-hot__btn-play {
  background-color: #EA7C07; /* Login color for play button */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-top: auto; /* Push to bottom */
}

.page-no-hu-tua-game-hot__btn-play:hover {
  background-color: #cc6a06;
  border-color: #cc6a06;
}

.page-no-hu-tua-game-hot__guide-section,
.page-no-hu-tua-game-hot__tips-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-no-hu-tua-game-hot__guide-step-item {
  background-color: #f7f9fc;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-no-hu-tua-game-hot__guide-step-image {
  width: 100%;
  height: 200px; /* Fixed height for guide images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu-tua-game-hot__guide-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-no-hu-tua-game-hot__guide-step-text {
  font-size: 0.95rem;
  color: #666666;
}

.page-no-hu-tua-game-hot__tips-list {
  max-width: 800px;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
}

.page-no-hu-tua-game-hot__tips-list li {
  background-color: #f7f9fc;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1rem;
  color: #333333;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-no-hu-tua-game-hot__tips-list li::before {
  content: '✔️';
  font-size: 1.2rem;
  color: #26A9E0;
  flex-shrink: 0;
}

.page-no-hu-tua-game-hot__tips-list li strong {
  color: #1e1765;
}

.page-no-hu-tua-game-hot__faq-section {
  padding: 60px 0;
  background-color: #f0f5fa;
}

.page-no-hu-tua-game-hot__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-no-hu-tua-game-hot__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-no-hu-tua-game-hot__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e1765;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-no-hu-tua-game-hot__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-no-hu-tua-game-hot__faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-no-hu-tua-game-hot__faq-item[open] .page-no-hu-tua-game-hot__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu-tua-game-hot__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: #666666;
}

.page-no-hu-tua-game-hot__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-no-hu-tua-game-hot__cta-bottom-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-no-hu-tua-game-hot__cta-bottom-content .page-no-hu-tua-game-hot__section-title {
  color: #FFFFFF;
}

.page-no-hu-tua-game-hot__cta-bottom-content .page-no-hu-tua-game-hot__section-description {
  color: #f0f8ff;
}

.page-no-hu-tua-game-hot__cta-buttons-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* General image responsiveness */
.page-no-hu-tua-game-hot img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu-tua-game-hot__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu-tua-game-hot__hero-content,
  .page-no-hu-tua-game-hot__hero-image {
    flex: 1 1 100%;
  }

  .page-no-hu-tua-game-hot__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-no-hu-tua-game-hot {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-no-hu-tua-game-hot__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-no-hu-tua-game-hot__hero-container {
    padding: 20px 0;
    gap: 20px;
  }

  .page-no-hu-tua-game-hot__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-no-hu-tua-game-hot__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-no-hu-tua-game-hot__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-no-hu-tua-game-hot__btn-primary,
  .page-no-hu-tua-game-hot__btn-secondary,
  .page-no-hu-tua-game-hot__btn-play,
  .page-no-hu-tua-game-hot a[class*="button"],
  .page-no-hu-tua-game-hot a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu-tua-game-hot__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 15px;
  }

  .page-no-hu-tua-game-hot__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-no-hu-tua-game-hot__intro-section,
  .page-no-hu-tua-game-hot__game-showcase-section,
  .page-no-hu-tua-game-hot__guide-section,
  .page-no-hu-tua-game-hot__tips-section,
  .page-no-hu-tua-game-hot__faq-section,
  .page-no-hu-tua-game-hot__cta-bottom-section {
    padding: 40px 0;
  }

  .page-no-hu-tua-game-hot__features-grid,
  .page-no-hu-tua-game-hot__game-grid,
  .page-no-hu-tua-game-hot__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu-tua-game-hot__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }

  .page-no-hu-tua-game-hot__game-card-image {
    height: 180px;
  }

  .page-no-hu-tua-game-hot__game-card-content {
    padding: 20px;
  }

  .page-no-hu-tua-game-hot__game-card-title {
    font-size: 1.2rem;
  }

  .page-no-hu-tua-game-hot__btn-play {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-no-hu-tua-game-hot__guide-step-image {
    height: 150px;
  }

  .page-no-hu-tua-game-hot__guide-step-title {
    font-size: 1.2rem;
  }

  .page-no-hu-tua-game-hot__tips-list li {
    font-size: 0.95rem;
    padding: 15px;
    gap: 10px;
  }

  .page-no-hu-tua-game-hot__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-no-hu-tua-game-hot__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  .page-no-hu-tua-game-hot__cta-buttons-bottom {
    flex-direction: column;
    gap: 10px;
  }

  /* Ensure all images and containers do not overflow */
  .page-no-hu-tua-game-hot img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu-tua-game-hot__container,
  .page-no-hu-tua-game-hot__hero-section,
  .page-no-hu-tua-game-hot__intro-section,
  .page-no-hu-tua-game-hot__game-showcase-section,
  .page-no-hu-tua-game-hot__guide-section,
  .page-no-hu-tua-game-hot__tips-section,
  .page-no-hu-tua-game-hot__faq-section,
  .page-no-hu-tua-game-hot__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}