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

.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: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FF8C1A; /* Main color for titles */
  line-height: 1.2;
}

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

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

.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%);
  transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Main color for text */
  border: 2px solid #A84F0C; /* Border color */
}

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

.page-da-ga__cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* HERO Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #0D0E12;
}

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

.page-da-ga__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  padding-right: 20px;
}

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

.page-da-ga__hero-description {
  font-size: 1.15em;
  color: #FFF3E6;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: left;
}

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

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

.page-da-ga__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-da-ga__why-choose-section {
  background-color: #17191F; /* Card BG color */
  padding: 60px 0;
}

.page-da-ga__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-da-ga__feature-item {
  background-color: #0D0E12;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C;
}

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

.page-da-ga__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFB04D; /* Glow color */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-da-ga__feature-title {
  font-size: 1.6em;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-da-ga__feature-text {
  color: #FFF3E6;
  font-size: 1em;
}

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

.page-da-ga__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-da-ga__type-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease;
}

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

.page-da-ga__type-card-img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-da-ga__type-card-title {
  font-size: 1.5em;
  color: #FFA53A;
  padding: 15px;
  margin-bottom: 0;
}

.page-da-ga__type-card-text {
  color: #FFF3E6;
  padding: 0 15px 20px;
  font-size: 0.95em;
}

/* Guide Section */
.page-da-ga__guide-section {
  background-color: #17191F;
  padding: 60px 0;
}

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

.page-da-ga__step-item {
  background-color: #0D0E12;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  position: relative;
  padding-top: 60px;
}

.page-da-ga__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FF8C1A;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-da-ga__step-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-da-ga__step-text {
  color: #FFF3E6;
  font-size: 0.95em;
}

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

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

.page-da-ga__strategy-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease;
}

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

.page-da-ga__strategy-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-da-ga__strategy-card-title {
  font-size: 1.4em;
  color: #FFA53A;
  padding: 15px;
  margin-bottom: 0;
}

.page-da-ga__strategy-card-text {
  color: #FFF3E6;
  padding: 0 15px 20px;
  font-size: 0.95em;
}

/* Promo Section */
.page-da-ga__promo-section {
  background-color: #17191F;
  padding: 60px 0;
}

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

.page-da-ga__promo-card {
  background-color: #0D0E12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease;
}

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

.page-da-ga__promo-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-da-ga__promo-card-title {
  font-size: 1.4em;
  color: #FFA53A;
  padding: 15px;
  margin-bottom: 0;
}

.page-da-ga__promo-card-text {
  color: #FFF3E6;
  padding: 0 15px 20px;
  font-size: 0.95em;
}

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

.page-da-ga__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-da-ga__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-da-ga__faq-item[open] {
  background-color: #1D1F26;
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFA53A;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

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

.page-da-ga__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A;
}

.page-da-ga__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF3E6;
}

.page-da-ga__faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.page-da-ga__final-cta-section {
  background-color: #17191F;
  padding: 60px 0;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-da-ga {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-da-ga__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-da-ga__section-title {
    font-size: 2em;
  }

  .page-da-ga__section-description {
    font-size: 1em;
  }

  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Enforced small top padding */
    padding-bottom: 40px;
  }

  .page-da-ga__hero-container {
    flex-direction: column;
    gap: 30px;
  }

  .page-da-ga__hero-content {
    padding-right: 0;
    order: 2; /* Content after image on mobile */
  }

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

  .page-da-ga__hero-title {
    text-align: center;
  }

  .page-da-ga__hero-description {
    text-align: center;
  }

  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Buttons general mobile styles */
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary {
    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;
  }

  .page-da-ga__cta-center {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Why Choose Section */
  .page-da-ga__features-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga__icon-box-media {
    width: 150px;
    height: 150px;
  }

  /* Game Types Section */
  .page-da-ga__type-cards {
    grid-template-columns: 1fr;
  }

  .page-da-ga__type-card-img {
    
  }

  /* Guide Section */
  .page-da-ga__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-da-ga__step-item {
    padding-top: 50px;
  }

  .page-da-ga__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  /* Strategy Section */
  .page-da-ga__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga__strategy-card-img {
    
  }

  /* Promo Section */
  .page-da-ga__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga__promo-card-img {
    
  }

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

  .page-da-ga__faq-answer {
    padding: 0 20px 15px;
  }

  /* General image responsiveness */
  .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,
  .page-da-ga__hero-cta-buttons,
  .page-da-ga__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-da-ga__hero-cta-buttons,
  .page-da-ga__cta-center {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}