/* ============================================
   OnlineGamePlayz — seo Stylesheet
   Aesthetic: Sharp modern arcade / editorial
   Fonts: Syne (display) + DM Sans (body)
   ============================================ */


/* ── SEO CONTENT SECTION ── */
.seo-section {
      max-width: 860px;
      margin: 0 auto;
      padding: 56px 24px 80px;
      color: var(--text);
    }

.seo-section h1.seo-h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(1.75rem, 4vw, 2.6rem);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 18px;
      color: var(--text);
    }

.seo-section h2.seo-h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--text);
      margin: 52px 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--border);
      letter-spacing: -0.01em;
    }

.seo-section h3.seo-h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: #4ade80;
      margin: 24px 0 8px;
    }

.seo-section p {
      font-size: 0.975rem;
      line-height: 1.75;
      color: var(--text2);
      margin-bottom: 14px;
    }
.seo-intro {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--text2);
      margin-bottom: 28px;
      max-width: 780px;
    }

/* Benefits */
    .benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    .benefits-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--text2);
      line-height: 1.6;
    }
.benefits-list li::before { content: "✦"; color: #4ade80; font-size: 0.85rem; flex-shrink: 0; margin-top: 3px; }
.benefits-list li strong { color: var(--text); }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      text-align: left;
      transition: background 0.2s;
      gap: 12px;
    }

.faq-question:hover { background: var(--surface2); }

.faq-arrow {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: var(--surface2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      transition: transform 0.3s, background 0.2s;
      color: var(--text2);
    }

.faq-item.open .faq-arrow { transform: rotate(180deg); background: #4ade80; color: #000; }

.faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
      padding: 0 20px;
      font-size: 0.93rem;
      line-height: 1.7;
      color: var(--text2);
    }

.faq-item.open .faq-answer { max-height: 220px; padding: 0 20px 18px; }




