* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.terminal {
  max-width: 900px;
  width: 100%;
  border: 1px solid #333;
  padding: 40px;
  position: relative;
}

.terminal::before {
  content: "0bn.cc";
  position: absolute;
  top: -12px;
  left: 30px;
  background: #0a0a0a;
  padding: 0 15px;
  color: #666;
  font-size: 14px;
}

.header {
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.title {
  font-size: 36px;
  letter-spacing: 6px;
  margin-bottom: 8px;
}

.subtitle {
  color: #555;
  font-size: 16px;
}

.line {
  margin: 12px 0;
  display: flex;
}

.prompt {
  color: #555;
  margin-right: 10px;
}

.status-online {
  color: #4a4;
}

.status-zero {
  color: #a44;
}

.status-undefined {
  color: #aa4;
}

.time-wasted {
  margin: 35px 0;
  padding: 25px;
  border: 1px dashed #333;
  text-align: center;
}

.time-label {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.time-value {
  font-size: 32px;
  letter-spacing: 4px;
}

.progress-container {
  margin: 30px 0;
}

.progress-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.bar {
  flex: 1;
  height: 20px;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #e0e0e0;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-text {
  color: #555;
  font-size: 14px;
}

.input-line {
  margin-top: 35px;
  display: flex;
  align-items: center;
}

.input-prompt {
  color: #555;
  margin-right: 15px;
}

.fake-input {
  flex: 1;
  display: flex;
  align-items: center;
}

.cursor {
  width: 12px;
  height: 22px;
  background: #e0e0e0;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.visitor {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #444;
  font-size: 14px;
  text-align: center;
}

.click-counter {
  margin-top: 20px;
  color: #444;
  font-size: 14px;
  text-align: center;
}

.ascii-void {
  margin: 30px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  color: #444;
}
