.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
}

.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background: #B71C1C; /* Background color for hero */
  color: #FFF5E1; /* Text color for dark background */
}

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

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

.page-da-ga__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFF5E1;
}

.page-da-ga__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.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: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-da-ga__btn-secondary {
  background: #D32F2F; /* Card BG color */
  color: #FFF5E1; /* Text Main color */
  border: 2px solid #F2B544; /* Border color */
}

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

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

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

.page-da-ga__intro-section {
  padding: 60px 16px;
  background: #f4f4f4; /* Light background for intro section */
  color: #333333;
}

.page-da-ga__intro-container {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

.page-da-ga__intro-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #C91F17; /* Main brand color */
}

.page-da-ga__intro-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-da-ga__icon-box {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-da-ga__icon-box:hover {
  transform: translateY(-10px);
}

.page-da-ga__icon-box-media {
  width: 150px;
  height: 150px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2B544; /* Border color */
}

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

.page-da-ga__icon-box-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #C91F17;
}

.page-da-ga__icon-box-text {
  font-size: 1em;
  color: #555555;
}

.page-da-ga__content-area,
.page-da-ga__strategy-section,
.page-da-ga__promo-section,
.page-da-ga__faq-section {
  padding: 60px 16px;
}

.page-da-ga__dark-bg {
  background: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main color */
}

.page-da-ga__light-bg {
  background: #f4f4f4;
  color: #333333;
}

.page-da-ga__content-container,
.page-da-ga__strategy-container,
.page-da-ga__promo-container,
.page-da-ga__faq-container {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

.page-da-ga__content-title,
.page-da-ga__strategy-title,
.page-da-ga__promo-title,
.page-da-ga__faq-main-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section background */
}

.page-da-ga__content-text,
.page-da-ga__strategy-description,
.page-da-ga__promo-description,
.page-da-ga__strategy-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-da-ga__content-image,
.page-da-ga__strategy-image,
.page-da-ga__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__game-types-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.page-da-ga__game-type-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: #D32F2F; /* Card BG color */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  color: #FFF5E1;
  border: 1px solid #F2B544;
}

.page-da-ga__game-type-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFCC66; /* Glow color */
}

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

.page-da-ga__strategy-list {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px;
  list-style: none;
  padding-left: 0;
}

.page-da-ga__strategy-list li {
  background: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 1.05em;
}

.page-da-ga__strategy-list li::before {
  content: '✓';
  color: #C91F17;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-da-ga__promo-details {
  margin-top: 30px;
}

.page-da-ga__promo-details p {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

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

.page-da-ga__faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  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.2em;
  font-weight: bold;
  color: #C91F17;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.page-da-ga__faq-question::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: #555;
}

.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: #555555;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-da-ga__intro-title,
  .page-da-ga__content-title,
  .page-da-ga__strategy-title,
  .page-da-ga__promo-title,
  .page-da-ga__faq-main-title {
    font-size: 2em;
  }
  .page-da-ga__intro-features {
    gap: 20px;
  }
  .page-da-ga__icon-box {
    flex: 1 1 250px;
  }
}

@media (max-width: 768px) {
  .page-da-ga__hero-section {
    padding-top: 10px !important;
  }
  .page-da-ga__hero-container {
    flex-direction: column;
    padding: 30px 15px;
  }
  .page-da-ga__hero-content {
    order: 2; /* Content after image */
    text-align: center;
    flex: 1 1 100%;
  }
  .page-da-ga__hero-image {
    order: 1; /* Image before content */
    text-align: center;
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary {
    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__intro-section,
  .page-da-ga__content-area,
  .page-da-ga__strategy-section,
  .page-da-ga__promo-section,
  .page-da-ga__faq-section {
    padding: 40px 15px;
  }
  .page-da-ga__intro-title,
  .page-da-ga__content-title,
  .page-da-ga__strategy-title,
  .page-da-ga__promo-title,
  .page-da-ga__faq-main-title {
    font-size: 1.8em;
  }
  .page-da-ga__intro-description,
  .page-da-ga__content-text,
  .page-da-ga__strategy-description,
  .page-da-ga__promo-description,
  .page-da-ga__strategy-text,
  .page-da-ga__game-type-description,
  .page-da-ga__strategy-list li,
  .page-da-ga__promo-details p,
  .page-da-ga__faq-answer {
    font-size: 1em;
  }
  .page-da-ga__intro-features {
    flex-direction: column;
    gap: 20px;
  }
  .page-da-ga__icon-box {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .page-da-ga__icon-box-media {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }
  .page-da-ga__icon-box-title {
    font-size: 1.3em;
  }
  .page-da-ga__game-types-list {
    flex-direction: column;
    gap: 20px;
  }
  .page-da-ga__game-type-item {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .page-da-ga__strategy-list {
    padding-left: 0;
  }
  .page-da-ga__strategy-list li {
    padding: 12px 15px;
  }
  .page-da-ga__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-da-ga__faq-answer {
    padding: 0 20px 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__hero-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-da-ga__hero-cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}