* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("background.webp") center / 100% 100% no-repeat;
  background-color: #000;
}

#borzoi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  max-width: 320px;
  padding: 18px 20px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  font-family: system-ui, -apple-system, sans-serif;
  color: #eee;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookie-banner p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

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

.cookie-buttons button {
  flex: 1;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

#accept {
  color: #000;
  background: #fff;
  border: 1px solid #fff;
}

#accept:hover {
  opacity: 0.85;
}

#decline {
  color: #ddd;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

#cookie-banner.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

#fade {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

#fade.active {
  opacity: 1;
}
