.cookie-banner {
  font: 14px 'arial', sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  transform: translateY(100%);
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}

.cookie-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.cookie-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.cookie-content li {
  margin: 5px 0;
}

.cookie-content a {
  color: #00b140;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  padding-right: 20px;
  font-size: 0.9rem;
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner .accept {
  background: #00b140;
  color: white;
}

.cookie-banner .decline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-banner button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .cookie-banner p {
    padding-right: 0;
  }
}
