/* style/blog-explore-1bwm-game-features.css */

/* Base styles for the page */
.page-blog-explore-1bwm-game-features {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

/* Hero Section */
.page-blog-explore-1bwm-game-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-explore-1bwm-game-features__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.page-blog-explore-1bwm-game-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-explore-1bwm-game-features__hero-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-explore-1bwm-game-features__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-blog-explore-1bwm-game-features__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-1bwm-game-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-explore-1bwm-game-features__btn-primary,
.page-blog-explore-1bwm-game-features__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-explore-1bwm-game-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-explore-1bwm-game-features__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  opacity: 0.9;
}

.page-blog-explore-1bwm-game-features__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(30, 58, 42, 0.3);
}

.page-blog-explore-1bwm-game-features__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(30, 58, 42, 0.5);
}

.page-blog-explore-1bwm-game-features__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Content Sections */
.page-blog-explore-1bwm-game-features__content-section {
  padding: 60px 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-explore-1bwm-game-features__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-explore-1bwm-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}

.page-blog-explore-1bwm-game-features__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-explore-1bwm-game-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-blog-explore-1bwm-game-features__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

/* Game Grid */
.page-blog-explore-1bwm-game-features__game-grid,
.page-blog-explore-1bwm-game-features__promo-grid,
.page-blog-explore-1bwm-game-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-explore-1bwm-game-features__game-card,
.page-blog-explore-1bwm-game-features__promo-card,
.page-blog-explore-1bwm-game-features__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-explore-1bwm-game-features__game-card:hover,
.page-blog-explore-1bwm-game-features__promo-card:hover,
.page-blog-explore-1bwm-game-features__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.page-blog-explore-1bwm-game-features__game-image,
.page-blog-explore-1bwm-game-features__promo-image,
.page-blog-explore-1bwm-game-features__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-explore-1bwm-game-features__game-title,
.page-blog-explore-1bwm-game-features__promo-title,
.page-blog-explore-1bwm-game-features__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  padding: 20px 20px 10px 20px;
  margin-bottom: 0;
}

.page-blog-explore-1bwm-game-features__game-description,
.page-blog-explore-1bwm-game-features__promo-description,
.page-blog-explore-1bwm-game-features__feature-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

/* Support & Responsible Gaming Lists */
.page-blog-explore-1bwm-game-features__support-list,
.page-blog-explore-1bwm-game-features__responsible-list,
.page-blog-explore-1bwm-game-features__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-explore-1bwm-game-features__support-item,
.page-blog-explore-1bwm-game-features__responsible-item,
.page-blog-explore-1bwm-game-features__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.page-blog-explore-1bwm-game-features__support-item:hover,
.page-blog-explore-1bwm-game-features__responsible-item:hover,
.page-blog-explore-1bwm-game-features__step-item:hover {
  transform: translateX(5px);
}

.page-blog-explore-1bwm-game-features__support-item strong,
.page-blog-explore-1bwm-game-features__responsible-item strong,
.page-blog-explore-1bwm-game-features__step-item strong {
  color: #57E38D; /* Glow */
}

/* FAQ Section */
.page-blog-explore-1bwm-game-features__faq-list {
  margin-top: 40px;
}

.page-blog-explore-1bwm-game-features__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-explore-1bwm-game-features__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* Remove default marker */
}

.page-blog-explore-1bwm-game-features__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-explore-1bwm-game-features__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border with transparency */
}

.page-blog-explore-1bwm-game-features__faq-qtext {
  flex-grow: 1;
}

.page-blog-explore-1bwm-game-features__faq-toggle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-explore-1bwm-game-features__faq-item[open] .page-blog-explore-1bwm-game-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-explore-1bwm-game-features__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-explore-1bwm-game-features__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-explore-1bwm-game-features__section-title {
    font-size: 2rem;
  }

  .page-blog-explore-1bwm-game-features__game-grid,
  .page-blog-explore-1bwm-game-features__promo-grid,
  .page-blog-explore-1bwm-game-features__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-blog-explore-1bwm-game-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-explore-1bwm-game-features__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-explore-1bwm-game-features__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-explore-1bwm-game-features__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-explore-1bwm-game-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-blog-explore-1bwm-game-features__btn-primary,
  .page-blog-explore-1bwm-game-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-explore-1bwm-game-features__content-section {
    padding: 40px 15px;
  }

  .page-blog-explore-1bwm-game-features__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-explore-1bwm-game-features__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-explore-1bwm-game-features__text-block {
    font-size: 0.95rem;
  }

  .page-blog-explore-1bwm-game-features__game-grid,
  .page-blog-explore-1bwm-game-features__promo-grid,
  .page-blog-explore-1bwm-game-features__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-explore-1bwm-game-features__game-card,
  .page-blog-explore-1bwm-game-features__promo-card,
  .page-blog-explore-1bwm-game-features__feature-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }

  .page-blog-explore-1bwm-game-features__game-image,
  .page-blog-explore-1bwm-game-features__promo-image,
  .page-blog-explore-1bwm-game-features__feature-image {
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-blog-explore-1bwm-game-features__support-item,
  .page-blog-explore-1bwm-game-features__responsible-item,
  .page-blog-explore-1bwm-game-features__step-item {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-explore-1bwm-game-features__faq-item summary {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-blog-explore-1bwm-game-features__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-explore-1bwm-game-features__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .page-blog-explore-1bwm-game-features__section-title {
    font-size: 1.6rem;
  }

  .page-blog-explore-1bwm-game-features__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-blog-explore-1bwm-game-features__cta-buttons {
    gap: 10px;
  }
}