/* style/da-ga.css */

/* Base Styles */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Light background #F5F7FA -> Dark text */
  background-color: #F5F7FA;
}

.page-da-ga__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-da-ga__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #E53935;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-da-ga__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-da-ga__list li {
  margin-bottom: 8px;
}

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

.page-da-ga__content-area--center {
  text-align: center;
}

/* Buttons */
.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-da-ga__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-da-ga__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
}

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

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

.page-da-ga__btn-block {
  display: block;
  width: 100%;
  margin-top: 15px;
}

.page-da-ga__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #E53935;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-da-ga__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-da-ga__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 600px;
}

.page-da-ga__hero-image-wrapper {
  flex: 1 1 45%;
  text-align: center;
  z-index: 1;
}

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

/* Intro Section */
.page-da-ga__intro-section {
  padding: 60px 0;
  background-color: #F5F7FA;
  color: #333333;
}

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

.page-da-ga__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-da-ga__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 5px #FF5A4F, 0 0 0 8px #E53935;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%; /* Ensure image itself is circular */
}

.page-da-ga__feature-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 10px;
}

.page-da-ga__feature-text {
  color: #555555;
}

/* Bet Types Section */
.page-da-ga__bet-types-section {
  padding: 60px 0;
  background-color: #E53935;
  color: #ffffff;
}

.page-da-ga__bet-types-section .page-da-ga__section-title,
.page-da-ga__bet-types-section .page-da-ga__sub-title {
  color: #ffffff;
}

.page-da-ga__bet-types-section .page-da-ga__section-description,
.page-da-ga__bet-types-section .page-da-ga__list,
.page-da-ga__bet-types-section .page-da-ga__text-block p {
  color: #f0f0f0;
}

.page-da-ga__grid-two-cols {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-da-ga__grid-two-cols--reverse {
  flex-direction: row-reverse;
}

.page-da-ga__text-block {
  flex: 1;
  min-width: 300px;
}

.page-da-ga__image-block {
  flex: 1;
  text-align: center;
}

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

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

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

.page-da-ga__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-da-ga__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-da-ga__step-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 10px;
}

.page-da-ga__step-text {
  color: #555555;
  margin-bottom: 20px;
}

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

.page-da-ga__strategy-section .page-da-ga__section-title,
.page-da-ga__strategy-section .page-da-ga__sub-title {
  color: #ffffff;
}

.page-da-ga__strategy-section .page-da-ga__section-description,
.page-da-ga__strategy-section .page-da-ga__text-block p {
  color: #f0f0f0;
}

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

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

.page-da-ga__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-da-ga__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-da-ga__promo-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 10px;
}

.page-da-ga__promo-text {
  color: #555555;
  margin-bottom: 20px;
}

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

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

.page-da-ga__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #E0E0E0;
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #E0E0E0;
  list-style: none;
}

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

.page-da-ga__faq-item[open] .page-da-ga__faq-question {
  background-color: #E53935;
  color: #ffffff;
  border-bottom: none;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-question .page-da-ga__faq-toggle {
  color: #ffffff;
}

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

.page-da-ga__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  margin-left: 15px;
  color: #E53935;
}

.page-da-ga__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

/* Contact CTA Section */
.page-da-ga__contact-cta-section {
  padding: 60px 0;
  background-color: #E53935;
  color: #ffffff;
}

.page-da-ga__contact-cta-section .page-da-ga__section-title {
  color: #ffffff;
}

.page-da-ga__contact-cta-section .page-da-ga__section-description {
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-da-ga__hero-content {
    flex: 1 1 100%;
  }
  .page-da-ga__hero-image-wrapper {
    flex: 1 1 100%;
    margin-top: 30px;
  }
  .page-da-ga__grid-two-cols {
    flex-direction: column;
  }
  .page-da-ga__grid-two-cols--reverse {
    flex-direction: column;
  }
  .page-da-ga__text-block, .page-da-ga__image-block {
    min-width: unset;
    width: 100%;
  }
  .page-da-ga__section-title {
    font-size: 2em;
  }
  .page-da-ga__sub-title {
    font-size: 1.5em;
  }
  .page-da-ga__feature-title, .page-da-ga__step-title, .page-da-ga__promo-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  /* General mobile content area padding */
  .page-da-ga__content-area {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Retain small top padding */
    padding-bottom: 40px !important;
  }
  .page-da-ga__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
    text-align: center;
  }
  .page-da-ga__hero-description {
    font-size: 1em !important;
    text-align: center;
  }
  .page-da-ga__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px;
  }
  .page-da-ga__btn-primary, .page-da-ga__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
  }
  .page-da-ga__hero-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Module 1 (Intro Section) */
  .page-da-ga__intro-section {
    padding: 40px 0 !important;
  }
  .page-da-ga__features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-da-ga__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    box-shadow: 0 0 0 4px #FF5A4F, 0 0 0 6px #E53935 !important;
  }
  .page-da-ga__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
  }

  /* Bet Types Section */
  .page-da-ga__bet-types-section {
    padding: 40px 0 !important;
  }
  .page-da-ga__grid-two-cols {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .page-da-ga__grid-two-cols--reverse {
    flex-direction: column !important;
  }

  /* Guide Section */
  .page-da-ga__guide-section {
    padding: 40px 0 !important;
  }
  .page-da-ga__steps-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Strategy Section */
  .page-da-ga__strategy-section {
    padding: 40px 0 !important;
  }

  /* Promo Section */
  .page-da-ga__promo-section {
    padding: 40px 0 !important;
  }
  .page-da-ga__promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* FAQ Section */
  .page-da-ga__faq-section {
    padding: 40px 0 !important;
  }
  .page-da-ga__faq-question {
    padding: 15px 20px !important;
    font-size: 1em !important;
  }
  .page-da-ga__faq-toggle {
    font-size: 1.3em !important;
  }
  .page-da-ga__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.95em !important;
  }

  /* Contact CTA Section */
  .page-da-ga__contact-cta-section {
    padding: 40px 0 !important;
  }

  /* Universal Image and Container Mobile Adaptations */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-da-ga__section,
  .page-da-ga__card,
  .page-da-ga__container,
  .page-da-ga__hero-section,
  .page-da-ga__intro-section,
  .page-da-ga__bet-types-section,
  .page-da-ga__guide-section,
  .page-da-ga__strategy-section,
  .page-da-ga__promo-section,
  .page-da-ga__faq-section,
  .page-da-ga__contact-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-da-ga__section-title {
    font-size: 1.8em !important;
  }
  .page-da-ga__section-description {
    font-size: 0.95em !important;
  }
  .page-da-ga__sub-title {
    font-size: 1.3em !important;
  }
  .page-da-ga p, .page-da-ga li {
    font-size: 0.95em !important;
  }
}