/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family:
    "GolosText",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.cookie-consent-banner.cookie-visible {
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
}

.cookie-consent-text a {
  color: #4da6ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
  color: #7dc0ff;
  text-decoration: none;
}

.cookie-consent-btn {
  flex-shrink: 0;
  background: #4da6ff;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family:
    "GolosText",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  white-space: nowrap;
}

.cookie-consent-btn:hover {
  background: #3a90e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(77, 166, 255, 0.3);
}

.cookie-consent-btn:active {
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-consent-text {
    font-size: 13px;
  }

  .cookie-consent-btn {
    width: 100%;
    padding: 14px 28px;
  }
}
