/* Base styles for the Đá Gà page */
.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-da-ga__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-da-ga__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-da-ga__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-da-ga__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-da-ga__ordered-list,
.page-da-ga__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-da-ga__list-item {
  margin-bottom: 10px;
}

.page-da-ga__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #F4F7FB 0%, #E0E7F5 100%);
  color: #1F2D3D;
}

.page-da-ga__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-da-ga__hero-image {
  flex: 1 1 50%;
  text-align: center;
  order: 1;
}

.page-da-ga__hero-content {
  flex: 1 1 40%;
  order: 2;
}

.page-da-ga__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Clamp for responsive H1 */
  font-weight: 800;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-da-ga__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-da-ga__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-da-ga__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(47, 107, 255, 0.3);
}

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

.page-da-ga__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(47, 107, 255, 0.1);
}

/* Introduction Section */
.page-da-ga__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Rules Section */
.page-da-ga__rules-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  color: #1F2D3D;
}

/* Betting Types Section */
.page-da-ga__betting-types-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-da-ga__betting-types-section .page-da-ga__section-title,
.page-da-ga__betting-types-section .page-da-ga__text-block {
  color: #ffffff;
}

.page-da-ga__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__card {
  background-color: #FFFFFF; /* Card BG */
  color: #1F2D3D; /* Text Main */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-da-ga__card:hover {
  transform: translateY(-5px);
}

.page-da-ga__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-da-ga__card-description {
  font-size: 0.95em;
  line-height: 1.6;
}

/* Strategies Section */
.page-da-ga__strategies-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

/* Why Choose Section */
.page-da-ga__why-choose-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  color: #1F2D3D;
}

.page-da-ga__feature-item .page-da-ga__feature-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-da-ga__feature-item .page-da-ga__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
}

/* FAQ Section */
.page-da-ga__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-da-ga__faq-section .page-da-ga__section-title {
  color: #ffffff;
}

.page-da-ga__faq-list {
  margin-top: 40px;
}

.page-da-ga__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF; /* Card BG */
  color: #1F2D3D;
  border: 1px solid #D6E2FF; /* Border */
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: #2F6BFF; /* Main Color */
  background-color: #FFFFFF;
  border-bottom: 1px solid transparent; /* default */
  list-style: none;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-question {
  border-bottom: 1px solid #D6E2FF;
}

.page-da-ga__faq-item .page-da-ga__faq-question::-webkit-details-marker {
  display: none;
}

.page-da-ga__faq-item .page-da-ga__faq-question::marker {
  display: none;
}

.page-da-ga__faq-qtext {
  flex-grow: 1;
}

.page-da-ga__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #2F6BFF;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
  transform: rotate(45deg);
}

.page-da-ga__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  background-color: #F8F8F8;
}

/* General image responsiveness */
.page-da-ga img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-da-ga__hero-content {
    order: 2;
  }

  .page-da-ga__hero-image {
    order: 1;
  }

  .page-da-ga__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-da-ga__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-da-ga__container {
    padding: 30px 15px;
  }

  .page-da-ga__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-da-ga__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  /* HERO Section Mobile */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-da-ga__hero-container {
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
  }

  .page-da-ga__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important; /* Mobile H1 font size */
  }

  .page-da-ga__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-da-ga__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons Mobile */
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary,
  .page-da-ga a[class*="button"],
  .page-da-ga 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;
  }

  /* Grid Layout Mobile */
  .page-da-ga__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* All Images Mobile */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-da-ga__section,
  .page-da-ga__card,
  .page-da-ga__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Mobile */
  .page-da-ga__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-da-ga__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em;
  }
}