:root {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"%3E%3Cg fill="%230f172a" fill-opacity="0.05"%3E%3Ccircle cx="10" cy="10" r="1"/%3E%3Ccircle cx="40" cy="40" r="1"/%3E%3Ccircle cx="80" cy="70" r="1"/%3E%3Ccircle cx="130" cy="120" r="1"/%3E%3Ccircle cx="150" cy="30" r="1"/%3E%3Ccircle cx="60" cy="130" r="1"/%3E%3C/g%3E%3C/svg%3E');
  z-index: 0;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(18px);
}

.panel {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 280px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.35), transparent 60%);
  filter: blur(30px);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}
