/* ── SEO Content — Thai typography system ── */
.seo-content {
  padding: 28px 14px 48px;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.10), transparent 34%),
    linear-gradient(180deg, #f0f0f0 0%, #f8f5ff 48%, #f0f0f0 100%);
}

.seo-content,
.seo-content p,
.seo-content li,
.seo-content h1,
.seo-content h2,
.seo-content h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.seo-content__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.seo-hero-copy,
.seo-section,
.seo-faq,
.seo-features {
  padding: 22px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.06);
}

.seo-hero-copy {
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(76, 29, 149, 0.08);
  padding: 24px 18px 22px;
  text-align: center;
}

.seo-section,
.seo-faq,
.seo-features {
  margin-top: 16px;
}

.seo-hero-copy .seo-features--merged {
  margin-top: 26px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Eyebrow / label */
.seo-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  line-height: var(--lh-snug);
  text-align: center;
}

.seo-hero-copy .seo-eyebrow {
  margin-bottom: 14px;
  border: 1px solid rgba(124, 58, 237, 0.14);
}

/* หัวข้อใหญ่เท่านั้น — กึ่งกลาง */
.seo-hero-copy h1,
.seo-section h2,
.seo-faq__head h2,
.seo-faq h2,
.seo-features__head h2,
.seo-livescore__head h2,
.seo-howto__head h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.seo-hero-copy h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  max-width: 1000px;
  font-size: clamp(1.5rem, 4.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.3;
  text-wrap: balance;
  color: var(--color-heading);
}

.seo-title-line {
  display: block;
  background: linear-gradient(
    120deg,
    #5b21b6 0%,
    #7c3aed 18%,
    #c026d3 38%,
    #d97706 58%,
    #f59e0b 72%,
    #7c3aed 88%,
    #5b21b6 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: seo-h1-shine 5.5s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(124, 58, 237, 0.18));
}

.seo-title-line:nth-child(2) {
  animation-delay: -2.75s;
  background: linear-gradient(
    120deg,
    #6d28d9 0%,
    #a855f7 20%,
    #ec4899 42%,
    #f59e0b 64%,
    #a855f7 84%,
    #6d28d9 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes seo-h1-shine {
  0%   { background-position: 0% center; }
  100% { background-position: 260% center; }
}

.seo-hero-copy h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899, #fbbf24, #ec4899, #7c3aed);
  background-size: 220% 100%;
  animation: seo-h1-underline 4s linear infinite;
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.28);
}

@keyframes seo-h1-underline {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.seo-hero-copy__body {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.seo-hero-copy__body p {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--color-text-muted);
}

.seo-hero-copy__body p + p {
  margin-top: 16px;
}

.seo-hero-copy__body p strong {
  color: var(--color-heading-soft);
  font-weight: var(--fw-bold);
}

.seo-section h2,
.seo-faq__head h2,
.seo-faq h2,
.seo-features__head h2,
.seo-livescore__head h2,
.seo-howto__head h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--color-heading);
}

/* Body copy */
.seo-section > p,
.seo-howto__head p,
.seo-features__head p,
.seo-livescore__head p {
  margin: 0;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
}

.seo-section > p + p {
  margin-top: 14px;
}

/* Features block */
.seo-features__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 18px;
}

.seo-features__head p {
  color: var(--color-text-muted);
}

.seo-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seo-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.seo-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.28);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.12);
}

.seo-feature-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 8px;
}

.seo-feature-card h3 {
  margin: 0 0 6px;
  color: #db2777;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-snug);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.seo-feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  line-height: 1.65;
  font-weight: var(--fw-medium);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Topic cards */
.seo-topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.seo-topic-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid rgba(124, 58, 237, 0.10);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #fbf8ff);
}

.seo-topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  margin: 1px 0 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(236, 72, 153, 0.12));
  color: #7c3aed;
}

.seo-topic-icon svg {
  width: 18px;
  height: 18px;
}

.seo-topic-grid h3 {
  margin: 0;
  color: var(--color-heading-soft);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
}

