:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --bg-color: #0A0A0A;
  --card-bg: #111111;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-explore-daga68-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Text Main on Background */
  background-color: var(--bg-color); /* Body background color */
}

.page-blog-explore-daga68-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-blog-explore-daga68-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--bg-color);
}

.page-blog-explore-daga68-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-explore-daga68-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-explore-daga68-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.4); /* Subtle glow from --glow-color */
}

.page-blog-explore-daga68-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-explore-daga68-features__main-title {
  color: var(--secondary-color); /* Use secondary color for main title */
  margin-bottom: 15px;
  /* font-size handled by shared for h1, do not hardcode */
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-daga68-features__hero-description {
  font-size: 1.1em;
  color: var(--text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-daga68-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff; /* White text for contrast on gradient button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

.page-blog-explore-daga68-features__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-blog-explore-daga68-features__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 20px;
}

.page-blog-explore-daga68-features__cta-button--full-width {
  width: 100%;
  max-width: 400px; /* Limit width on desktop */
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  text-align: center;
}

.page-blog-explore-daga68-features__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}


/* General Section Styling */
.page-blog-explore-daga68-features__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-blog-explore-daga68-features__text-block {
  font-size: 1.1em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-daga68-features__dark-bg {
  background-color: var(--card-bg); /* Use card background for dark sections */
  padding: 60px 0;
}

.page-blog-explore-daga68-features__intro-section {
  padding: 60px 0;
}

/* Feature Grid */
.page-blog-explore-daga68-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-explore-daga68-features__feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-blog-explore-daga68-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-explore-daga68-features__feature-icon {
  width: 100%; /* Ensure images take full width of card */
  height: auto;
  max-width: 250px; /* Limit icon size */
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-daga68-features__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-explore-daga68-features__feature-description {
  font-size: 1em;
  color: var(--text-main);
}

/* Game Types Section */
.page-blog-explore-daga68-features__game-types-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.page-blog-explore-daga68-features__game-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-explore-daga68-features__game-category--reverse {
  flex-direction: row-reverse;
}

.page-blog-explore-daga68-features__game-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.2);
}

.page-blog-explore-daga68-features__game-content {
  flex: 1;
  color: var(--text-main);
}

.page-blog-explore-daga68-features__game-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-blog-explore-daga68-features__game-description {
  font-size: 1.05em;
  margin-bottom: 25px;
}

.page-blog-explore-daga68-features__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-explore-daga68-features__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.3);
}

/* Promotions Section */
.page-blog-explore-daga68-features__promotions-section {
  padding: 80px 0;
}

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

.page-blog-explore-daga68-features__promo-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-blog-explore-daga68-features__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-explore-daga68-features__promo-image {
  width: 100%;
  height: auto;
  max-width: 350px; /* Limit image size within card */
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-daga68-features__promo-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-blog-explore-daga68-features__promo-description {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-blog-explore-daga68-features__btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-explore-daga68-features__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(242, 193, 78, 0.3);
}

/* Support Section */
.page-blog-explore-daga68-features__support-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

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

.page-blog-explore-daga68-features__support-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-blog-explore-daga68-features__support-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-daga68-features__support-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-explore-daga68-features__support-description {
  font-size: 1em;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-explore-daga68-features__faq-section {
  padding: 80px 0;
}

.page-blog-explore-daga68-features__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

details.page-blog-explore-daga68-features__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  color: var(--text-main);
}
details.page-blog-explore-daga68-features__faq-item summary.page-blog-explore-daga68-features__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-blog-explore-daga68-features__faq-item summary.page-blog-explore-daga68-features__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-explore-daga68-features__faq-item summary.page-blog-explore-daga68-features__faq-question:hover {
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter hover on dark card */
}
.page-blog-explore-daga68-features__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color); /* FAQ question text in primary color */
}
.page-blog-explore-daga68-features__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color); /* Toggle icon in secondary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-explore-daga68-features__faq-item .page-blog-explore-daga68-features__faq-answer {
  padding: 0 20px 20px;
  background: rgba(0, 0, 0, 0.3); /* Slightly darker background for answer */
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
}
details.page-blog-explore-daga68-features__faq-item .page-blog-explore-daga68-features__faq-answer p {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* CTA Bottom Section */
.page-blog-explore-daga68-features__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-explore-daga68-features__game-category {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-explore-daga68-features__game-category--reverse {
    flex-direction: column; /* Reset to column for smaller screens */
  }

  .page-blog-explore-daga68-features__game-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-explore-daga68-features__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-explore-daga68-features__hero-image img {
    border-radius: 4px;
  }

  .page-blog-explore-daga68-features__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-explore-daga68-features__cta-button--full-width {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-explore-daga68-features__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-explore-daga68-features__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-explore-daga68-features__container {
    padding: 0 15px;
  }

  .page-blog-explore-daga68-features__features-grid,
  .page-blog-explore-daga68-features__promo-grid,
  .page-blog-explore-daga68-features__support-grid {
    gap: 20px;
  }

  .page-blog-explore-daga68-features__feature-card,
  .page-blog-explore-daga68-features__promo-card,
  .page-blog-explore-daga68-features__support-item {
    padding: 20px;
  }

  .page-blog-explore-daga68-features__feature-title,
  .page-blog-explore-daga68-features__promo-title,
  .page-blog-explore-daga68-features__support-title {
    font-size: 1.3em;
  }

  .page-blog-explore-daga68-features__game-category {
    padding: 20px;
  }

  .page-blog-explore-daga68-features__game-title {
    font-size: 1.6em;
  }

  .page-blog-explore-daga68-features__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ responsive */
  details.page-blog-explore-daga68-features__faq-item summary.page-blog-explore-daga68-features__faq-question { padding: 15px; }
  .page-blog-explore-daga68-features__faq-qtext { font-size: 1em; }
  details.page-blog-explore-daga68-features__faq-item .page-blog-explore-daga68-features__faq-answer { padding: 0 15px 15px; }

  /* Ensure all images are responsive */
  .page-blog-explore-daga68-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-explore-daga68-features__intro-section,
  .page-blog-explore-daga68-features__game-types-section,
  .page-blog-explore-daga68-features__promotions-section,
  .page-blog-explore-daga68-features__support-section,
  .page-blog-explore-daga68-features__faq-section,
  .page-blog-explore-daga68-features__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-explore-daga68-features__btn-primary,
  .page-blog-explore-daga68-features__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}