.cmp-link-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  border-radius: 0;
  font-size: 0.76rem;
  text-decoration: underline;
  cursor: pointer;
}

.cmp-link-button-inline {
  line-height: 1.2;
}

.cmp-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(640px, calc(100% - 32px));
  background: rgba(16, 27, 27, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 16px;
  z-index: 1040;
}

.cmp-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.cmp-text {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cmp-text a {
  color: #fff;
  text-decoration: underline;
}

.cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cmp-btn {
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
}

.cmp-btn-primary {
  background: #64a19d;
  color: #fff;
}

.cmp-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.cmp-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cmp-panel {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 12, 0.58);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 1050;
}

.cmp-panel-dialog {
  width: min(720px, 100%);
  background: rgba(16, 27, 27, 0.98);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.cmp-option {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
}

.cmp-option-copy {
  display: grid;
  gap: 6px;
}

.cmp-option-copy strong {
  font-size: 0.96rem;
}

.cmp-option-copy span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.cmp-switch {
  width: 50px;
  height: 28px;
  position: relative;
  flex: 0 0 auto;
}

.cmp-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.cmp-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: background .2s ease;
}

.cmp-switch span::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.cmp-switch input:checked + span {
  background: rgba(100, 161, 157, 0.95);
}

.cmp-switch input:checked + span::after {
  transform: translateX(22px);
}

.cmp-switch input:disabled + span {
  opacity: 0.65;
}

.legal-footer-home {
  background: rgba(0, 0, 0, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 0;
  position: relative;
  z-index: 5;
  margin-top: 0;
}


.legal-footer-home__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.legal-footer-home__inner a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  font-size: 0.76rem;
}




@media (max-width: 767.98px) {
  .cmp-banner {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
    padding: 14px;
  }

  .cmp-panel {
    padding: 10px;
  }

  .cmp-panel-dialog {
    padding: 14px;
  }

  .cmp-option {
    align-items: flex-start;
  }
}
