/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* LOGIN PAGE */
.login-container {
  background: linear-gradient(to bottom right, #4caf50, #ffffff);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  background: white;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 350px;
  width: 100%;
}

.login-box h1 {
  font-size: 2.2rem;
  color: #4a2c2a;
  margin-bottom: 10px;
}

.login-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login-box button {
  padding: 12px 30px;
  font-size: 1rem;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-box button:hover {
  background-color: #388e3c;
}

/* MATRIX EFFECT */
#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 999;
}

/* HACKED PAGE */
#hacked-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: red;
  text-align: center;
  padding-top: 10%;
  z-index: 1000;
}

#hacked-page ul {
  list-style: none;
  padding: 0;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

#timer-btn {
  margin-top: 30px;
  font-size: 2.2rem;
  background-color: red;
  color: white;
  padding: 15px 40px;
  border-radius: 10px;
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { background: red; }
  50% { background: darkred; }
}

/* GLITCH EFFECT */
.glitch-text {
  font-size: 3rem;
  position: relative;
  animation: glitch 1s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: "💀 YOUR DATA HAS BEEN HACKED 💀";
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0.7;
}

.glitch-text::before {
  animation: glitchTop 1s infinite;
  top: -2px;
  color: #0ff;
}

.glitch-text::after {
  animation: glitchBottom 1.2s infinite;
  top: 2px;
  color: #f0f;
}

@keyframes glitch {
  0% { transform: none; }
  20% { transform: skew(-5deg); }
  40% { transform: skew(5deg); }
  60% { transform: translateX(2px); }
  80% { transform: translateX(-2px); }
  100% { transform: none; }
}

@keyframes glitchTop {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

@keyframes glitchBottom {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(3px); }
  50% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.hidden {
  display: none;
}
