/* Base styles for page-da-ga */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

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

.page-da-ga__section-padding {
  padding: 60px 0;
}

.page-da-ga__bg-light {
  background-color: #F4F7FB; /* Background */
}

.page-da-ga__dark-bg {
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff; /* Light text for dark background */
}

.page-da-ga__section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
}

.page-da-ga__section-title--light {
  color: #ffffff;
}

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

.page-da-ga__text-block--light {
  color: #ffffff;
}

.page-da-ga__image-wrapper {
  margin: 30px auto;
  text-align: center;
}

.page-da-ga img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover; /* Default for larger images */
}

/* Buttons */
.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Gradient */
  color: #ffffff;
  border: none;
}

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

.page-da-ga__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Primary Color */
  border: 2px solid #2F6BFF;
}

.page-da-ga__btn-secondary:hover {
  background: #F4F7FB; /* Background */
  transform: translateY(-2px);
}

.page-da-ga__btn-small {
  padding: 10px 20px;
  font-size: 15px;
}

.page-da-ga__btn-large {
  padding: 16px 35px;
  font-size: 18px;
}

/* Hero Section */
.page-da-ga__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, not --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-da-ga__hero-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Space between image and content */
}

.page-da-ga__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-da-ga__hero-content {
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
}

.page-da-ga__hero-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-da-ga__hero-description {
  font-size: 19px;
  color: #1F2D3D;
  margin-bottom: 30px;
}

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

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

.page-da-ga__card {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #1F2D3D;
}

.page-da-ga__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-da-ga__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2F6BFF; /* Primary Color */
}

.page-da-ga__card-text {
  font-size: 16px;
  line-height: 1.6;
}

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

.page-da-ga__guide-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-da-ga__guide-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-da-ga__guide-step-text {
  font-size: 16px;
  margin-bottom: 20px;
}

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

.page-da-ga__tips-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-da-ga__tips-title {
  font-size: 20px;
  font-weight: 600;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 10px;
}

.page-da-ga__tips-text {
  font-size: 16px;
}

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

.page-da-ga__benefit-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-da-ga__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-da-ga__benefit-text {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* CTA Section */
.page-da-ga__cta-container {
  text-align: center;
}

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

/* FAQ Section */
details.page-da-ga__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  color: #1F2D3D;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question::-webkit-details-marker {
  display: none;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question:hover {
  background: #F4F7FB; /* Background */
}
.page-da-ga__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #000000; /* Custom Color_1776249996415 */
}
.page-da-ga__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF; /* Primary Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-da-ga__faq-item .page-da-ga__faq-answer {
  padding: 0 20px 20px;
  background: #F4F7FB; /* Background */
  border-radius: 0 0 5px 5px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-da-ga__hero-image {
    height: 500px;
  }
  .page-da-ga__section-padding {
    padding: 50px 0;
  }
  .page-da-ga__section-title {
    margin-bottom: 30px;
  }
  .page-da-ga__grid-three-columns {
    gap: 20px;
  }
  .page-da-ga__benefits-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-da-ga__container {
    padding: 0 15px !important;
  }
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Mobile top padding */
    padding-bottom: 40px;
  }
  .page-da-ga__hero-image {
    height: 300px !important;
    margin-bottom: 20px;
  }
  .page-da-ga__hero-image img {
    object-fit: contain !important; /* HERO mobile image must contain */
    aspect-ratio: unset !important;
  }
  .page-da-ga__hero-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }
  .page-da-ga__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column !important;
    gap: 15px;
  }
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary,
  .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;
  }
  .page-da-ga__cta-buttons,
  .page-da-ga__button-group,
  .page-da-ga__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-da-ga__section-padding {
    padding: 30px 0;
  }
  .page-da-ga__section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .page-da-ga__text-block {
    font-size: 15px;
  }
  .page-da-ga__grid-three-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga__card {
    padding: 20px;
  }
  .page-da-ga__card-title {
    font-size: 20px;
  }
  .page-da-ga__guide-item {
    padding: 20px;
  }
  .page-da-ga__guide-step-title {
    font-size: 18px;
  }
  .page-da-ga__tips-item {
    padding: 20px;
  }
  .page-da-ga__tips-title {
    font-size: 18px;
  }
  .page-da-ga__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga__benefit-card {
    padding: 25px;
  }
  details.page-da-ga__faq-item summary.page-da-ga__faq-question {
    padding: 15px;
  }
  .page-da-ga__faq-qtext {
    font-size: 16px;
  }
  .page-da-ga__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  .page-da-ga__faq-answer {
    padding: 0 15px 15px;
  }
  .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__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-da-ga__image-wrapper img {
    object-fit: contain !important;
  }
}