* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Silkscreen", serif;
}

body {
  background-color: #f4dbdb;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(1px);
}

.container {
  text-align: center;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.image-container {
  margin-bottom: 2rem;
}

.top-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(80, 250, 123, 0.3);
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2a4423;
  margin-bottom: 2rem;
}

.enter-btn,
.connect-btn {
  padding: 0.75rem 2rem;
  background-color: #136f19;
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enter-btn:hover,
.connect-btn:hover {
  transform: scale(1.05);
  background-color: rgba(17, 40, 28, 0.9);
}

.enter-btn:disabled,
.connect-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.terminal {
  background-color: rgb(23, 27, 23);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(80, 250, 123, 0.2);
  max-width: 48rem;
  margin: 0 auto;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(80, 250, 123, 0.2);
  margin-bottom: 1rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.dot-purple {
  background-color: #104725;
}
.dot-green {
  background-color: #50fa89;
}
.dot-black {
  background-color: #000000;
}

.content {
  margin-top: 1rem;
}

.nav-link {
  display: block;
  color: #e0e0e0;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color:#faa850;
}

.description {
  margin-top: 1.5rem;
  color: #164f22;
}

.footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(80, 250, 123, 0.2);
}

.footer-link {
  color: #6272a4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #faa850;
}

.live-now {
  color: #faa850;
}

.disconnected {
  color: #fcfcfc;
}

.status {
  color: #fefefe;
  margin-bottom: 2rem;
}

.chat-box {
  height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(80, 250, 123, 0.2);
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
}

.chat-message {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.user-message {
  background-color: rgba(189, 147, 249, 0.2);
  text-align: right;
}

.ai-message {
  background-color: rgba(80, 250, 123, 0.2);
  text-align: left;
}

.chat-input {
  display: flex;
  gap: 0.5rem;
}

#user-input {
  flex-grow: 1;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(80, 250, 123, 0.2);
  border-radius: 0.25rem;
  color: #e0e0e0;
  font-family: "JetBrains Mono", monospace;
}

.send-btn {
  padding: 0.5rem 1rem;
  background-color: #1a3d21;
  color: white;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: rgba(132, 213, 33, 0.9);
}






  
  
  