.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 40px);
  max-width: 900px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(28, 28, 40, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: #c2c2c2;
  padding: 20px 24px;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s, visibility 0.6s;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__icon {
  font-size: 36px;
  color: #f97316;
  flex-shrink: 0;
}

.cookie-banner__content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

p.cookie-banner__text-main {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #e5e5e5;
  line-height: 1.5;
}

p.cookie-banner__text-secondary {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.cookie-banner__text-secondary a {
  color: var(--hover, #a78bfa);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner__text-secondary a:hover {
  text-decoration: underline;
}

.cookie-banner__button {
  flex-shrink: 0;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  background-color: var(--hover, #a78bfa);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.cookie-banner__button:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .cookie-banner__button {
    width: 100%;
  }
}
