.rtp-slot {
  background: linear-gradient(180deg, #08122b, #0a1f4d);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.rtp-title {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #4da6ff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rtp-subtitle {
  margin-top: 10px;
  color: #c9d6ff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rtp-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.rtp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,170,255,0.3);
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

.rtp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,170,255,0.5);
}

.rtp-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.rtp-bar {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #00e0ff);
  box-shadow: 0 0 10px #00e0ff;
}

.rtp-card span {
  font-size: 14px;
  color: #00e0ff;
}

.rtp-seo {
  margin-top: 30px;
  color: #bcd3ff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rtp-cta {
  margin-top: 40px;
}

.btn-rtp {
  padding: 12px 25px;
  background: linear-gradient(90deg, #0047ab, #00cfff);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-rtp:hover {
  box-shadow: 0 0 15px #00cfff;
}

/* MOBILE OPTIMIZE */
@media (max-width: 600px) {
  .rtp-title {
    font-size: 24px;
  }

  .rtp-card {
    padding: 15px;
  }
}