:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-why-6ff-is-your-top-choice {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-blog-why-6ff-is-your-top-choice__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-why-6ff-is-your-top-choice__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-blog-why-6ff-is-your-top-choice__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-blog-why-6ff-is-your-top-choice__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  margin-top: -200px; /* Pull content up over the bottom of the image for better visual flow */
  background: linear-gradient(0deg, var(--background-color) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
  border-radius: 15px;
}

.page-blog-why-6ff-is-your-top-choice__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* No hardcoded large font-size, rely on clamp for responsiveness */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-why-6ff-is-your-top-choice__lead-paragraph {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-why-6ff-is-your-top-choice__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-why-6ff-is-your-top-choice__btn-primary,
.page-blog-why-6ff-is-your-top-choice__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-why-6ff-is-your-top-choice__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-why-6ff-is-your-top-choice__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
}

.page-blog-why-6ff-is-your-top-choice__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.page-blog-why-6ff-is-your-top-choice__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-why-6ff-is-your-top-choice__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-why-6ff-is-your-top-choice__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-why-6ff-is-your-top-choice__dark-section {
  background-color: var(--deep-green);
  padding: 80px 20px;
}

.page-blog-why-6ff-is-your-top-choice__section-title {
  font-size: 2.5rem;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-why-6ff-is-your-top-choice__section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-why-6ff-is-your-top-choice__game-grid,
.page-blog-why-6ff-is-your-top-choice__promo-grid,
.page-blog-why-6ff-is-your-top-choice__feature-grid,
.page-blog-why-6ff-is-your-top-choice__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-why-6ff-is-your-top-choice__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 450px; /* Ensure cards have a minimum height */
}

.page-blog-why-6ff-is-your-top-choice__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-blog-why-6ff-is-your-top-choice__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-why-6ff-is-your-top-choice__card-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-why-6ff-is-your-top-choice__card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  flex-grow: 1;
}

.page-blog-why-6ff-is-your-top-choice__guide-item .page-blog-why-6ff-is-your-top-choice__card-image {
  max-height: 267px; /* Adjust for 400x267 aspect ratio */
}

.page-blog-why-6ff-is-your-top-choice__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-blog-why-6ff-is-your-top-choice__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.page-blog-why-6ff-is-your-top-choice__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
}

.page-blog-why-6ff-is-your-top-choice__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-why-6ff-is-your-top-choice__faq-question::marker {
  display: none;
}

.page-blog-why-6ff-is-your-top-choice__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-why-6ff-is-your-top-choice__faq-item[open] .page-blog-why-6ff-is-your-top-choice__faq-question {
  border-bottom-color: transparent;
}

.page-blog-why-6ff-is-your-top-choice__faq-item[open] .page-blog-why-6ff-is-your-top-choice__faq-toggle {
  content: '−';
}

.page-blog-why-6ff-is-your-top-choice__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-blog-why-6ff-is-your-top-choice__conclusion-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--deep-green);
}

/* --- Responsive Design --- */

/* Tablet */
@media (max-width: 1024px) {
  .page-blog-why-6ff-is-your-top-choice__hero-content {
    margin-top: -150px;
    padding: 30px 20px;
  }

  .page-blog-why-6ff-is-your-top-choice__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-why-6ff-is-your-top-choice__section-title {
    font-size: 2rem;
  }

  .page-blog-why-6ff-is-your-top-choice__game-grid,
  .page-blog-why-6ff-is-your-top-choice__promo-grid,
  .page-blog-why-6ff-is-your-top-choice__feature-grid,
  .page-blog-why-6ff-is-your-top-choice__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-blog-why-6ff-is-your-top-choice__card-image {
    max-height: 180px;
  }

  .page-blog-why-6ff-is-your-top-choice__card {
    min-height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-blog-why-6ff-is-your-top-choice {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-why-6ff-is-your-top-choice__hero-content {
    margin-top: -100px;
    padding: 25px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .page-blog-why-6ff-is-your-top-choice__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-why-6ff-is-your-top-choice__lead-paragraph {
    font-size: 1rem;
  }

  .page-blog-why-6ff-is-your-top-choice__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-why-6ff-is-your-top-choice__btn-primary,
  .page-blog-why-6ff-is-your-top-choice__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-why-6ff-is-your-top-choice__content-area,
  .page-blog-why-6ff-is-your-top-choice__dark-section,
  .page-blog-why-6ff-is-your-top-choice__conclusion-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-why-6ff-is-your-top-choice__section-title {
    font-size: 1.8rem;
  }

  .page-blog-why-6ff-is-your-top-choice__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-blog-why-6ff-is-your-top-choice__game-grid,
  .page-blog-why-6ff-is-your-top-choice__promo-grid,
  .page-blog-why-6ff-is-your-top-choice__feature-grid,
  .page-blog-why-6ff-is-your-top-choice__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-blog-why-6ff-is-your-top-choice__card {
    padding: 20px;
    min-height: auto;
  }

  .page-blog-why-6ff-is-your-top-choice__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    max-height: none;
  }

  .page-blog-why-6ff-is-your-top-choice__card-title {
    font-size: 1.2rem;
  }

  .page-blog-why-6ff-is-your-top-choice__card-text {
    font-size: 0.9rem;
  }

  .page-blog-why-6ff-is-your-top-choice__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-why-6ff-is-your-top-choice__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  
  /* Ensure all images are responsive and do not cause overflow */
  .page-blog-why-6ff-is-your-top-choice img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/content */
  .page-blog-why-6ff-is-your-top-choice__hero-section,
  .page-blog-why-6ff-is-your-top-choice__content-area,
  .page-blog-why-6ff-is-your-top-choice__dark-section,
  .page-blog-why-6ff-is-your-top-choice__conclusion-section,
  .page-blog-why-6ff-is-your-top-choice__game-grid,
  .page-blog-why-6ff-is-your-top-choice__promo-grid,
  .page-blog-why-6ff-is-your-top-choice__feature-grid,
  .page-blog-why-6ff-is-your-top-choice__guide-steps,
  .page-blog-why-6ff-is-your-top-choice__faq-list,
  .page-blog-why-6ff-is-your-top-choice__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding already applied to content-area and sections */
    overflow: hidden !important;
  }

  /* Specific padding for sections if not already covered */
  .page-blog-why-6ff-is-your-top-choice__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-why-6ff-is-your-top-choice__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}