/* Cool black & orange cookie consent banner */
:root {
  --cookie-bg: #0b0b0f;
  --cookie-card: rgba(18, 18, 24, 0.96);
  --cookie-orange: #ff7a00;
  --cookie-orange-light: #ff9f32;
  --cookie-text: #ffffff;
  --cookie-muted: #c9c9d1;
  --cookie-border: rgba(255, 122, 0, 0.35);
}

#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
}

#cookie-banner .cookie-content {
  max-width: 980px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.18), transparent 38%),
    var(--cookie-card);
  color: var(--cookie-text);
  border: 1px solid var(--cookie-border);
  border-radius: 22px;
  padding: 22px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(255, 122, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#cookie-banner .cookie-content::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -50px;
  top: -60px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.42), transparent 70%);
  pointer-events: none;
}

#cookie-banner p {
  margin: 0;
  color: var(--cookie-muted);
  font-size: 15px;
  line-height: 1.55;
  position: relative;
}

#cookie-banner strong {
  display: block;
  color: var(--cookie-text);
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}

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

#cookie-banner button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

#cookie-banner button:hover {
  transform: translateY(-2px);
}

#accept-cookies {
  background: linear-gradient(135deg, var(--cookie-orange), var(--cookie-orange-light));
  color: #111;
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.32);
}

#decline-cookies {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cookie-text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

#decline-cookies:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 720px) {
  #cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  #cookie-banner .cookie-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  #cookie-banner .buttons {
    width: 100%;
    flex-direction: column;
  }

  #cookie-banner button {
    width: 100%;
  }
}