.seo-topic-grid p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Steps */
.seo-step-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  counter-reset: seo-step;
}

.seo-step-list li {
  position: relative;
  padding: 14px 14px 14px 54px;
  border: 1px solid rgba(124, 58, 237, 0.10);
  border-radius: 15px;
  background: #fbf8ff;
  color: var(--color-text);
  font-size: var(--fs-sm);
  line-height: 1.7;
  font-weight: var(--fw-medium);
  counter-increment: seo-step;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.seo-step-list li strong {
  font-weight: var(--fw-bold);
  color: var(--color-heading-soft);
}

.seo-step-list li::before {
  content: counter(seo-step);
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  line-height: 1;
}

/* Trust chips */
.seo-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin: 18px auto 0;
}

.seo-trust-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.09);
  color: var(--color-heading-soft);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  text-align: center;
}

.seo-trust-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #7c3aed);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .seo-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .seo-trust-list {
    grid-template-columns: 1fr;
  }
}

/* Member reviews */
.seo-reviews--list {
  margin-top: 16px;
  padding: 22px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.06);
}

/* Review CTA — full-width band (head + CTA รวมกัน) */
.review-cta-band {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 16px calc(50% - 50vw) 20px;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 80% at 12% 50%, rgba(255, 255, 255, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 75% at 88% 50%, rgba(251, 191, 36, 0.14), transparent 55%),
    radial-gradient(ellipse 80% 120% at 50% 120%, rgba(91, 33, 182, 0.45), transparent 62%),
    linear-gradient(135deg, #d8b4fe 0%, #c084fc 18%, #a855f7 42%, #7c3aed 68%, #6d28d9 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(91, 33, 182, 0.35);
  box-shadow:
    0 18px 48px rgba(109, 40, 217, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.review-cta-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.review-cta-band__ring {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.review-cta-band__ring--1 {
  width: 220px;
  height: 220px;
  top: -70px;
  left: 8%;
}

.review-cta-band__ring--2 {
  width: 160px;
  height: 160px;
  right: 12%;
  bottom: -50px;
}

.review-cta-band__ring--3 {
  width: 90px;
  height: 90px;
  top: 18%;
  right: 28%;
  border-color: rgba(255, 255, 255, 0.1);
}

.review-cta-band__dots {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.95) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 85% 75% at center, #000 35%, transparent 88%);
}

.review-cta-band__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
}

.review-cta-band__glow--left {
  left: -60px;
  bottom: -80px;
  background: rgba(255, 255, 255, 0.35);
}

.review-cta-band__glow--right {
  right: -40px;
  top: -60px;
  background: rgba(251, 191, 36, 0.35);
}

.review-cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: inherit;
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 28px;
}

.review-cta-band__head {
  text-align: center;
  margin-bottom: 6px;
}

.review-cta-band__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(76, 29, 149, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.review-cta-band__heading {
  margin: 0;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-wrap: balance;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #f3e8ff 22%,
    #fde68a 48%,
    #ffffff 72%,
    #e9d5ff 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: review-cta-heading-shine 6s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(76, 29, 149, 0.35));
}

@keyframes review-cta-heading-shine {
  0%   { background-position: 0% center; }
  100% { background-position: 260% center; }
}

.review-cta-band__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 420px);
  margin-top: 10px;
  padding-top: 14px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.review-cta-band__char {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 22px rgba(46, 16, 101, 0.32));
  user-select: none;
  pointer-events: none;
}

.review-cta-band__char--left {
  left: clamp(4px, 3vw, 56px);
  max-height: 78%;
  max-width: min(240px, 22vw);
}

.review-cta-band__char--right {
  right: clamp(4px, 2vw, 40px);
  max-height: 82%;
  max-width: min(280px, 26vw);
}

.review-cta-band__title {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 12px rgba(76, 29, 149, 0.45),
    0 0 24px rgba(255, 255, 255, 0.12);
}

