.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background: #FFFFFF; /* Ensure content area background is white if body is white */
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: #017439; /* Brand primary color for hero background */
  color: #FFFFFF; /* White text on dark background */
  text-align: center;
  padding-bottom: 50px;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__hero-image {
  margin-bottom: 20px;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__hero-image img {
  width: 100%;
  max-width: 1600px; /* Max width for hero image */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover; /* Default cover, will be 'contain' on mobile */
  aspect-ratio: 16/9; /* Maintain aspect ratio */
  border-radius: 8px;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__intro-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__btn-primary,
.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__btn-secondary,
.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for button max-width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  max-width: 100%; /* Ensure button doesn't overflow */
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__btn-primary {
  background-color: #C30808; /* Specific color for Register/Login */
  color: #FFFF00; /* Specific font color for Register/Login */
  border: 2px solid #C30808;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
  transform: translateY(-2px);
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__btn-secondary {
  background-color: #FFFFFF;
  color: #017439; /* Primary brand color text */
  border: 2px solid #017439;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2e;
  transform: translateY(-2px);
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__cta-buttons--center {
  margin-top: 30px;
}

/* Content Sections */
.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__content-section {
  padding: 50px 0;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__intro-article {
  background-color: #f9f9f9;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #017439; /* Primary brand color for titles */
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__article-body p {
  margin-bottom: 1em;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__article-body strong {
  color: #017439;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Game List Cards */
.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-top-game-ban-ca-h5-hay-nhat-hien-nay__game-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #017439;
}