.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10000;
  padding: 16px;
  pointer-events: none;
}

.cookie-consent__panel {
  pointer-events: auto;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.96);
  color: #f5f5f5;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.cookie-consent__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.cookie-consent__text {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.82);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-consent__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent__btn--primary {
  background: #ffffff;
  color: #111111;
}

.cookie-consent__btn--secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-consent__link {
  display: inline-block;
  font-size: 0.84rem;
  color: rgba(245, 245, 245, 0.72);
  text-decoration: underline;
}

.cookie-consent__link:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .cookie-consent {
    padding: 24px;
  }

  .cookie-consent__panel {
    margin: 0 0 0 auto;
  }
}