.review-cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffbeb 0%, #fde68a 28%, #fbbf24 58%, #f59e0b 100%);
  background-size: 100% 200%;
  border: 2.5px solid rgba(255, 255, 255, 0.92);
  color: #5b21b6;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(245, 158, 11, 0.38),
    0 0 0 5px rgba(255, 255, 255, 0.14),
    inset 0 2px 0 rgba(255, 255, 255, 0.75),
    inset 0 -2px 4px rgba(217, 119, 6, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: review-cta-btn-glow 4s ease-in-out infinite;
}

@keyframes review-cta-btn-glow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.06); }
}

.review-cta-band__btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.05);
  box-shadow:
    0 18px 36px rgba(245, 158, 11, 0.48),
    0 0 0 6px rgba(255, 255, 255, 0.22),
    inset 0 2px 0 rgba(255, 255, 255, 0.85);
}

.review-cta-band__btn:active {
  transform: translateY(0) scale(0.99);
}

.review-cta-band__btn-ico {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.seo-reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.seo-review-card {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: #faf8ff;
  border: 1px solid rgba(124, 58, 237, 0.10);
}

.seo-review-card__rank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.seo-review-card__rank-ico {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(76, 29, 149, 0.12));
}

.seo-review-card__rank--gold {
  color: #92400e;
}

.seo-review-card__rank--silver {
  color: #475569;
}

.seo-review-card__rank--bronze {
  color: #9a3412;
}

.seo-review-card__rank--new {
  color: #166534;
}

.seo-review-card__meta {
  margin: 0 0 8px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: #78716c;
}

.seo-review-card__text {
  margin: 0 0 6px;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.seo-review-card__info {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #a8a29e;
}

.seo-reviews__more-wrap {
  margin: 16px 0 0;
  text-align: center;
}

.seo-reviews__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #ec4899 100%);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 24px rgba(124, 58, 237, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seo-reviews__more svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.seo-reviews__more:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(124, 58, 237, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* FAQ accordion */
.seo-faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.10), transparent 42%),
    radial-gradient(circle at bottom left, rgba(251, 191, 36, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.92);
}

.seo-faq__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 18px;
}

.seo-faq__head p:not(.seo-eyebrow) {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.seo-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.seo-faq__item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.seo-faq__item:hover {
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 12px 26px rgba(76, 29, 149, 0.08);
}

.seo-faq__item.is-open {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow:
    0 14px 28px rgba(124, 58, 237, 0.12),
    0 0 0 1px rgba(168, 85, 247, 0.08);
}

.seo-faq__q {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 14px 14px 12px;
  border: 0;
  background: transparent;
  color: var(--color-heading-soft);
  font-family: inherit;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  text-align: left;
  cursor: pointer;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.seo-faq__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, #a855f7 0%, #7c3aed 55%, #6d28d9 100%);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.02em;
  box-shadow:
    0 6px 14px rgba(124, 58, 237, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.seo-faq__item.is-open .seo-faq__num {
  background: linear-gradient(145deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);
  color: #5b21b6;
  box-shadow:
    0 6px 14px rgba(245, 158, 11, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.seo-faq__q-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.seo-faq__chev {
  flex: 0 0 auto;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.seo-faq__chev::before,
.seo-faq__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #7c3aed;
  transform: translate(-50%, -50%);
}

.seo-faq__chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.seo-faq__item.is-open .seo-faq__chev {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.2);
  transform: rotate(180deg);
}

.seo-faq__item.is-open .seo-faq__chev::after {
  opacity: 0;
}

.seo-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.seo-faq__item.is-open .seo-faq__a {
  grid-template-rows: 1fr;
}

.seo-faq__a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 14px 0 60px;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, padding 0.28s ease;
}

.seo-faq__item.is-open .seo-faq__a > p {
  padding: 0 14px 16px 60px;
  opacity: 1;
  transform: translateY(0);
}

/* Note */
.seo-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(76, 29, 149, 0.08);
  color: #57534e;
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* Howto */
.seo-howto__head {
  text-align: center;
  max-width: none;
  margin: 0 0 16px;
}

.seo-howto__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.seo-howto__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  background: #1a0a2e;
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.12);
}

.seo-howto__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.seo-howto__content {
  min-width: 0;
  text-align: left;
}

.seo-howto__content .seo-step-list {
  margin-top: 0;
}

.seo-howto__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}

