#cookieConsentBanner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1600;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.96);
  color: #e7edf5;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.cookie-consent-inner {
  padding: 14px 16px;
}

.cookie-consent-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.cookie-consent-text {
  margin: 0;
  color: #c1cfdd;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-consent-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #b4c5d8;
  font-size: 12px;
  line-height: 1.45;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.cookie-consent-btn {
  border: 1px solid #2a2a2a;
  border-radius: 9px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-consent-btn.accept {
  background: #0a84ff;
  border-color: #0a84ff;
  color: #fff;
}

.cookie-consent-btn.reject {
  background: #1a1a1a;
  border-color: #3a3a3a;
  color: #d5e0ee;
}

@media (max-width: 768px) {
  #cookieConsentBanner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-consent-inner {
    padding: 12px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }
}
