#decimo-consent-root {
  --dc-ink: #0f2537;
  --dc-muted: #5d6f80;
  --dc-teal: #1fb6a6;
  --dc-teal-dark: #118d83;
  --dc-paper: #fffdf9;
  --dc-line: rgba(15, 37, 55, .14);
  font-family: inherit;
  color: var(--dc-ink);
  position: relative;
  z-index: 2147483000;
}

.dc-lock { overflow: hidden; }

.dc-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0, rgba(31, 182, 166, .2), transparent 34%),
    var(--dc-paper);
  box-shadow: 0 24px 70px rgba(6, 30, 47, .24);
}

.dc-banner[hidden], .dc-modal[hidden], .dc-reopen[hidden] { display: none !important; }
.dc-banner__copy { max-width: 730px; }
.dc-kicker { color: var(--dc-teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.dc-banner h2, .dc-modal h2 { margin: 5px 0 8px; color: var(--dc-ink); font-size: 24px; line-height: 1.15; }
.dc-banner p { margin: 0 0 8px; color: var(--dc-muted); font-size: 14px; line-height: 1.55; }
.dc-banner a { color: var(--dc-ink); font-size: 13px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.dc-banner__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; min-width: 310px; }
.dc-banner__actions .dc-btn--primary { grid-column: 1 / -1; }

.dc-btn {
  min-height: 43px;
  padding: 10px 16px;
  border: 1px solid var(--dc-line);
  border-radius: 999px;
  background: #fff;
  color: var(--dc-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.dc-btn:hover { transform: translateY(-1px); border-color: rgba(15, 37, 55, .35); }
.dc-btn--primary { border-color: var(--dc-teal); background: var(--dc-teal); color: #062a2b; }
.dc-btn--primary:hover { border-color: var(--dc-teal-dark); background: #28c6b5; }
.dc-btn--ghost { background: transparent; }

.dc-reopen {
  position: fixed;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(15, 37, 55, .9);
  color: #fff;
  box-shadow: 0 8px 25px rgba(6, 30, 47, .2);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.dc-modal { position: fixed; inset: 0; display: grid; place-items: center; padding: 20px; }
.dc-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 24, 37, .58); backdrop-filter: blur(5px); }
.dc-modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  background: var(--dc-paper);
  box-shadow: 0 30px 90px rgba(4, 20, 31, .35);
}
.dc-modal__close { position: absolute; top: 14px; right: 15px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(15, 37, 55, .07); color: var(--dc-ink); font-size: 23px; cursor: pointer; }
.dc-choice { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 17px 0; border-top: 1px solid var(--dc-line); }
.dc-choice strong { display: block; margin-bottom: 3px; font-size: 15px; }
.dc-choice p { margin: 0; color: var(--dc-muted); font-size: 13px; line-height: 1.45; }
.dc-choice input { width: 22px; height: 22px; accent-color: var(--dc-teal-dark); }
.dc-modal__actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 14px; }

@media (max-width: 760px) {
  .dc-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; gap: 17px; padding: 19px; border-radius: 18px; }
  .dc-banner h2, .dc-modal h2 { font-size: 20px; }
  .dc-banner__actions { min-width: 0; }
  .dc-modal { padding: 10px; }
  .dc-modal__panel { max-height: calc(100vh - 20px); padding: 22px 18px; border-radius: 19px; }
  .dc-modal__actions { display: grid; }
}
