/* style/da-ga.css */
.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy); /* Body background from shared.css */
}

.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

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

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

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

.page-da-ga__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

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

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

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

.page-da-ga__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E;
}

.page-da-ga__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

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

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

.page-da-ga__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF;
}

.page-da-ga__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-da-ga__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

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

.page-da-ga__features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-da-ga__feature-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  box-sizing: border-box;
}

.page-da-ga__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #244D84; /* Border */
  box-shadow: 0 0 15px rgba(79, 168, 255, 0.5); /* Glow */
}

.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.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

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

.page-da-ga__how-to-play-section {
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

.page-da-ga__guide-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-da-ga__guide-steps {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-da-ga__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.page-da-ga__step-number {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-da-ga__step-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 5px;
}

.page-da-ga__step-text {
  font-size: 1em;
  color: #AFC4E8;
}

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

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

.page-da-ga__tips-section {
  padding-bottom: 60px;
}

.page-da-ga__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-da-ga__tip-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #AFC4E8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-da-ga__tips-image-wrapper {
  text-align: center;
}

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

.page-da-ga__faq-section {
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

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

.page-da-ga__faq-item {
  background-color: #10233F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-da-ga__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  position: relative;
}

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

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

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

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
  content: '−';
}

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

.page-da-ga__cta-final-section {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.page-da-ga__cta-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-da-ga__btn-large {
  padding: 16px 32px;
  font-size: 1.2em;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-da-ga__hero-container,
  .page-da-ga__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-da-ga__feature-item {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

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

  .page-da-ga__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

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

  .page-da-ga__hero-content,
  .page-da-ga__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary,
  .page-da-ga__btn-large,
  .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;
    text-align: center;
  }

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

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

  .page-da-ga__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-da-ga__features-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-da-ga__feature-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 25px;
  }

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

  .page-da-ga__guide-grid {
    flex-direction: column-reverse; /* Image first, then steps */
    gap: 30px;
  }

  .page-da-ga__guide-steps,
  .page-da-ga__guide-image-wrapper {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-da-ga__step-item {
    margin-bottom: 20px;
    gap: 10px;
  }

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

  .page-da-ga__step-title {
    font-size: 1.3em;
  }

  .page-da-ga__tips-list {
    margin-bottom: 30px;
  }

  .page-da-ga__tip-item {
    font-size: 0.95em;
    padding: 12px 18px;
  }

  .page-da-ga__faq-item summary {
    padding: 18px 20px;
    font-size: 1.1em;
  }

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

  /* Universal image responsive for content area */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure all containers with images also adapt */
  .page-da-ga__hero-image,
  .page-da-ga__guide-image-wrapper,
  .page-da-ga__tips-image-wrapper,
  .page-da-ga__cta-final-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}