/* style/resources-79-kinh-gameplay-guide.css */

/* Base styles for the page content area */
.page-resources-79-kinh-gameplay-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background #FFFFFF */
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensure consistency with body background */
}

.page-resources-79-kinh-gameplay-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-79-kinh-gameplay-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-79-kinh-gameplay-guide__section-title--white {
  color: #FFFFFF;
}

.page-resources-79-kinh-gameplay-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-79-kinh-gameplay-guide__section-title--white::after {
  background-color: #FFFFFF;
}

.page-resources-79-kinh-gameplay-guide__content-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-79-kinh-gameplay-guide__text-block {
  font-size: 16px;
  margin-bottom: 20px;
}

.page-resources-79-kinh-gameplay-guide__text-block--white {
  color: #FFFFFF;
}

.page-resources-79-kinh-gameplay-guide__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-resources-79-kinh-gameplay-guide__list-item {
  margin-bottom: 10px;
}

/* Hero Section */
.page-resources-79-kinh-gameplay-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjusted for visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-79-kinh-gameplay-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-79-kinh-gameplay-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-79-kinh-gameplay-guide__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-resources-79-kinh-gameplay-guide__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-79-kinh-gameplay-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
}

.page-resources-79-kinh-gameplay-guide__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Button styles */
.page-resources-79-kinh-gameplay-guide__btn-primary,
.page-resources-79-kinh-gameplay-guide__btn-secondary,
.page-resources-79-kinh-gameplay-guide__cta-button,
.page-resources-79-kinh-gameplay-guide__card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  text-align: center;
}

.page-resources-79-kinh-gameplay-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-79-kinh-gameplay-guide__btn-primary:hover {
  background-color: #1a7fb2;
  border-color: #1a7fb2;
}

.page-resources-79-kinh-gameplay-guide__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-79-kinh-gameplay-guide__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* Sections */
.page-resources-79-kinh-gameplay-guide__intro-section,
.page-resources-79-kinh-gameplay-guide__guide-section,
.page-resources-79-kinh-gameplay-guide__games-section,
.page-resources-79-kinh-gameplay-guide__strategy-section,
.page-resources-79-kinh-gameplay-guide__faq-section,
.page-resources-79-kinh-gameplay-guide__conclusion-section {
  padding: 80px 0;
}

.page-resources-79-kinh-gameplay-guide__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-79-kinh-gameplay-guide__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

/* Games Section */
.page-resources-79-kinh-gameplay-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-79-kinh-gameplay-guide__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-79-kinh-gameplay-guide__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-resources-79-kinh-gameplay-guide__game-title {
  font-size: 24px;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-resources-79-kinh-gameplay-guide__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-79-kinh-gameplay-guide__game-title a:hover {
  text-decoration: underline;
}

.page-resources-79-kinh-gameplay-guide__game-description {
  font-size: 15px;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-79-kinh-gameplay-guide__card-button {
  margin: 0 auto;
  max-width: calc(100% - 40px); /* Ensure button fits card with padding */
}

/* Video Section */
.page-resources-79-kinh-gameplay-guide__video-section {
  text-align: center;
}