* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Share Tech Mono", monospace;
  background: #000;
  color: #00ff41;
  overflow-x: hidden;
  min-height: 100vh;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("https://i.pinimg.com/originals/57/51/12/575112def22ef348958d97b288993df7.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1px);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.glitch {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff0080;
  text-shadow: 0 0 5px #ff0080, 0 0 10px #ff0080, 0 0 15px #ff0080, 0 0 20px #ff0080;
  animation: glitch 2s infinite;
  margin-bottom: 20px;
}

@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-2px, -2px);
  }
  20% {
    transform: translate(2px, 2px);
  }
  30% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  50% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  70% {
    transform: translate(-2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  90% {
    transform: translate(-2px, -2px);
  }
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(0, 255, 65, 0.2);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #00ff41, #ff0080);
  width: 0%;
  animation: loading 3s ease-in-out forwards;
  box-shadow: 0 0 10px #00ff41;
}

@keyframes loading {
  to {
    width: 100%;
  }
}

.terminal {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ff41;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.terminal-header {
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00ff41;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn.red {
  background: #ff5f56;
}
.btn.yellow {
  background: #ffbd2e;
}
.btn.green {
  background: #27ca3f;
}

.terminal-title {
  margin-left: auto;
  color: #00ff41;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 20px;
  min-height: 400px;
}

.prompt {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.user {
  color: #ff0080;
  text-shadow: 0 0 5px #ff0080;
}

.command {
  color: #00ff41;
  margin-left: 10px;
}

.message-container {
  position: relative;
  line-height: 1.8;
  font-size: 1rem;
}

.message-text {
  color: #00ff41;
  text-shadow: 0 0 3px rgba(0, 255, 65, 0.5);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.cursor {
  color: #ff0080;
  animation: blink 1s infinite;
  font-size: 1.2rem;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.signature {
  margin-top: 30px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 15s;
}

.signature-text {
  color: #ff0080;
  font-size: 0.9rem;
  text-shadow: 0 0 5px #ff0080;
}

.bracket {
  color: #00ff41;
}

.status {
  color: #ffbd2e;
  font-weight: bold;
}

.timestamp {
  color: #888;
  margin-left: 10px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.control-btn {
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  border: 2px solid #00ff41;
  color: #00ff41;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #00ff41;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.control-btn:hover {
  background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
  transform: translateY(-2px);
}

.control-btn span {
  color: #ff0080;
  margin-right: 8px;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00ff41;
  border-radius: 50%;
  animation: float 6s infinite linear;
  box-shadow: 0 0 6px #00ff41;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) translateX(100px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .glitch {
    font-size: 1.8rem;
  }

  .terminal-body {
    padding: 15px;
  }

  .message-text {
    font-size: 0.9rem;
  }

  .controls {
    flex-direction: column;
    align-items: center;
  }

  .control-btn {
    width: 200px;
  }
}
