.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #000;
  color: #00ff00;
  border-top: 1px solid #00ff00;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  z-index: 9999;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 0 -2px 10px rgba(0, 255, 0, 0.2);
  text-shadow: 0 0 2px #00ff00;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.cookie-banner a {
  color: #00ccff;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #33ffff;
}

.cookie-banner button {
  background-color: transparent;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #00ff00;
  color: #000;
  box-shadow: 0 0 10px #00ff00;
}
