/* Wrapper */
.stx-two-player {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* Header */
.stx-two-player__header {
  margin-bottom: 2rem;
  text-align: left;
}

.stx-two-player__header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.stx-two-player__header p {
  margin: 0;
  color: #cbd5f5;
  line-height: 1.5;
}

/* Card layout */
.stx-two-player__cards {
  display: grid;
  gap: 1.5rem;
}

/* Cards */
.stx-two-player__card {
  background: rgba(15, 23, 42, 0.9); /* dark slate-ish */
  border-radius: 0.9rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.stx-two-player__card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.stx-two-player__card p {
  margin: 0.5rem 0;
  color: #cbd5f5;
  line-height: 1.5;
}

.stx-two-player__card ul,
.stx-two-player__card ol {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.2rem;
  color: #d1d5db;
}

.stx-two-player__card li {
  margin-bottom: 0.35rem;
}

/* Accent card for main CTA explanation */
.stx-two-player__card--accent {
  border-color: #f97316;
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.25);
}

/* Summary card tweak */
.stx-two-player__card--summary {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), rgba(15, 23, 42, 0.9));
}

/* Full-width cards in grid (first + summary) */
@media (min-width: 768px) {
  .stx-two-player__cards {
    grid-template-columns: 1fr 1fr;
  }

  .stx-two-player__card--full,
  .stx-two-player__card--summary {
    grid-column: 1 / -1;
  }
}

/* Links */
.stx-two-player a {
  color: #38bdf8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.stx-two-player a:hover {
  color: #7dd3fc;
}