.qcb-cookie-bar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.qcb-cookie-bar__inner {
  width: min(920px, 100%);
  background: rgba(18, 22, 31, 0.96);
  color: #f7f2e8;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.qcb-cookie-bar__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.qcb-cookie-bar__text a {
  color: #f0c674;
}

.qcb-cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.qcb-cookie-bar__button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 18px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.qcb-cookie-bar__button:hover {
  transform: translateY(-1px);
}

.qcb-cookie-bar__button--primary {
  background: #f0c674;
  color: #1a1a1a;
}

.qcb-cookie-bar__button--secondary {
  background: transparent;
  color: #f7f2e8;
  border: 1px solid rgba(247, 242, 232, 0.24);
}

@media (max-width: 720px) {
  .qcb-cookie-bar {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .qcb-cookie-bar__inner {
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .qcb-cookie-bar__actions {
    width: 100%;
  }

  .qcb-cookie-bar__button {
    flex: 1 1 auto;
  }
}

.qcb-cookie-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99998;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #12161f;
  color: #f7f2e8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
}
