/* General styles for the Đá Gà page */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-da-ga__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  gap: 40px;
  box-sizing: border-box;
}

.page-da-ga__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-da-ga__hero-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FF8C1A;
}

.page-da-ga__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

.page-da-ga__hero-image {
  flex: 1 1 40%;
  min-width: 280px;
  text-align: center;
}

.page-da-ga__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 140, 26, 0.4);
}

/* Buttons */
.page-da-ga__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-da-ga__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-da-ga__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A;
  border: 1px solid #FF8C1A;
}

.page-da-ga__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-da-ga__btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
}

/* Intro Section (Module 1) */
.page-da-ga__intro-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
  color: #FFF3E6;
}

.page-da-ga__intro-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  box-sizing: border-box;
}

.page-da-ga__intro-heading {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FF8C1A;
}

.page-da-ga__intro-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-da-ga__icon-box {
  background-color: #0D0E12;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-da-ga__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FF8C1A;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
}

.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-da-ga__icon-box-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-da-ga__icon-box-description {
  font-size: 1em;
  color: #FFF3E6;
}

/* About Section */
.page-da-ga__about-section {
  padding: 60px 0;
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-da-ga__about-heading {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FF8C1A;
  text-align: center;
}

.page-da-ga__about-section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

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

/* Game Types Section */
.page-da-ga__game-types-section {
  background-color: #17191F;
  padding: 60px 0;
  color: #FFF3E6;
}

.page-da-ga__game-types-heading {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FF8C1A;
  text-align: center;
}

.page-da-ga__game-types-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-da-ga__game-type-card {
  background-color: #0D0E12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-da-ga__game-type-card:hover {
  transform: translateY(-5px);
}

.page-da-ga__game-type-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}