* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  background: #333;
  display: flex;
  height: 100vh;
  color: #00ff00;
}

.sidebar {
  width: 250px;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.sidebar a {
  color: #00ff00;
  text-decoration: none;
  font-size: 24px;
  margin: 20px 0;
  transition: color 0.3s;
  z-index: 1;
}

.sidebar a:hover {
  color: #33ff33;
  z-index: 1;
}

.content {
  flex: 1;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.home h1 {
  font-size: 4em;
  text-align: center;
  margin-bottom: 40px;
  z-index: 1;
}

.home p {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 60px;
  z-index: 1;
}
.explore-btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5em;
    color: #000;
    background-color: #00ff00;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin: 20px auto 0 auto;
    align-self: center;
  }
  
  .explore-btn:hover {
    background-color: #33ff33;
    transform: scale(1.05);
  }

.home a.button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  color: #000;
  background-color: #00ff00;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
  z-index: 1;
}

.home a.button:hover {
  background-color: #33ff33;
  z-index: 1;
}

.terminal {
  width: 70%;
  height: 60vh;
  background: #004400;
  border-radius: 20px;
  padding: 20px;
  color: #00ff00;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.chat-bubble {
    max-width: 70%;
    padding: 15px;
    margin: 10px;
    border-radius: 15px;
    font-size: 1.2em;
    word-wrap: break-word;
  }
  .user-bubble {
    background-color: #00ff00;
    color: #000;
    align-self: flex-end;
  }
  .ai-bubble {
    background-color: #222;
    color: #00ff00;
    align-self: flex-start;
  }
.input-bar {
  width: 70%;
  display: flex;
  margin-top: 10px;
  z-index: 1;
}

.input-bar input {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border-radius: 10px 0 0 10px;
  border: none;
  background-color: #002200;
  color: #00ff00;
  z-index: 1;
}

.input-bar button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  background-color: #00ff00;
  color: #000;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  z-index: 1;
}

.input-bar button:hover {
  background-color: #33ff33;
  z-index: 1;
}

.support-form {
  display: flex;
  flex-direction: column;
  width: 50%;
  z-index: 1;
}

.support-form label {
  margin-bottom: 10px;
  font-size: 1.2em;
  z-index: 1;
}

.support-form input, .support-form textarea, .support-form button {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: none;
  z-index: 1;
}

.support-form button {
  background-color: #00ff00;
  color: #000;
  cursor: pointer;
  z-index: 1;
}

.support-form button:hover {
  background-color: #33ff33;
  z-index: 1;
}
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none; /* Ensures clicks pass through the canvas */
    background-color: transparent; /* Ensure it's transparent */
  }