.seo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  color: #fff;
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  letter-spacing: var(--tracking-thai);
  text-align: center;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.seo-cta svg,
.seo-cta img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.seo-cta--register {
  background: linear-gradient(180deg, #ff5b6a 0%, #e82438 42%, #c41024 100%);
  box-shadow:
    0 8px 18px rgba(220, 36, 54, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.seo-cta--line {
  background: linear-gradient(180deg, #62e070 0%, #36c04a 42%, #22a836 100%);
  box-shadow:
    0 8px 18px rgba(34, 168, 54, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.seo-cta--line img {
  filter: brightness(0) invert(1);
}

.seo-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.seo-cta:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

/* Live score */
.seo-livescore__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}

.seo-livescore__head p {
  color: var(--color-text-muted);
}

.seo-livescore__frame {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.seo-livescore__frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  outline: none;
  background: transparent;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.seo-livescore__frame iframe::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* SY News — latest three articles after live score */
.sy-news-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(251, 191, 36, 0.11), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(236, 72, 153, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.94);
}

.sy-news-home__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.sy-news-home__head > div {
  min-width: 0;
}

.sy-news-home__head .seo-eyebrow {
  margin-bottom: 8px;
}

.sy-news-home__head h2 {
  margin: 0;
  color: #4c1d95;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  text-align: left;
}

.sy-news-home__head p:last-child {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  line-height: 1.65;
}

.sy-news-home__all {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #6d28d9, #a855f7 62%, #ec4899);
  box-shadow: 0 8px 18px rgba(109, 40, 217, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sy-news-home__all:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(109, 40, 217, 0.3);
}

.sy-news-home__all--mobile {
  display: none;
}

.sy-news-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sy-news-home__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 18px;
  color: #2e1065;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 8px 22px rgba(76, 29, 149, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-news-home__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(76, 29, 149, 0.14);
}

.sy-news-home__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #2e1065;
}

.sy-news-home__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(30, 10, 60, 0.58));
}

.sy-news-home__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sy-news-home__card:hover .sy-news-home__media img {
  transform: scale(1.045);
}

.sy-news-home__media span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff8cc, #ffd65c);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.sy-news-home__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.sy-news-home__body time {
  color: #8b8193;
  font-size: 11px;
}

.sy-news-home__body h3 {
  margin: 7px 0 6px;
  color: #5b21b6;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: anywhere;
}

.sy-news-home__body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sy-news-home__body b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  color: #7c3aed;
  font-size: 13px;
}

