body {
  margin: 0;
  background: linear-gradient(135deg, #020403, #0d2a1c);
  color: #dfffea;
  font-family: "Segoe UI", Arial, sans-serif;
}

header {
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #2cff9d;
}

header img {
  width: 140px;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  background-color: #050d09;
}

.menu button {
  background-color: transparent;
  color: #7dffbf;
  border: 2px solid #1f6b4a;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.menu button:hover {
  background-color: #1f6b4a;
  box-shadow: 0 0 10px #2cff9d;
  animation: blink 0.5s infinite;
}

@keyframes blink {
  0% {opacity: 1;}
  50% {opacity: 0.5;}
  100% {opacity: 1;}
}

#content {
  padding: 30px;
  max-width: 950px;
  margin: 30px auto;
  line-height: 1.8;
  background-color: rgba(5, 20, 15, 0.9);
  border-radius: 20px;
  box-shadow: 0 0 25px black;
}

/* FENNEC */
#fennec {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 90px;
  z-index: 9999;
  transition: transform 0.2s;
  cursor: pointer;
}

#bubble {
  position: fixed;
  bottom: 120px;
  left: 20px;
  background: white;
  color: black;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  max-width: 220px;
  display: none;
  box-shadow: 0 0 10px black;
}
