#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  border-top: 1px solid #2a2a2a;
  padding: 14px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #888;
  font-family: inherit;
}

#cookie-banner p {
  margin: 0;
  line-height: 1.5;
}

#cookie-banner a {
  color: #ccc;
  text-underline-offset: 3px;
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: #fff;
  color: #111;
  border: none;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.cookie-btn-deny {
  background: transparent;
  color: #555;
  border: 1px solid #333;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.cookie-btn-accept:hover { background: #e8e8e8; }
.cookie-btn-deny:hover { color: #888; border-color: #444; }

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