/* Desktop / tablet */
@media (min-width: 768px) {
  .seo-content {
    padding: 40px 20px 64px;
  }

  .seo-hero-copy {
    padding: 34px 32px 32px;
  }

  .seo-hero-copy .seo-features--merged {
    margin-top: 30px;
  }

  .seo-hero-copy h1 {
    padding-bottom: 22px;
  }

  .seo-hero-copy__body p {
    font-size: var(--fs-base);
    line-height: 1.9;
  }

  .seo-hero-copy__body p + p {
    margin-top: 18px;
  }

  .seo-section,
  .seo-faq,
  .seo-features,
  .seo-reviews--list {
    padding: 28px;
  }

  .seo-reviews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .seo-review-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
  }

  .seo-review-card__rank {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .seo-review-card__meta {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: right;
    white-space: nowrap;
  }

  .seo-review-card__text {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .seo-review-card__info {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .review-cta-band {
    min-height: 310px;
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .review-cta-band__inner {
    padding: 38px 28px 32px;
  }

  .review-cta-band__heading {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  }

  .review-cta-band__char--left {
    max-width: min(260px, 20vw);
  }

  .review-cta-band__char--right {
    max-width: min(300px, 24vw);
  }

  .review-cta-band__btn {
    min-height: 56px;
    padding: 0 36px;
  }

  .seo-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .seo-feature-card {
    padding: 18px 14px 16px;
  }

  .seo-feature-card img {
    width: 96px;
    height: 96px;
    margin-bottom: 10px;
  }

  .seo-feature-card h3 {
    font-size: var(--fs-md);
  }

  .seo-feature-card p {
    font-size: var(--fs-sm);
    line-height: 1.7;
  }

  .seo-faq__list {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
  }

  .seo-faq__q {
    padding: 16px 18px 16px 14px;
  }

  .seo-faq__a > p,
  .seo-faq__item.is-open .seo-faq__a > p {
    padding-left: 62px;
    padding-right: 18px;
  }

  .seo-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-step-list li {
    font-size: var(--fs-base);
  }

  .seo-livescore__frame iframe {
    height: 520px;
  }
}

@media (min-width: 992px) {
  .seo-howto__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 22px;
  }

  .seo-howto__figure {
    position: sticky;
    top: 96px;
  }

  .seo-hero-copy h1 {
    margin-bottom: 18px;
  }

  .seo-section h2,
  .seo-faq__head h2,
.seo-faq h2,
  .seo-features__head h2,
  .seo-livescore__head h2,
  .seo-howto__head h2 {
    margin-bottom: 14px;
  }
}

@media (min-width: 1200px) {
  .seo-content {
    padding-bottom: 80px;
  }

  .seo-reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sy-news-home__head {
    display: block;
    margin-bottom: 16px;
  }

  .sy-news-home__head h2,
  .sy-news-home__head p:last-child {
    text-align: center;
  }

  .sy-news-home__head .seo-eyebrow {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .sy-news-home__all--desktop {
    display: none;
  }

  .sy-news-home__all--mobile {
    display: flex;
    width: min(100%, 260px);
    margin: 18px auto 0;
  }

  .sy-news-home__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sy-news-home__card {
    display: grid;
    grid-template-columns: 40% minmax(0, 1fr);
    border-radius: 15px;
  }

  .sy-news-home__media {
    aspect-ratio: auto;
    min-height: 150px;
  }

  .sy-news-home__body {
    padding: 13px;
  }

  .sy-news-home__body h3 {
    font-size: 1rem;
  }

  .sy-news-home__body p {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .sy-news-home__card {
    grid-template-columns: 38% minmax(0, 1fr);
  }

  .sy-news-home__media {
    min-height: 142px;
  }

  .sy-news-home__media span {
    left: 7px;
    right: 7px;
    bottom: 7px;
    padding: 4px 6px;
    text-align: center;
    font-size: 9px;
  }

  .sy-news-home__body time {
    font-size: 10px;
  }

  .sy-news-home__body p {
    -webkit-line-clamp: 2;
  }

  .review-cta-band {
    min-height: 240px;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .review-cta-band__inner {
    padding: 24px 14px 20px;
  }

  .review-cta-band__eyebrow {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .review-cta-band__heading {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
  }

  .review-cta-band__body {
    width: min(100%, 240px);
    margin-top: 8px;
    padding-top: 12px;
    gap: 12px;
  }

  .review-cta-band__char--left {
    max-width: 38%;
    left: 0;
  }

  .review-cta-band__char--right {
    max-width: 42%;
    right: 0;
  }

  .review-cta-band__btn {
    white-space: normal;
    text-align: center;
    padding: 10px 16px;
    min-height: 44px;
    font-size: 0.84rem;
  }

  .review-cta-band__ring--1 {
    width: 140px;
    height: 140px;
    left: -20px;
  }

  .review-cta-band__ring--2 {
    width: 100px;
    height: 100px;
    right: -10px;
  }

  .seo-faq__q {
    gap: 10px;
    padding: 12px;
  }

  .seo-faq__num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .seo-faq__a > p,
  .seo-faq__item.is-open .seo-faq__a > p {
    padding-left: 14px;
    padding-right: 12px;
  }
}
