.seo-content {
  clear: both;
  width: min(100% - 24px, 1040px);
  margin: 28px auto 36px;
  color: #f7fbff;
  font-family: Arial, Helvetica, sans-serif;
}

.member-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0 0 22px;
}

.member-actions .member-button {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .7px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.member-actions .member-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.5), transparent 80%);
  transform: translateX(-110%);
  transition: transform .45s ease;
}

.member-actions .member-button::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 8px;
  left: 8px;
  height: 45%;
  border-radius: 9px 9px 50% 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0));
  pointer-events: none;
}

.member-actions .member-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.08);
}

.member-actions .member-button:hover::before { transform: translateX(110%); }
.member-actions .member-button:active {
  transform: translateY(5px);
  filter: brightness(.96);
}

.member-login {
  color: #fff !important;
  background: linear-gradient(180deg, #69b1ff 0%, #2686ef 52%, #075cb8 100%);
  box-shadow: 0 7px 0 #003c7d, 0 11px 20px rgba(0, 61, 127, .38), inset 0 1px 0 rgba(255,255,255,.7);
  text-shadow: 0 1px 2px rgba(0, 41, 85, .65);
}
.member-login:hover { box-shadow: 0 10px 0 #003c7d, 0 15px 25px rgba(0, 61, 127, .45), inset 0 1px 0 rgba(255,255,255,.75); }
.member-login:active { box-shadow: 0 2px 0 #003c7d, 0 5px 10px rgba(0, 61, 127, .32), inset 0 2px 5px rgba(0, 48, 100, .3); }

.member-register {
  color: #fff !important;
  background: linear-gradient(180deg, #5aa9ff 0%, #197ce7 52%, #0051a8 100%);
  box-shadow: 0 7px 0 #003671, 0 11px 22px rgba(0, 70, 146, .42), inset 0 1px 0 rgba(255,255,255,.65);
  text-shadow: 0 1px 2px rgba(0, 41, 85, .65);
}
.member-register:hover { box-shadow: 0 10px 0 #003671, 0 15px 28px rgba(0, 70, 146, .48), inset 0 1px 0 rgba(255,255,255,.7); }
.member-register:active { box-shadow: 0 2px 0 #003671, 0 5px 10px rgba(0, 50, 105, .38), inset 0 2px 5px rgba(0, 48, 100, .32); }

.member-button-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(0, 72, 150, .22);
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 2px 4px rgba(0,0,0,.15);
  font-size: 18px;
}
.member-button > span:last-child { position: relative; z-index: 1; }

@media (max-width: 480px) {
  .member-actions { gap: 8px; }
  .member-actions .member-button { min-height: 48px; font-size: 12px; }
}

.seo-panel {
  margin: 0 0 18px;
  padding: 20px;
  border: 2px solid #268eff;
  border-radius: 11px;
  background: #020508;
  box-shadow: none;
}

.seo-panel h2 {
  margin: -5px 0 15px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

.seo-article h2 { color: #53a6ff; }
.seo-article p { margin: 0 0 12px; font-size: 13px; line-height: 1.75; }

.faq-list { display: grid; gap: 10px; }
.faq-item { border: 2px solid #268eff; border-radius: 8px; overflow: hidden; background: #002247; }
.faq-question {
  position: relative;
  width: 100%;
  padding: 12px 48px 12px 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #3596ff, #075ebd);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%; right: 13px;
  width: 20px; height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  line-height: 16px;
  text-align: center;
  transform: translateY(-50%);
}
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 13px 15px; color: #f1f8ff; font-size: 13px; line-height: 1.65; }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.member-review { padding: 16px; border: 2px solid #268eff; border-radius: 10px; background: #00244a; }
.review-head { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 11px; }
.review-head strong { color: #fff; font-size: 12px; text-transform: uppercase; }
.review-stars { color: #ffdf00; letter-spacing: 1px; white-space: nowrap; }
.member-review blockquote { margin: 0 0 13px; color: #f1f8ff; font-size: 12px; font-style: italic; line-height: 1.65; }
.verified-badge { display: inline-block; padding: 5px 9px; border-radius: 20px; color: #111; background: #ffdf00; font-size: 10px; font-weight: 800; }

@media (max-width: 760px) {
  .seo-panel { padding: 15px; }
  .seo-panel h2 { font-size: 17px; }
  .review-grid { grid-template-columns: 1fr; }
}
