/* ============================================================
   BANDA Casino — SEO Content Sections
   ============================================================ */

.seo-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 70px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.seo-section__intro {
  max-width: 820px;
  margin-bottom: 44px;
}

.seo-section__intro p {
  font-size: 16px;
  line-height: 1.75;
  color: #b0b0be;
}

/* ---- 2×2 grid of topic blocks ---- */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.seo-block {
  background: #1a1a20;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 26px 22px;
}

.seo-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 12px;
  color: #e8e8ec;
  line-height: 1.25;
}

.seo-block p {
  font-size: 14px;
  line-height: 1.75;
  color: #888896;
}

.seo-block p a {
  color: #f5c518;
  text-decoration: none;
  font-weight: 500;
}

.seo-block p a:hover {
  text-decoration: underline;
}

/* ---- FAQ accordion ---- */
.seo-faq {
  margin-bottom: 48px;
}

.seo-faq__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #e8e8ec;
}

.seo-faq__title .accent {
  color: #f5c518;
}

.seo-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-faq__item {
  background: #1a1a20;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.seo-faq__question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #e8e8ec;
  user-select: none;
  gap: 16px;
}

.seo-faq__question::after {
  content: '+';
  font-size: 22px;
  color: #f5c518;
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.seo-faq__item.open .seo-faq__question::after {
  transform: rotate(45deg);
}

.seo-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 14px;
  color: #888896;
  line-height: 1.7;
  padding: 0 22px;
}

.seo-faq__answer a {
  color: #f5c518;
  text-decoration: none;
}

.seo-faq__answer a:hover {
  text-decoration: underline;
}

.seo-faq__item.open .seo-faq__answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

/* ---- Internal links pill-list ---- */
.seo-links {
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px 22px;
}

.seo-links__title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666676;
  margin-bottom: 14px;
}

.seo-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.seo-links__list a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  color: #c8c8d4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.seo-links__list a:hover {
  border-color: #f5c518;
  color: #f5c518;
  background: rgba(245, 197, 24, 0.06);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .seo-section {
    padding: 40px 16px 50px;
  }

  .seo-block h2 {
    font-size: 16px;
  }

  .seo-faq__question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .seo-faq__answer {
    padding: 0 16px;
  }

  .seo-faq__item.open .seo-faq__answer {
    padding: 0 16px 14px;
  }
}
