#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  background: #0a1128;
  color: #f5f7fb;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
  font-size: 0.9rem;
  line-height: 1.4;
}

#cookie-consent-banner .cookie-consent-text {
  margin: 0;
  flex: 1 1 320px;
  max-width: 720px;
}

#cookie-consent-banner .cookie-consent-text a {
  color: #7fb2ff;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.cookie-consent-btn {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  color: #f5f7fb;
}

.cookie-consent-accept {
  background: #2f5bff;
  border-color: #2f5bff;
  font-weight: 600;
}

.cookie-consent-refuse:hover {
  background: rgba(255,255,255,0.08);
}

.cookie-consent-accept:hover {
  background: #1a3fd6;
}

@media (max-width: 640px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  #cookie-consent-banner .cookie-consent-actions {
    justify-content: flex-end;
  }
}
