/* Cookie Consent Banner */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(30, 30, 60, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(100, 200, 255, 0.3);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: 'Manrope', sans-serif;
}

.cookie-banner__desc {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.cookie-banner__link {
  font-size: 13px;
  color: #64c8ff;
  text-decoration: none;
  transition: color 0.3s;
}

.cookie-banner__link:hover {
  color: #a0e7ff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.cookie-banner__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-banner__btn--primary {
  background: linear-gradient(135deg, #64c8ff 0%, #00a8e8 100%);
  color: #000;
}

.cookie-banner__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(100, 200, 255, 0.4);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Мобильная версия */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__content {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
  }

  .cookie-banner__desc {
    font-size: 13px;
  }
}
