body {
  background-color: #080a0f;
  background-image: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(0, 214, 143, 0.05) 0%,
    transparent 60%
  );
  color: #edf0ff;
  font-family: "Inter", sans-serif;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0e1118;
}
::-webkit-scrollbar-thumb {
  background: #1a2030;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00d68f;
}
.nav-link {
  transition: all 0.2s;
}
.nav-link:hover {
  color: #00d68f;
}
.nav-link.active {
  color: #00d68f;
  border-left: 2px solid #00d68f;
}
.card {
  background: #131720;
  border: 1px solid #1a2030;
  border-radius: 12px;
}
.btn-primary {
  background: #00d68f;
  color: #080a0f;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #00bf7d;
  transform: translateY(-1px);
}
.btn-secondary {
  background: #1a2030;
  color: #edf0ff;
  border: 1px solid #1a2030;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: #181d28;
}
.input-field {
  background: #0e1118;
  border: 1px solid #1a2030;
  border-radius: 8px;
  color: #edf0ff;
  padding: 10px 14px;
  width: 100%;
  transition: border 0.2s;
}
.input-field:focus {
  outline: none;
  border-color: #00d68f;
}
.badge-ganhou {
  background: #004d33;
  color: #00d68f;
}
.badge-perdeu {
  background: #3d0a14;
  color: #f03e5a;
}
.badge-pendente {
  background: #1a2030;
  color: #4e6080;
}
.badge-cashout {
  background: #3d2e00;
  color: #f5c542;
}
.badge-reembolso {
  background: #1a1a3d;
  color: #6c63ff;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #4e6080;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.sidebar-item:hover,
.sidebar-item.active {
  background: #131720;
  color: #00d68f;
}
.sidebar-item.active {
  border-left: 2px solid #00d68f;
  border-radius: 0 8px 8px 0;
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.live-dot {
  animation: live-pulse 1.5s ease-in-out infinite;
}

main {
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
