/* Base styles for the Đá Gà page */
.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Main text color for dark background */
  background-color: #140C0C; /* Page background color */
}

.page-da-ga__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.page-da-ga__section {
  padding: 60px 0;
  text-align: center;
}

.page-da-ga__dark-section {
  background-color: #2A1212; /* Card BG color for section background */
}

.page-da-ga__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F3C54D; /* Gold color for titles */
}

.page-da-ga__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

.page-da-ga__card {
  background-color: #2A1212; /* Card background color */
  border: 1px solid #6A1E1E; /* Border color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: #FFF1E8;
}

.page-da-ga__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold for card titles */
}

.page-da-ga__card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #FFF1E8;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
}

.page-da-ga__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
  background-color: transparent;
  color: #F3C54D;
  border: 2px solid #F3C54D;
}

.page-da-ga__btn-secondary:hover {
  background-color: #F3C54D;
  color: #140C0C;
  transform: translateY(-2px);
}

.page-da-ga__btn-text-link {
    color: #F3C54D;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}
.page-da-ga__btn-text-link:hover {
    color: #FFB04A;
    text-decoration: none;
}

.page-da-ga__center-content {
    text-align: center;
}

/* Hero Section */
.page-da-ga__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  padding-bottom: 60px;
  background-color: #140C0C;
  overflow: hidden;
}

.page-da-ga__hero-image-wrapper {
  width: 100%;
  height: 675px; /* Fixed height for desktop 16:9 for 1200px width */
  overflow: hidden;
  position: relative;
}

.page-da-ga__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area */
  display: block;
}

.page-da-ga__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.page-da-ga__hero-title {
  font-size: clamp(36px, 4.5vw, 56px); /* Clamp for responsive H1 */
  font-weight: 800;
  color: #F3C54D;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-da-ga__hero-description {
  font-size: 20px;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Introduction Section */
.page-da-ga__introduction-section {
    background-color: #140C0C;
    padding-top: 40px;
}

.page-da-ga__image-content-block {
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.page-da-ga__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-da-ga__image-caption {
    font-style: italic;
    font-size: 15px;
    color: #CCC;
}


/* Why Choose Section */
.page-da-ga__why-choose-section {
    padding-top: 40px;
}
.page-da-ga__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Game Types Section */
.page-da-ga__game-types-section {
    background-color: #140C0C;
    padding-top: 40px;
}
.page-da-ga__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__type-card .page-da-ga__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Guide Section */
.page-da-ga__guide-section {
    padding-top: 40px;
}
.page-da-ga__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__step-card {
  position: relative;
  padding-top: 60px;
}

.page-da-ga__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #C61F1F;
  color: #FFF1E8;
  font-size: 32px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F3C54D;
  box-shadow: 0 0 0 5px rgba(243, 197, 77, 0.3);
}

/* Strategy Section */
.page-da-ga__strategy-section {
    background-color: #140C0C;
    padding-top: 40px;
}
.page-da-ga__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
  text-align: left;
}

.page-da-ga__strategy-list li {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 17px;
  color: #FFF1E8;
  display: flex;
  align-items: flex-start;
}

.page-da-ga__strategy-list li::before {
  content: '✓';
  color: #F3C54D;
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

/* Promotion Section */
.page-da-ga__promotion-section {
    padding-top: 40px;
}
.page-da-ga__promo-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
  text-align: left;
}

.page-da-ga__promo-list li {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 17px;
  color: #FFF1E8;
  display: flex;
  align-items: flex-start;
}

.page-da-ga__promo-list li::before {
  content: '🎁';
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

/* FAQ Section (using details/summary) */
.page-da-ga__faq-section {
    background-color: #140C0C;
    padding-top: 40px;
}
.page-da-ga__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

details.page-da-ga__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG color */
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF1E8;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question::-webkit-details-marker {
  display: none;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question:hover {
  background: #C61F1F; /* Main color on hover */
}
.page-da-ga__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold for FAQ question */
}
.page-da-ga__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F3C54D; /* Gold for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-da-ga__faq-item .page-da-ga__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C; /* Background color for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF1E8; /* Text Main for answer */
}
.page-da-ga__faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Conclusion Section */
.page-da-ga__conclusion-section {
    padding-top: 40px;
    padding-bottom: 80px;
}