.page-huong-dan-choi-game {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main - consistent with dark body background #B71C1C */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-huong-dan-choi-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-huong-dan-choi-game__section {
  padding: 60px 0;
}

.page-huong-dan-choi-game__dark-section {
  background-color: #7A0E0E; /* Deep Red for dark sections */
  color: #FFF5E1;
}

.page-huong-dan-choi-game__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD86A; /* Gold-like color for titles on dark background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-huong-dan-choi-game__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-huong-dan-choi-game__note {
  font-style: italic;
  font-size: 16px;
  color: #FFCC66; /* Glow color for notes */
}

/* Hero Section */
.page-huong-dan-choi-game__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-huong-dan-choi-game__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-huong-dan-choi-game__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9; /* Maintain aspect ratio for desktop */
}

.page-huong-dan-choi-game__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  max-width: 100%;
  box-sizing: border-box;
}

.page-huong-dan-choi-game__main-title {
  font-size: clamp(32px, 4vw, 48px); /* H1 font size with clamp */
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-huong-dan-choi-game__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

/* CTA Buttons */
.page-huong-dan-choi-game__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-huong-dan-choi-game__btn-primary,
.page-huong-dan-choi-game__btn-secondary,
.page-huong-dan-choi-game__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  border: none; /* Remove default button border */
}