.page-blog-hipclub-nha-cai-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg-color, #08160F); /* Assume dark body background from shared.css */
}

.page-blog-hipclub-nha-cai-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-hipclub-nha-cai-guide__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding as per instructions */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-blog-hipclub-nha-cai-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for hero image */
}

.page-blog-hipclub-nha-cai-guide__hero-content {
  padding: 40px 20px;
  background-color: var(--card-bg, #11271B); /* Use card background for content block */
  margin-top: 20px; /* Separates content from image */
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-hipclub-nha-cai-guide__main-title {
  font-size: clamp(2em, 5vw, 2.8em); /* Responsive font size for H1 */
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-hipclub-nha-cai-guide__subtitle {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-blog-hipclub-nha-cai-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog-hipclub-nha-cai-guide__btn-primary,
.page-blog-hipclub-nha-cai-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-hipclub-nha-cai-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-hipclub-nha-cai-guide__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-hipclub-nha-cai-guide__btn-secondary {
  background: transparent;
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-hipclub-nha-cai-guide__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* General Sections */
.page-blog-hipclub-nha-cai-guide__introduction-section,
.page-blog-hipclub-nha-cai-guide__game-types-section,
.page-blog-hipclub-nha-cai-guide__security-section,
.page-blog-hipclub-nha-cai-guide__faq-section {
  padding: 60px 0;
}

.page-blog-hipclub-nha-cai-guide__features-section,
.page-blog-hipclub-nha-cai-guide__promotions-section,
.page-blog-hipclub-nha-cai-guide__payment-section,
.page-blog-hipclub-nha-cai-guide__cta-bottom {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B); /* Dark background for sections */
  color: var(--text-main, #F2FFF6);
}

.page-blog-hipclub-nha-cai-guide__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-hipclub-nha-cai-guide p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-hipclub-nha-cai-guide__dark-bg p {
  color: var(--text-secondary, #A7D9B8);
}

/* Feature Grid */
.page-blog-hipclub-nha-cai-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-hipclub-nha-cai-guide__feature-card {
  background-color: var(--deep-green, #0A4B2C); /* Use a slightly different dark background */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hipclub-nha-cai-guide__feature-title {
  font-size: 1.4em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Game Grid */
.page-blog-hipclub-nha-cai-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-hipclub-nha-cai-guide__game-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards have equal height */
}

.page-blog-hipclub-nha-cai-guide__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-hipclub-nha-cai-guide__game-card h3 {
  padding: 15px 20px 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
}

.page-blog-hipclub-nha-cai-guide__game-card h3 a {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
}

.page-blog-hipclub-nha-cai-guide__game-card h3 a:hover {
  color: var(--glow, #57E38D);
}

.page-blog-hipclub-nha-cai-guide__game-card p {
  font-size: 0.95em;
  color: var(--text-secondary, #A7D9B8);
  padding: 0 20px 20px;
  flex-grow: 1; /* Pushes content to the bottom */
}

.page-blog-hipclub-nha-cai-guide__security-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 1000px;
}

/* Lists */
.page-blog-hipclub-nha-cai-guide__promo-list,
.page-blog-hipclub-nha-cai-guide__payment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-hipclub-nha-cai-guide__promo-list li,
.page-blog-hipclub-nha-cai-guide__payment-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-hipclub-nha-cai-guide__promo-list li::before,
.page-blog-hipclub-nha-cai-guide__payment-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
  font-weight: bold;
}

.page-blog-hipclub-nha-cai-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-hipclub-nha-cai-guide__faq-list {
  margin-top: 30px;
}

.page-blog-hipclub-nha-cai-guide__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hipclub-nha-cai-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--deep-green, #0A4B2C);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-hipclub-nha-cai-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

.page-blog-hipclub-nha-cai-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow, #57E38D);
  transition: transform 0.3s ease;
}

.page-blog-hipclub-nha-cai-guide__faq-item[open] .page-blog-hipclub-nha-cai-guide__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or similar */
}

.page-blog-hipclub-nha-cai-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-hipclub-nha-cai-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hipclub-nha-cai-guide__container {
    padding: 0 15px; /* Adjust padding for smaller screens */
  }

  .page-blog-hipclub-nha-cai-guide__hero-content {
    padding: 30px 15px;
  }

  .page-blog-hipclub-nha-cai-guide__main-title {
    font-size: 2em; /* Smaller on mobile */
  }

  .page-blog-hipclub-nha-cai-guide__subtitle {
    font-size: 1em;
  }

  .page-blog-hipclub-nha-cai-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hipclub-nha-cai-guide__btn-primary,
  .page-blog-hipclub-nha-cai-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }

  .page-blog-hipclub-nha-cai-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-hipclub-nha-cai-guide__introduction-section,
  .page-blog-hipclub-nha-cai-guide__features-section,
  .page-blog-hipclub-nha-cai-guide__game-types-section,
  .page-blog-hipclub-nha-cai-guide__promotions-section,
  .page-blog-hipclub-nha-cai-guide__security-section,
  .page-blog-hipclub-nha-cai-guide__payment-section,
  .page-blog-hipclub-nha-cai-guide__faq-section,
  .page-blog-hipclub-nha-cai-guide__cta-bottom {
    padding: 40px 0;
  }

  .page-blog-hipclub-nha-cai-guide__feature-grid,
  .page-blog-hipclub-nha-cai-guide__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-hipclub-nha-cai-guide__feature-card,
  .page-blog-hipclub-nha-cai-guide__game-card {
    padding: 20px;
  }

  .page-blog-hipclub-nha-cai-guide__game-image {
    height: 180px; /* Adjust height for mobile */
  }

  .page-blog-hipclub-nha-cai-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-hipclub-nha-cai-guide__faq-answer {
    padding: 0 20px 15px;
  }

  /* Image responsiveness */
  .page-blog-hipclub-nha-cai-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-hipclub-nha-cai-guide__section,
  .page-blog-hipclub-nha-cai-guide__card,
  .page-blog-hipclub-nha-cai-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-hipclub-nha-cai-guide__hero-section {
    padding-top: 10px !important; /* body already has padding-top */
  }
  
  /* Video responsiveness (if any) - no video in this page content */
  .page-blog-hipclub-nha-cai-guide video,
  .page-blog-hipclub-nha-cai-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-hipclub-nha-cai-guide__video-section,
  .page-blog-hipclub-nha-cai-guide__video-container,
  .page-blog-hipclub-nha-cai-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-hipclub-nha-cai-guide__video-section {
    padding-top: 10px !important;
  }
  
  .page-blog-hipclub-nha-cai-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Button responsiveness */
  .page-blog-hipclub-nha-cai-guide__cta-button,
  .page-blog-hipclub-nha-cai-guide__btn-primary,
  .page-blog-hipclub-nha-cai-guide__btn-secondary,
  .page-blog-hipclub-nha-cai-guide a[class*="button"],
  .page-blog-hipclub-nha-cai-guide 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-blog-hipclub-nha-cai-guide__cta-buttons,
  .page-blog-hipclub-nha-cai-guide__button-group,
  .page-blog-hipclub-nha-cai-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-blog-hipclub-nha-cai-guide__cta-buttons {
    flex-direction: column;
  }
}

/* Color Contrast Enforcement */
/* Assuming body is dark from shared.css, so main text is light */
.page-blog-hipclub-nha-cai-guide {
  color: var(--text-main, #F2FFF6); /* Light text on dark background */
}

.page-blog-hipclub-nha-cai-guide__card,
.page-blog-hipclub-nha-cai-guide__feature-card,
.page-blog-hipclub-nha-cai-guide__game-card,
.page-blog-hipclub-nha-cai-guide__faq-item {
  background-color: var(--card-bg, #11271B); /* Dark background for cards */
  color: var(--text-main, #F2FFF6); /* Light text on dark card */
}

.page-blog-hipclub-nha-cai-guide__dark-bg {
  background-color: var(--card-bg, #11271B); /* Ensure dark background with light text */
  color: var(--text-main, #F2FFF6);
}

.page-blog-hipclub-nha-cai-guide__section-title,
.page-blog-hipclub-nha-cai-guide__main-title,
.page-blog-hipclub-nha-cai-guide__feature-title,
.page-blog-hipclub-nha-cai-guide__game-title,
.page-blog-hipclub-nha-cai-guide__faq-question {
  color: var(--text-main, #F2FFF6); /* Ensure titles are light */
}

.page-blog-hipclub-nha-cai-guide__subtitle,
.page-blog-hipclub-nha-cai-guide p,
.page-blog-hipclub-nha-cai-guide li {
  color: var(--text-secondary, #A7D9B8); /* Secondary text is slightly darker light */
}

/* Buttons already have specific colors with good contrast */
.page-blog-hipclub-nha-cai-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Green gradient */
  color: #ffffff; /* White text on green */
}

.page-blog-hipclub-nha-cai-guide__btn-secondary {
  background: transparent;
  color: var(--text-main, #F2FFF6); /* Light text */
  border: 2px solid var(--border-color, #2E7A4E); /* Dark green border */
}

/* Links within text */
.page-blog-hipclub-nha-cai-guide a:not([class*="btn"]) {
  color: var(--glow, #57E38D); /* Green/gold for links */
  text-decoration: underline;
}

.page-blog-hipclub-nha-cai-guide a:not([class*="btn"]):hover {
  color: #ffffff;
}