.fcy-consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid rgba(140, 201, 255, .22);
  border-left: 4px solid #e84545;
  border-radius: 10px;
  background: rgba(0, 25, 76, .96);
  box-shadow: 0 18px 48px rgba(0, 12, 30, .28);
  color: #fff;
  padding: 18px;
  display: none;
}

.fcy-consent-banner.is-visible {
  display: block;
}

.fcy-consent-banner h3 {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 8px;
}

.fcy-consent-banner p {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.fcy-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fcy-consent-actions button {
  border: 0;
  border-radius: 7px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.fcy-consent-accept {
  background: #0c5adb;
  color: #fff;
}

.fcy-consent-decline {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.fcy-consent-actions button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

@media (max-width: 575px) {
  .fcy-consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .fcy-consent-actions button {
    flex: 1 1 130px;
  }
}
