/* General page styling */
.page-da-ga {
  font-family: Arial, sans-serif;
  color: #F3F8FF; /* Text Main */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-da-ga__section-title,
.page-da-ga__main-title {
  font-size: clamp(28px, 4vw, 48px); /* H1 title clamp */
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #F3F8FF; /* Text Main */
  line-height: 1.2;
}

.page-da-ga__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  margin-top: 40px;
}

.page-da-ga__text-block {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: justify;
}

.page-da-ga__dark-section {
  background-color: #10233F; /* Card BG */
  padding: 60px 0;
  margin: 40px 0;
}

/* Buttons */
.page-da-ga__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box; /* For mobile responsiveness */
  white-space: normal; /* For mobile responsiveness */
  word-wrap: break-word; /* For mobile responsiveness */
}

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

.page-da-ga__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-da-ga__btn-secondary {
  background-color: transparent;
  color: #F3F8FF; /* Text Main */
  border: 2px solid #2B73F6; /* Use primary button color for border */
}

.page-da-ga__btn-secondary:hover {
  background-color: rgba(43, 115, 246, 0.1);
  transform: translateY(-2px);
}

.page-da-ga__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

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

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

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08162B; /* Deep Navy - consistent with body for visual flow */
}

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

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

.page-da-ga__main-title {
  text-align: left;
  margin-bottom: 20px;
}

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

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

.page-da-ga__hero-side-image {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-da-ga__feature-item {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-da-ga__icon-box-media {
  width: 180px; /* Adjusted to 180x180 for better fit in 3-column grid */
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #244D84; /* Border color */
  box-shadow: 0 0 0 8px rgba(43, 115, 246, 0.2); /* Glow effect */
}

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

.page-da-ga__feature-title {
  font-size: 24px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-da-ga__feature-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
}

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

.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);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.page-da-ga__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-da-ga__type-title {
  font-size: 22px;
  color: #F3F8FF; /* Text Main */
  margin: 20px 15px 10px;
}

.page-da-ga__type-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-da-ga__type-card .page-da-ga__btn {
  margin: 0 15px 20px;
}

/* Guide Section */
.page-da-ga__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-da-ga__guide-item {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.page-da-ga__guide-item:last-child {
  margin-bottom: 0;
}

.page-da-ga__guide-step-title {
  font-size: 20px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-da-ga__guide-item p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

.page-da-ga__guide-item a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
}

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

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

.page-da-ga__tip-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-da-ga__tip-card:hover {
  transform: translateY(-8px);
}

.page-da-ga__tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-da-ga__tip-title {
  font-size: 22px;
  color: #F3F8FF; /* Text Main */
  margin: 20px 15px 10px;
}

.page-da-ga__tip-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 15px 20px;
}

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

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

.page-da-ga__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  list-style: none; /* Hide default marker */
}

.page-da-ga__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-da-ga__faq-item summary:hover {
  background-color: rgba(43, 115, 246, 0.05);
}

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

.page-da-ga__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #4FA8FF; /* Glow */
}

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

.page-da-ga__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

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

.page-da-ga__faq-answer a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
}

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

/* CTA Banner Section */
.page-da-ga__cta-banner {
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(rgba(17, 59, 122, 0.9), rgba(17, 59, 122, 0.9)), url('[GALLERY:blog:1920x400:cockfighting_arena_overview,betting_crowd,energetic,hh88]'); /* Using blog type for banner-like image */
  background-size: cover;
  background-position: center;
  margin-top: 60px;
}

.page-da-ga__cta-banner-content {
  max-width: 800px;
}

.page-da-ga__cta-banner-title {
  font-size: clamp(26px, 3.8vw, 42px);
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-da-ga__cta-banner-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

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

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

  .page-da-ga__hero-image {
    order: -1; /* Image above text on smaller screens */
  }

  .page-da-ga__features-grid,
  .page-da-ga__types-grid,
  .page-da-ga__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

@media (max-width: 768px) {
  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-da-ga__hero-container {
    padding: 0 15px;
  }

  .page-da-ga__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }

  .page-da-ga__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  /* Buttons and Button Containers */
  .page-da-ga__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-da-ga__btn {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Content Area */
  .page-da-ga__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-da-ga__section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 25px;
  }

  /* General Images */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Module 1: Features Section Circular Images */
  .page-da-ga__features-grid {
    grid-template-columns: 1fr; /* Single column */
  }

  .page-da-ga__icon-box-media {
    width: 200px; /* Still square, but larger for single column */
    height: 200px;
    border-width: 3px;
    box-shadow: 0 0 0 6px rgba(43, 115, 246, 0.15);
  }

  .page-da-ga__feature-title {
    font-size: 20px;
  }

  .page-da-ga__feature-description {
    font-size: 14px;
  }

  /* Types Section */
  .page-da-ga__types-grid {
    grid-template-columns: 1fr; /* Single column */
  }

  .page-da-ga__type-card {
    margin-bottom: 20px;
  }

  .page-da-ga__type-title {
    font-size: 20px;
  }

  /* Guide Section */
  .page-da-ga__guide-item {
    padding: 20px;
  }

  .page-da-ga__guide-step-title {
    font-size: 18px;
  }

  .page-da-ga__guide-item p {
    font-size: 15px;
  }

  /* Tips Section */
  .page-da-ga__tips-grid {
    grid-template-columns: 1fr; /* Single column */
  }

  .page-da-ga__tip-title {
    font-size: 20px;
  }

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

  .page-da-ga__faq-toggle {
    font-size: 20px;
  }

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

  /* CTA Banner */
  .page-da-ga__cta-banner {
    padding: 60px 0;
    margin-top: 40px;
  }

  .page-da-ga__cta-banner-title {
    font-size: clamp(22px, 5.5vw, 30px);
    margin-bottom: 15px;
  }

  .page-da-ga__cta-banner-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-da-ga__cta-banner-content {
    padding: 0 15px;
  }
}