/* Cookie consent banner - dark landing theme */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid #1e1e1e;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.35s var(--ease-out-expo), opacity 0.35s;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: var(--landing-max, 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #9a9a9a;
}

.cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--duration-fast);
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: #0f1400;
}

.cookie-banner__btn--accept:hover {
  background: var(--color-accent-hover);
}

.cookie-banner__btn--settings {
  background: transparent;
  color: #b9b9b9;
  border: 1px solid #2a2a2a;
}

.cookie-banner__btn--settings:hover {
  color: #f2f2f2;
  border-color: #3a3a3a;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}
