.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main on Deep Navy Body */
  background-color: var(--deep-navy, #08162B); /* Fallback if shared.css not loaded */
}

.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: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* HERO Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
}

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

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

.page-da-ga__hero-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-da-ga__hero-description {
  font-size: 1.2em;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
}

.page-da-ga__hero-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;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */
  border: none;
}

.page-da-ga__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-da-ga__btn-secondary {
  background: #113B7A; /* Main color */
  color: #F3F8FF; /* Text Main */
  border: 2px solid #2B73F6;
}

.page-da-ga__btn-secondary:hover {
  background: #2B73F6;
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

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

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

/* Intro Section */
.page-da-ga__intro-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-da-ga__feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.page-da-ga__feature-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
}

.page-da-ga__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Gold border */
}

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

.page-da-ga__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-da-ga__feature-text {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95em;
}

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

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

.page-da-ga__type-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
  display: flex;
  flex-direction: column;
}

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

.page-da-ga__type-card h3,
.page-da-ga__type-card p {
  padding: 0 25px;
}

.page-da-ga__type-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-da-ga__type-text {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
}

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

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

.page-da-ga__step-item {
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-da-ga__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E; /* Gold */
  color: #113B7A; /* Main color */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #08162B; /* Deep Navy */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-da-ga__step-title {
  font-size: 1.4em;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-da-ga__step-text {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95em;
}

.page-da-ga__step-text a {
  color: #2B73F6;
  text-decoration: none;
}

.page-da-ga__step-text a:hover {
  text-decoration: underline;
}

.page-da-ga__guide-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

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

/* Tips Section */
.page-da-ga__tips-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-da-ga__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__tips-item {
  background-color: #10233F; /* Card BG */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #F3F8FF; /* Text Main */
  font-size: 1.1em;
  border-left: 5px solid #F2C14E; /* Gold */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-da-ga__tips-item strong {
  color: #F2C14E; /* Gold */
}

.page-da-ga__tips-item a {
  color: #2B73F6;
  text-decoration: none;
}

.page-da-ga__tips-item a:hover {
  text-decoration: underline;
}

.page-da-ga__tips-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

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

/* Why Choose Section */
.page-da-ga__why-choose-section {
  padding: 60px 0;
  background-color: #113B7A; /* Main color */
}

.page-da-ga__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-da-ga__benefits-item {
  background-color: #08162B; /* Deep Navy */
  padding: 25px;
  border-radius: 12px;
  color: #F3F8FF; /* Text Main */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
}

.page-da-ga__benefits-item strong {
  color: #F2C14E; /* Gold */
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-da-ga__benefits-item a {
  color: #2B73F6;
  text-decoration: none;
}

.page-da-ga__benefits-item a:hover {
  text-decoration: underline;
}

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

.page-da-ga__cta-buttons--center .page-da-ga__btn-primary {
  margin: 0 auto;
  display: inline-block;
}

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

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

.page-da-ga__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  background-color: #113B7A; /* Main color */
  border-bottom: 1px solid #244D84;
  list-style: none;
}

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

.page-da-ga__faq-question:hover {
  background-color: #1D5FD1; /* Auxiliary color */
}

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

.page-da-ga__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-da-ga__faq-answer {
  padding: 15px 25px;
  font-size: 1.05em;
  color: #AFC4E8; /* Text Secondary */
  background-color: #10233F; /* Card BG */
}

.page-da-ga__faq-answer p {
  margin-bottom: 10px;
}

.page-da-ga__faq-answer a {
  color: #2B73F6;
  text-decoration: none;
}