[data-cookie-consent-banner] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px;
  pointer-events: none;
}

.cookie-consent__panel {
  pointer-events: auto;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(20, 20, 30, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #e8e8f0;
}

.cookie-consent__text {
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cookie-consent__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #a0a0b0;
}

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

.cookie-consent__desc a:hover {
  color: #e0b0ff;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 120px;
  transition: filter 0.15s ease, background 0.15s ease;
}

.cookie-consent__btn:hover {
  filter: brightness(1.06);
}

.cookie-consent__btn--accept {
  background: linear-gradient(135deg, #c084fc, #7c3aed);
  color: #fff;
}

.cookie-consent__btn--reject {
  background: transparent;
  color: #e8e8f0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 560px) {
  [data-cookie-consent-banner] {
    padding: 12px;
  }

  .cookie-consent__panel {
    padding: 16px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
}
