* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fira Code', monospace;
}

body {
  background-color: #0d0d0d;
  color: #e0e0e0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  width: 50%;
  max-width: 650px;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(0, 255, 170, 0.2);
}

h1 {
  font-size: 2rem;
  text-align: center;
  color: #00ffaa;
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.user {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user p {
  font-size: 1rem;
  color: #aaa;
}

.user-input-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#user-input {
  flex: 1;
  padding: 0.5rem;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  outline: none;
}

#user-input:focus {
  border-color: #00ffaa;
  box-shadow: 0 0 8px rgba(0, 255, 170, 0.5);
}

#search-button {
  padding: 0.5rem 1rem;
  background: #00ffaa;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

#search-button:hover {
  background: #00cc88;
}

.progress {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.progress-item p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.progress-item span {
  margin-top: 5px;
  font-size: 0.85rem;
  color: #00ffaa;
  font-weight: bold;
}


.circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #333;
  background: conic-gradient(#00ffaa var(--progress-degree, 0%), #222 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 700;
  color: #00ffaa;
  box-shadow: 0 0 10px rgba(0, 255, 170, 0.3);
}

.stats-card {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.card {
  background: #111;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  border-color: #00ffaa;
  box-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
}

.card h4 {
  color: #00ffaa;
  margin-bottom: 6px;
}

.card p {
  font-size: 1.1rem;
  color: #e0e0e0;
}


.footer {
  background: #1a1a1a;
  color: #e0e0e0;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 255, 170, 0.2);
  box-shadow: 0 -2px 10px rgba(0, 255, 170, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer .heart {
  color: red;
}

.footer .social-links {
  margin-top: 8px;
}

.footer .social-links a {
  color: #00ffaa;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #00cc88;
}
