.rtp-schedule-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 153, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #020b1f 0%, #061a3a 45%, #063c78 100%);
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.rtp-schedule-container {
  max-width: 1180px;
  margin: 0 auto;
}

.rtp-schedule-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.rtp-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(0, 174, 255, 0.16);
  border: 1px solid rgba(83, 198, 255, 0.45);
  color: #7fd7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rtp-schedule-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.rtp-schedule-heading p {
  margin: 0;
  color: #c8dcf5;
  font-size: 16px;
  line-height: 1.8;
}

.rtp-day-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.rtp-day-filter button {
  border: 1px solid rgba(121, 203, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #dceeff;
  padding: 11px 17px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.rtp-day-filter button:hover,
.rtp-day-filter button.active {
  background: linear-gradient(135deg, #00aaff, #0066ff);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 132, 255, 0.32);
}

.rtp-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rtp-time-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  border: 1px solid rgba(130, 207, 255, 0.22);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.rtp-time-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(0, 174, 255, 0.28), transparent 42%);
  pointer-events: none;
}

.rtp-time-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 204, 255, 0.6);
}

.rtp-time-card.hot {
  background:
    linear-gradient(180deg, rgba(0, 119, 255, 0.25), rgba(255,255,255,0.06));
}

.rtp-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.rtp-card-top span {
  color: #9edcff;
  font-size: 14px;
  font-weight: 800;
}

.rtp-card-top strong {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  border: 1px solid rgba(112, 218, 255, 0.32);
}

.rtp-time-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 22px;
}

.rtp-time {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #65cfff;
  font-size: 18px;
  font-weight: 900;
}

.rtp-bar {
  position: relative;
  z-index: 1;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.rtp-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  box-shadow: 0 0 22px rgba(0, 183, 255, 0.75);
}

.rtp-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d5e9ff;
  font-size: 14.5px;
  line-height: 1.75;
}

.rtp-note {
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(0, 132, 255, 0.13);
  border: 1px solid rgba(120, 209, 255, 0.28);
  color: #dcefff;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.rtp-time-card.hide {
  display: none;
}

@media (max-width: 991px) {
  .rtp-schedule-section {
    padding: 70px 16px;
  }

  .rtp-schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rtp-schedule-heading {
    text-align: left;
  }

  .rtp-day-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .rtp-day-filter button {
    flex: 0 0 auto;
  }

  .rtp-schedule-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rtp-time-card {
    padding: 22px;
    border-radius: 20px;
  }

  .rtp-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .rtp-note {
    text-align: left;
  }
}