/* ─── RTP SEÇENEKLERİ ────────────────────────────────────── */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}

.rtp-inner {
  max-width: 900px;
  margin: 0 auto;
}

.rtp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.rtp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rtp-card {
  position: relative;
  background: #1a1c24;
  border: 1px solid rgba(255, 207, 82, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.rtp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 207, 82, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(255, 207, 82, 0.08);
}

.rtp-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255, 207, 82, 0.12);
}

.rtp-card--featured:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 48px rgba(255, 207, 82, 0.2);
}

.rtp-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.rtp-val {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rtp-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-alt);
}

@media (max-width: 600px) {
  .rtp-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
