.poker-strip {
  background: linear-gradient(160deg, #1F2937 0%, #374151 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.poker-strip::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}

.poker-strip h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.poker-strip h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  box-shadow: var(--glow-accent);
}

.poker-strip p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  position: relative;
}

.poker-content {
  padding: 48px 0 64px;
}

.poker-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.poker-visual {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.poker-visual img {
  border-radius: var(--radius-md);
  max-height: 280px;
  object-fit: cover;
  width: 100%;
}

.poker-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.poker-table th,
.poker-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.poker-table th {
  background: rgba(234, 88, 12, 0.08);
  font-weight: 600;
  color: var(--text);
}

.poker-table td {
  color: var(--muted);
}

.poker-pullquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

@media (max-width: 768px) {
  .poker-split {
    grid-template-columns: 1fr;
  }
}
