.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1rem 1.25rem;
  background: rgba(5, 8, 24, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-banner-text {
  flex: 1 1 280px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #9294a6;
}

.cookie-banner-text a {
  color: #7c8cf8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
  color: #eeeef2;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner-btn {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.2s, background 0.2s, border-color 0.2s;
}

.cookie-banner-btn--accept {
  background: #4361ee;
  color: #fff;
}

.cookie-banner-btn--accept:hover {
  filter: brightness(1.08);
}

.cookie-banner-btn--reject {
  background: transparent;
  color: #9294a6;
  border-color: rgba(255, 255, 255, 0.15);
}

.cookie-banner-btn--reject:hover {
  color: #eeeef2;
  border-color: rgba(255, 255, 255, 0.28);
}
