@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');

body {
  font-family: 'IBM Plex Mono', monospace;
  background-color: #101820;
  color: #C0FFB3;
  text-align: center;
  padding: 40px;
  margin: 0;
}

h1 {
  font-size: clamp(1.3rem, 7vw, 3rem);
  color: #E0E0E0;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

p.subtitle {
  font-size: 1rem;
  color: #C0FFB3;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.button {
  background-color: #005288;
  color: white;
  padding: 15px 30px;
  font-size: 1.3rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.button:hover {
  background-color: #00395d;
}

.entry {
  margin-top: 20px;
  padding: 12px;
  background-color: #1A1F2A;
  border-left: 5px solid #FF4F4F;
  border-radius: 4px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
  color: #E0E0E0;
  text-align: left;
  font-size: 1rem;
}

#log {
  max-height: 500px;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #0F1419;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#log::-webkit-scrollbar {
  width: 8px;
}

#log::-webkit-scrollbar-track {
  background: #1A1F2A;
  border-radius: 4px;
}

#log::-webkit-scrollbar-thumb {
  background: #005288;
  border-radius: 4px;
}

#log::-webkit-scrollbar-thumb:hover {
  background: #00395d;
}

.footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #888;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

a, a:visited {
  color: #C0FFB3;
  text-decoration: underline;
}

a:hover {
  color: #FF4F4F;
}

.github-link {
  color: #888;
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 10px;
}

.github-link:hover {
  color: #C0FFB3;
}

.github-icon {
  font-size: 0.7rem;
  margin-left: 2px;
}

.disclaimer {
  font-size: 0.7rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-section {
  margin-top: 40px;
}

.stat-card {
  background-color: #1A1F2A;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
  border-left: 5px solid #4ECDC4;
}

.stat-title {
  font-size: 1.1rem;
  color: #E0E0E0;
  margin-bottom: 8px;
  font-weight: bold;
}

.stat-value {
  font-size: 1.3rem;
  color: #C0FFB3;
  font-weight: bold;
}

.stat-detail {
  font-size: 0.9rem;
  color: #888;
  margin-top: 5px;
}

.progress-section {
  margin-top: 0;
}





.progress-container {
  background-color: #1A1F2A;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
  border-left: 5px solid #4ECDC4;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #0F1419;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid #333;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ECDC4, #45B7D1);
  border-radius: 6px;
  transition: width 0.5s ease;
  width: 0%;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 4px;
}

.progress-stats {
  text-align: center;
  font-size: 0.9rem;
  color: #C0FFB3;
  font-weight: bold;
}

.progress-info {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 5px;
}

 