.cyberdom-cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease;
}

.cyberdom-cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.cyberdom-cookie-notice__inner {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(190,255,61,.12), transparent 28%),
    linear-gradient(135deg, rgba(79,37,66,.96), rgba(8,8,12,.96));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.cyberdom-cookie-notice__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.cyberdom-cookie-notice__desc {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}

.cyberdom-cookie-notice__desc a {
  color: #beff3d;
  text-decoration: none;
  border-bottom: 1px solid rgba(190,255,61,.35);
}

.cyberdom-cookie-notice__desc a:hover,
.cyberdom-cookie-notice__desc a:focus {
  color: #d8ff84;
  border-color: rgba(216,255,132,.8);
}

.cyberdom-cookie-notice__actions {
  display: flex;
  justify-content: flex-end;
}

.cyberdom-cookie-notice__btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.cyberdom-cookie-notice__btn:hover {
  transform: translateY(-1px);
}

.cyberdom-cookie-notice__btn--primary {
  background: #beff3d;
  color: #111;
  box-shadow: 0 10px 24px rgba(190,255,61,.22);
}

@media (max-width: 767px) {
  .cyberdom-cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cyberdom-cookie-notice__inner {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 18px;
  }

  .cyberdom-cookie-notice__actions {
    justify-content: stretch;
  }

  .cyberdom-cookie-notice__btn {
    width: 100%;
  }
}
