
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #0a0a0f;
  color: #fff;
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #2a0845, #6441A5, #2ecc71, #6441A5);
  background-size: 400% 400%;
  filter: blur(100px);
  opacity: 0.15;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

.container {
  text-align: center;
  padding: 2.5rem;
  position: relative;
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 90%;
}

.progress-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  height: 10px;
  margin: 20px 0;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  transition: width 0.3s ease;
}

.info-box {
  background: rgba(30, 30, 40, 0.5);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  text-align: left;
  font-size: 14px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
  word-break: break-all;
}

.info-row span:first-child {
  min-width: 80px;
  margin-right: 10px;
}

.info-row span:last-child {
  font-size: 12px;
  font-family: monospace;
}

.badge {
  background: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge.virus-checked::before {
  content: "✓";
  font-weight: bold;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #6441A5;
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

p {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes gradientMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30%, 20%) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
