.cookie-consent-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.cookie-consent-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-consent-text {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #f4f4f4;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.cookie-consent-text a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-button {
  flex: 0 0 auto;
  min-width: 96px;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: #06967b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.cookie-consent-button:hover {
  opacity: 0.92;
}

.cookie-consent-button:active {
  transform: translateY(1px);
}

@media (max-width: 880px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .cookie-consent-button {
    width: 100%;
  }
}