
    /* General styling for the page */
.page-daga-88 {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: 10px; /* Adjust for fixed header, assuming body has padding-top already */
}

/* Hero Section */
.page-daga-88__hero-section {
  position: relative;
  height: 60vh; /* Responsive height */
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-daga-88__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-daga-88__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-daga-88__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-daga-88__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-daga-88__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
}

.page-daga-88__cta-button {
  display: inline-block;
  background-color: #ff4500; /* Orange-red for action */
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-daga-88__cta-button:hover {
  background-color: #e63e00;
}

/* Section Titles */
.page-daga-88__section-title {
  font-size: 2.2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 15px;
  line-height: 1.3;
}

.page-daga-88__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

/* Features Section */
.page-daga-88__features-section {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 40px;
}

.page-daga-88__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-daga-88__feature-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-daga-88__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-daga-88__feature-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small, min 200x200 */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-daga-88__feature-title {
  font-size: 1.5em;
  color: #ff4500;
  margin-bottom: 10px;
}

.page-daga-88__feature-description {
  font-size: 1em;
  color: #666;
}

/* Game Types Section */
.page-daga-88__game-types-section {
  padding: 60px 20px;
  background-color: #f0f2f5;
  margin-bottom: 40px;
}

.page-daga-88__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-daga-88__type-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-daga-88__type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-daga-88__type-image {
  width: 100%;
  height: 250px; /* Fixed height for visual consistency */
  object-fit: cover;
}

.page-daga-88__type-title {
  font-size: 1.4em;
  color: #2c3e50;
  margin: 20px 0 10px;
  padding: 0 20px;
}

.page-daga-88__type-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
}

/* How To Play Section */
.page-daga-88__how-to-play-section {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 40px;
}

.page-daga-88__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px auto;
}

.page-daga-88__step-item {
  text-align: center;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-daga-88__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff4500;
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-daga-88__step-title {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.page-daga-88__step-description {
  font-size: 0.95em;
  color: #666;
}

.page-daga-88__cta-button--bottom {
  margin-top: 30px;
  text-align: center;
  display: block; /* Make it a block element to center with margin auto */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-daga-88__faq-section {
  padding: 60px 20px;
  background-color: #f0f2f5;
  margin-bottom: 40px;
}

.page-daga-88__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-daga-88__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-daga-88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #ff4500; /* Darker background for question */
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-daga-88__faq-question:hover {
  background-color: #e63e00;
}

.page-daga-88__faq-question-text {
  font-size: 1.1em;
  margin: 0;
  flex-grow: 1;
  text-align: left;
  pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-daga-88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click on parent div */
}

.page-daga-88__faq-item.active .page-daga-88__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - visual */
}

.page-daga-88__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #fefefe;
  color: #333;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  box-sizing: border-box; /* Crucial for padding to be included in max-height */
}

.page-daga-88__faq-item.active .page-daga-88__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to show all content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-daga-88__faq-answer p {
  margin: 0;
  font-size: 0.95em;
}

/* Call to Action Bottom Section */
.page-daga-88__cta-bottom-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ff6b6b, #ff4500);
  color: #fff;
  border-radius: 0;
}

.page-daga-88__cta-bottom-section .page-daga-88__section-title {
  color: #fff;
}

.page-daga-88__cta-bottom-section .page-daga-88__section-description {
  color: #ffe0d8;
  margin-bottom: 30px;
}

.page-daga-88__cta-bottom-section .page-daga-88__cta-button {
  background-color: #2c3e50;
}

.page-daga-88__cta-bottom-section .page-daga-88__cta-button:hover {
  background-color: #34495e;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .page-daga-88__hero-section {
    height: 70vh;
  }

  .page-daga-88__hero-title {
    font-size: 2em;
  }

  .page-daga-88__hero-description {
    font-size: 1em;
  }

  .page-daga-88__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-daga-88__section-title {
    font-size: 1.8em;
  }

  .page-daga-88__section-description {
    font-size: 1em;
  }

  .page-daga-88__features-grid,
  .page-daga-88__types-grid,
  .page-daga-88__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-daga-88__feature-item,
  .page-daga-88__type-card,
  .page-daga-88__step-item {
    padding: 20px;
  }

  .page-daga-88__type-image {
    height: 200px;
  }

  /* List items mobile responsiveness */
  .page-daga-88__features-grid > .page-daga-88__feature-item,
  .page-daga-88__types-grid > .page-daga-88__type-card,
  .page-daga-88__steps-grid > .page-daga-88__step-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px 15px !important; /* Adjust padding to prevent overflow */
  }

  .page-daga-88__feature-description,
  .page-daga-88__type-description,
  .page-daga-88__step-description {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-daga-88__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-daga-88__faq-question-text {
    font-size: 1em;
  }

  .page-daga-88__faq-answer {
    padding: 0 20px;
  }

  .page-daga-88__faq-item.active .page-daga-88__faq-answer {
    padding: 15px 20px !important;
  }

  /* Image responsiveness */
  .page-daga-88__hero-image,
  .page-daga-88__feature-icon,
  .page-daga-88__type-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-daga-88__feature-icon {
    max-width: 200px !important; /* Ensure min width of 200px is still respected, but scales down */
    margin-left: auto;
    margin-right: auto;
  }
}
  