.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(18, 24, 33, 0.96);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-consent[hidden] {
  display: none !important;
}

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

.cookie-consent-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.cookie-consent-copy a {
  color: #b7e2ff;
  text-decoration: underline;
}

.cookie-consent-actions {
  flex: 0 0 auto;
}

.cookie-consent-button {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent-accept {
  background: #02accf;
  color: #041218;
}

.cookie-consent-accept:focus-visible {
  outline: 3px solid rgba(2, 172, 207, 0.7);
  outline-offset: 2px;
}

@media screen and (max-width: 767.98px) {
  .cookie-consent-shell {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent-actions {
    width: 100%;
  }
  .cookie-consent-button {
    width: 100%;
  }
}
