.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-deep-navy);
}

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

.page-da-ga__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-da-ga__section-description {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__dark-bg {
  background-color: var(--color-deep-navy);
  color: var(--color-text-main);
}

.page-da-ga__dark-section {
  background-color: var(--color-card-bg);
  color: var(--color-text-main);
  padding: 60px 0;
}

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--color-deep-navy);
  position: relative;
  overflow: hidden;
}

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

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

.page-da-ga__hero-title {
  font-size: clamp(38px, 5vw, 56px);
  color: var(--color-text-main);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.page-da-ga__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

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

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

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

/* Buttons */
.page-da-ga__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-da-ga__btn-primary {
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-da-ga__btn-secondary {
  background-color: transparent;
  color: var(--color-text-main);
  border: 2px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-da-ga__btn-secondary:hover {
  background-color: var(--color-border);
  color: var(--color-text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-da-ga__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-da-ga__icon-box {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
}

.page-da-ga__icon-box-media {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-gold);
  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__icon-box-title {
  font-size: 24px;
  color: var(--color-text-main);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-da-ga__icon-box-text {
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* Content Layout (About, Tips) */
.page-da-ga__content-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 40px 16px;
}

.page-da-ga__content-layout--reverse {
  flex-direction: row-reverse;
}

.page-da-ga__content-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-da-ga__content-text .page-da-ga__section-title {
  text-align: left;
  margin-bottom: 25px;
}

.page-da-ga__text-block {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.page-da-ga__content-text .page-da-ga__cta-button {
  margin-top: 20px;
}

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

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

/* How to Play Section */
.page-da-ga__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__guide-step {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-da-ga__step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(242, 193, 78, 0.1);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.page-da-ga__guide-step h3, .page-da-ga__guide-step p {
  position: relative;
  z-index: 1;
}

.page-da-ga__step-title {
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 20px;
}

.page-da-ga__step-text {
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* Tips Section */
.page-da-ga__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-da-ga__tips-list li {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-da-ga__tips-list li::before {
  content: '✓';
  color: var(--color-gold);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-da-ga__tips-list li strong {
  color: var(--color-text-main);
}

/* FAQ Section */
.page-da-ga__faq-list {
  margin-top: 40px;
}

.page-da-ga__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

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

.page-da-ga__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-gold);
  margin-left: 15px;
}

.page-da-ga__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* Bottom CTA Section */
.page-da-ga__cta-bottom-section {
  text-align: center;
  padding: 80px 16px;
}

.page-da-ga__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-da-ga__cta-content .page-da-ga__section-title {
  margin-bottom: 15px;
}

.page-da-ga__cta-content .page-da-ga__section-description {
  margin-bottom: 30px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-container {
    gap: 30px;
  }
  .page-da-ga__hero-content,
  .page-da-ga__hero-image {
    flex: 1 1 100%;
    text-align: center;
  }
  .page-da-ga__hero-cta-buttons {
    justify-content: center;
  }
  .page-da-ga__content-layout,
  .page-da-ga__content-layout--reverse {
    flex-direction: column;
    gap: 30px;
  }
  .page-da-ga__content-text,
  .page-da-ga__content-image {
    flex: 1 1 100%;
  }
  .page-da-ga__content-text .page-da-ga__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-da-ga__hero-title {
    font-size: clamp(32px, 8vw, 42px);
  }
  .page-da-ga__hero-description {
    font-size: 16px;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-da-ga__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  /* Intro Section - Module 1 */
  .page-da-ga__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga__icon-box-media {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .page-da-ga__icon-box-title {
    font-size: 20px;
  }

  /* General content sections */
  .page-da-ga__container {
    padding: 30px 15px;
  }
  .page-da-ga__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 15px;
  }
  .page-da-ga__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-da-ga__text-block {
    font-size: 15px;
  }

  /* How to Play Section */
  .page-da-ga__guide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga__step-title {
    font-size: 20px;
  }
  .page-da-ga__step-text {
    font-size: 15px;
  }

  /* Tips Section */
  .page-da-ga__tips-list li {
    font-size: 15px;
    padding-left: 20px;
  }

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

  /* Bottom CTA Section */
  .page-da-ga__cta-bottom-section {
    padding: 60px 15px;
  }

  /* Universal image and container 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-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-da-ga__hero-container, .page-da-ga__content-layout {
    padding-left: 0;
    padding-right: 0;
  }
}