/* === BASE === */
* { cursor: none !important; }
*:hover, *:active, *:focus { cursor: none !important; }

body {
  background: #050505;
  color: #00ff00;
  font-family: "Courier New", monospace;
  margin: 0;
}

/* === HEADER === */
header {
  padding: 20px;
  border-bottom: 1px solid #00ff00;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
  color: #00ff00;
  text-decoration: none;
}

.logo:hover { text-shadow: 0 0 10px #00ff00; }

/* === LAYOUT === */
.container {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;
}

h2 {
  border-bottom: 1px solid #00ff00;
  padding-bottom: 10px;
}

/* === TIMER === */
.timer-box {
  margin: 30px 0;
  font-size: 24px;
}

input {
  width: 70px;
  background: #050505;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-size: 20px;
  font-family: "Courier New", monospace;
  text-align: center;
}

input::placeholder {
  color: #00ff00;
  opacity: 0.5;
  font-family: "Courier New", monospace;
}

/* === CONTROLS === */
.controls { margin: 20px 0; }

button {
  background: #050505;
  border: 1px solid #00ff00;
  color: #00ff00;
  padding: 10px 20px;
  margin: 5px;
  font-family: "Courier New", monospace;
  text-shadow: 0 0 6px currentColor;
  box-shadow: 0 0 6px currentColor;
}

button:hover { background: #003300; }

/* === DISPLAY === */
#display {
  font-size: 48px;
  margin-top: 20px;
  text-shadow: 0 0 10px #00ff00;
}

/* === CUSTOM CURSOR === */
.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 4px #00ff00);
}

/* === SCANLINES === */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,255,0,0.05), rgba(0,255,0,0.05) 1px,
    transparent 1px, transparent 3px
  );
  z-index: 999;
}