#cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 99999;
  transition: bottom 0.6s ease;
  font-family: Arial, sans-serif;
}

#cookie-banner.show {
  bottom: 20px;
}

#cookie-banner .inner {
  width: min(900px, 92%);
  background: rgba(25, 25, 25, 0.92);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-icon svg {
  flex-shrink: 0;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

#cookie-banner p {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  opacity: 0.9;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#cookie-banner button {
  border: none;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.accept {
  background: #4CAF50;
  color: white;
}

.accept:hover {
  background: #43a047;
  transform: translateY(-1px);
}

.decline {
  background: #e53935;
  color: white;
}

.decline:hover {
  background: #c62828;
  transform: translateY(-1px);
}

.settings {
  background: #333;
  color: white;
}

.settings:hover {
  background: #444;
  transform: translateY(-1px);
}

#cookie-settings {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.9;
}

#cookie-settings label {
  display: block;
  margin: 5px 0;
}