#yuc-cookie-banner {
  display: none !important;
}

.yuc-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: rgba(17, 19, 24, 0.3);
  backdrop-filter: blur(5px);
  padding: 16px;
  color: #111318;
}

.yuc-cookie-modal[hidden] {
  display: none;
}

.yuc-cookie-modal__panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 720px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.3);
  padding: 26px;
}

.yuc-cookie-modal__eyebrow {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #0057c8;
}

.yuc-cookie-modal__title {
  margin: 8px 0 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 0.98;
  font-weight: 1000;
}

.yuc-cookie-modal__copy {
  margin: 12px 0 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 750;
  color: rgba(17, 19, 24, 0.72);
}

.yuc-cookie-modal__status,
.yuc-current-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(211, 216, 246, 0.72);
  padding: 14px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 1000;
  color: #111318;
}

.yuc-cookie-modal__status::before {
  content: "✓";
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #0057c8;
  color: #fff;
  font-size: 14px;
}

.yuc-cookie-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.yuc-cookie-modal__actions button {
  min-height: 46px;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 1000;
  cursor: pointer;
}

.yuc-cookie-modal__accept {
  border: 0;
  background: #0057c8;
  color: #fff;
}

.yuc-cookie-modal__reject {
  border: 1px solid rgba(17, 19, 24, 0.15);
  background: #fff;
  color: #111318;
}

.yuc-cookie-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.yuc-cookie-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.yuc-cookie-modal__links a {
  color: #0057c8;
  text-decoration: underline;
  text-decoration-color: rgba(0, 87, 200, 0.32);
  text-underline-offset: 4px;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 680px) {
  .yuc-cookie-modal__actions {
    grid-template-columns: 1fr;
  }

  .yuc-cookie-modal__panel {
    padding: 22px 18px;
  }

  .yuc-cookie-modal__close {
    right: 10px;
    top: 10px;
  }
}
