

/* ===== VIP TABLE SECTION ===== */

.vip-table-wrapper {
  margin-top: 24px;
  overflow-x: auto;
}

.vip-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #0b1220 0%, #070c18 100%);
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}

/* Header */
.vip-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid #1e293b;
  white-space: nowrap;
}

/* Body cells */
.vip-table tbody td {
  padding: 14px 16px;
  color: #cbd5f5;
  border-bottom: 1px solid #1e293b;
  white-space: nowrap;
}

/* Last row border fix */
.vip-table tbody tr:last-child td {
  border-bottom: none;
}

/* Row hover */
.vip-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.06);
}

/* Tier column emphasis */
.vip-table tbody td:first-child {
  font-weight: 600;
  color: #38bdf8;
}

/* Title column */
.vip-table tbody td:nth-child(2) {
  font-weight: 500;
  color: #e5e7eb;
}

/* Numbers alignment */
.vip-table tbody td:nth-child(3),
.vip-table tbody td:nth-child(4),
.vip-table tbody td:nth-child(5) {
  text-align: left;
}


/* Mobile */
@media (max-width: 768px) {
  .vip-table {
    font-size: 13px;
  }

  .vip-table thead th,
  .vip-table tbody td {
    padding: 12px;
  }
}
