
.rtp-table-section {
  position: relative;
  overflow: hidden;
  padding: 85px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 194, 255, .25), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 109, 255, .22), transparent 35%),
    linear-gradient(135deg, #041226 0%, #071a3d 45%, #0a2a6b 100%);
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.rtp-table-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rtp-table-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.rtp-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(79, 195, 255, .1);
  border: 1px solid rgba(79, 195, 255, .4);
  color: #4fc3ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
}

.rtp-table-header h2 {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
}

.rtp-table-header p {
  margin: 0;
  color: #c8d8f4;
  line-height: 1.75;
}

.rtp-table-wrap {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(79, 195, 255, .22);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.rtp-table-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(79, 195, 255, .18);
  background: rgba(0, 109, 255, .12);
}

.rtp-table-top strong {
  display: block;
  font-size: 18px;
}

.rtp-table-top span {
  display: block;
  margin-top: 4px;
  color: #c8d8f4;
  font-size: 13px;
}

.rtp-refresh,
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #006dff, #00c2ff);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 149, 255, .32);
  transition: .3s ease;
  white-space: nowrap;
}

.rtp-refresh:hover,
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 194, 255, .45);
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
}

.rtp-table th,
.rtp-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(79, 195, 255, .12);
}

.rtp-table th {
  color: #4fc3ff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  background: rgba(4, 18, 38, .55);
}

.rtp-table td {
  color: #e8f2ff;
  font-size: 14px;
}

.rtp-table tbody tr {
  transition: .3s ease;
}

.rtp-table tbody tr:hover {
  background: rgba(0, 194, 255, .08);
}

.rtp-progress {
  position: relative;
  overflow: hidden;
  height: 34px;
  min-width: 190px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(79, 195, 255, .15);
}

.rtp-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #006dff, #00c2ff);
  box-shadow: 0 0 18px rgba(0, 194, 255, .45);
}

.rtp-progress strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 13px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.status {
  display: inline-flex;
  justify-content: center;
  min-width: 74px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status.hot {
  background: rgba(0, 194, 255, .18);
  color: #7be2ff;
  border: 1px solid rgba(123, 226, 255, .35);
}

.status.gacor {
  background: rgba(0, 109, 255, .18);
  color: #8fc8ff;
  border: 1px solid rgba(143, 200, 255, .35);
}

.status.stabil {
  background: rgba(255,255,255,.08);
  color: #dcecff;
  border: 1px solid rgba(255,255,255,.16);
}

@media (max-width: 768px) {
  .rtp-table-section {
    padding: 65px 16px;
  }

  .rtp-table-header h2 {
    font-size: 25px;
  }

  .rtp-table-header p {
    font-size: 14px;
  }

  .rtp-table-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .rtp-refresh {
    width: 100%;
  }

  .rtp-table,
  .rtp-table thead,
  .rtp-table tbody,
  .rtp-table th,
  .rtp-table td,
  .rtp-table tr {
    display: block;
  }

  .rtp-table thead {
    display: none;
  }

  .rtp-table tr {
    margin: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(79, 195, 255, .18);
  }

  .rtp-table td {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(79, 195, 255, .1);
  }

  .rtp-table td:last-child {
    border-bottom: 0;
  }

  .rtp-table td::before {
    content: attr(data-label);
    color: #4fc3ff;
    font-weight: 800;
    min-width: 95px;
  }

  .rtp-progress {
    min-width: 150px;
    flex: 1;
  }

  .btn-main {
    width: 100%;
  }
}