body {
  background: linear-gradient(135deg, #16213e, #1a1a2e);
  color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  padding-bottom: 2rem;
}

.table-hover tbody tr:hover {
  background: rgba(56, 70, 101, 0.7) !important;
  transform: scale(1.005);
}

.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stat-card {
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .dashboard-header {
    padding: 1rem 0;
  }
  .user-info {
    flex-direction: column;
    text-align: center;
  }
}

:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --accent: #4cc9f0;
  --success: #06d6a0;
  --danger: #ef476f;
  --warning: #ffd166;
  --dark: #1a1a2e;
  --darker: #16213e;
  --light: #f8f9fa;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dashboard-header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 85, 104, 0.3);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.stat-card {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.7),
    rgba(22, 33, 62, 0.8)
  );
  border-radius: 16px;
  border: 1px solid rgba(74, 85, 104, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  padding: 1.5rem;
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(67, 97, 238, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}
.stat-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.filter-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(74, 85, 104, 0.3);
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.table-container {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(74, 85, 104, 0.3);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.table-dark {
  background: rgba(22, 33, 62, 0.95) !important;
  color: var(--light);
  border-collapse: separate;
  border-spacing: 0;
}
.table-hover tbody tr {
  transition: all 0.25s ease;
  position: relative;
}
.table-hover tbody tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 96%;
  height: 1px;
  background: rgba(74, 85, 104, 0.2);
}
.table-hover tbody tr:hover {
  background: rgba(56, 70, 101, 0.7) !important;
  transform: scale(1.005);
}
.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.pagination .page-item .page-link {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(74, 85, 104, 0.3);
  color: var(--light);
  margin: 0 4px;
  border-radius: 10px;
  min-width: 40px;
  text-align: center;
  transition: all 0.2s;
}
.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(67, 97, 238, 0.3);
}
.pagination .page-item .page-link:hover {
  background: rgba(67, 97, 238, 0.3);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  border-radius: 12px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}
.form-control,
.form-select {
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid rgba(74, 85, 104, 0.4);
  color: var(--light);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  transition: all 0.3s;
  -webkit-text-fill-color: var(--light);
}
.form-control:focus,
.form-select:focus {
  background: rgba(22, 33, 62, 0.8);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.3rem rgba(67, 97, 238, 0.2);
  color: var(--light);
}
.form-control::placeholder,
.form-select::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}
.input-group .form-control {
  background: rgba(22, 33, 62, 0.75);
  color: var(--light);
}
.input-group-text {
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid rgba(74, 85, 104, 0.4);
  color: var(--accent);
  border-radius: 12px 0 0 12px !important;
}
.section-title {
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
  font-size: 1.6rem;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
}
.type-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.ban-icon {
  background: rgba(239, 71, 111, 0.15);
  color: var(--danger);
}
.mute-icon {
  background: rgba(6, 214, 160, 0.15);
  color: var(--success);
}
.warn-icon {
  background: rgba(255, 209, 102, 0.15);
  color: var(--warning);
}
.temp-icon {
  background: rgba(76, 201, 240, 0.15);
  color: var(--accent);
}
.ip-icon {
  background: rgba(67, 97, 238, 0.15);
  color: var(--primary);
}
.summary-card {
  text-align: center;
  padding: 1.8rem 1.5rem;
  position: relative;
  z-index: 1;
}
.summary-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.8rem 0;
  background: linear-gradient(to right, var(--accent), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summary-label {
  font-size: 1rem;
  letter-spacing: 1.2px;
  opacity: 0.8;
  font-weight: 500;
}
.progress {
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.player-avatar {
  background: rgba(67, 97, 238, 0.2);
  color: var(--primary);
}
.staff-avatar {
  background: rgba(6, 214, 160, 0.2);
  color: var(--success);
}
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 1.4rem;
  }
  .summary-number {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .dashboard-header {
    padding: 1.2rem 0;
  }
  .stat-card {
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    text-align: center;
  }
  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(22, 33, 62, 0.5);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

.container {
  max-width: 1400px;
  padding-bottom: 2rem;
}

.table-hover tbody tr:hover {
  background: rgba(56, 70, 101, 0.7) !important;
  transform: scale(1.005);
}

.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stat-card {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .dashboard-header {
    padding: 1rem 0;
  }

  .user-info {
    flex-direction: column;
    text-align: center;
  }
}
