:root {
  --dt-consent-bg: rgba(21, 16, 34, .96);
  --dt-consent-line: rgba(178, 126, 255, .26);
  --dt-consent-text: #f7f3ff;
  --dt-consent-muted: #c8bedb;
  --dt-consent-purple: #8b5cf6;
  --dt-consent-purple-strong: #a855f7;
}
.dt-consent, .dt-consent * { box-sizing: border-box; }
.dt-consent {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  display: none;
  width: min(592px, calc(100vw - 36px));
  max-width: 592px;
  padding: 18px;
  color: var(--dt-consent-text);
  background: linear-gradient(145deg, rgba(31, 22, 50, .97), rgba(14, 14, 24, .97));
  border: 1px solid var(--dt-consent-line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.04) inset;
  font: 14px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  backdrop-filter: blur(14px);
}
.dt-consent.is-visible { display: block; }
.dt-consent__text { min-width: 0; }
.dt-consent__title { margin: 0 0 6px; font-weight: 850; font-size: 15px; line-height: 1.25; letter-spacing: 0; }
.dt-consent__body { margin: 0; color: var(--dt-consent-muted); font-size: 13px; line-height: 1.5; }
.dt-consent__more { display: inline-block; margin-top: 8px; color: #d8c7ff; font-size: 13px; font-weight: 700; text-decoration: none; }
.dt-consent__more:hover { color: #ffffff; text-decoration: underline; }
.dt-consent__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.dt-consent__button { min-height: 40px; padding: 0 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); color: var(--dt-consent-text); background: rgba(255,255,255,.07); font: inherit; font-weight: 800; cursor: pointer; white-space: nowrap; }
.dt-consent__button:hover { background: rgba(255,255,255,.11); }
.dt-consent__button--accept { color: #ffffff; background: linear-gradient(180deg, var(--dt-consent-purple-strong), var(--dt-consent-purple)); border-color: rgba(202, 167, 255, .7); box-shadow: 0 10px 24px rgba(139,92,246,.26); }
.dt-consent__button--accept:hover { background: linear-gradient(180deg, #b66bff, #935ff8); }
@media (max-width: 640px) {
  .dt-consent {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    max-width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 12px;
  }
  .dt-consent__text, .dt-consent__title, .dt-consent__body, .dt-consent__more { text-align: left; }
  .dt-consent__title { font-size: 14px; }
  .dt-consent__body, .dt-consent__more { font-size: 12.5px; }
  .dt-consent__actions { flex-direction: column-reverse; gap: 8px; margin-top: 14px; }
  .dt-consent__button { width: 100%; min-height: 42px; padding: 0 12px; white-space: normal; text-align: center; }
}
