@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2isfFJU.woff2) format('woff2');
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #39ff14;
  font-family: 'VT323', monospace;
  min-height: 100vh;
}

a { color: #39ff14; text-decoration: none; }

/* ---------- HOME ---------- */
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.home-inner {
  position: relative;
  display: inline-block;
}

.skull {
  display: block;
  width: 576px;
  max-width: 90vw;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.enter-btn {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #39ff14;
  border: 2px solid #39ff14;
  font-family: 'VT323', monospace;
  font-size: 28px;
  letter-spacing: 4px;
  padding: 10px 34px;
  cursor: pointer;
}
.enter-btn:hover { background: #39ff14; color: #000; }

/* ---------- LOGIN ---------- */
.login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-box {
  border: 2px solid #39ff14;
  padding: 40px 50px;
  width: 340px;
}

.login-box label {
  display: block;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 10px 0 6px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  background: #000;
  border: 1px solid #39ff14;
  color: #39ff14;
  font-family: 'VT323', monospace;
  font-size: 22px;
  padding: 8px 10px;
  outline: none;
  letter-spacing: 4px;
}

.login-actions { text-align: center; margin-top: 34px; }

.ok-btn {
  background: #39ff14;
  color: #000;
  border: none;
  font-family: 'VT323', monospace;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 8px 46px;
  cursor: pointer;
}
.ok-btn:hover { background: #2fd60f; }

.login-error {
  color: #39ff14;
  text-align: center;
  min-height: 24px;
  font-size: 20px;
  margin-top: 14px;
  visibility: hidden;
}
.login-error.show { visibility: visible; }

/* ---------- SECURITY FOLDER ---------- */
.folder { position: relative; min-height: 100vh; overflow: hidden; }

.sec-file {
  position: absolute;
  width: 120px;
  text-align: center;
  cursor: pointer;
  color: #39ff14;
}
.sec-file img {
  width: 74px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
.sec-file .sec-name {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* ---------- SERVER DEAD ---------- */
.dead {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: 48px;
  letter-spacing: 8px;
}
