:root {
  --crypnot-tldr-text: #111827;
  --crypnot-tldr-muted: #4b5563;
  --crypnot-tldr-border: rgba(124, 58, 237, 0.18);
  --crypnot-tldr-panel: rgba(255, 255, 255, 0.74);
  --crypnot-tldr-panel-strong: rgba(255, 255, 255, 0.92);
  --crypnot-tldr-purple: #8b5cf6;
  --crypnot-tldr-purple-2: #c084fc;
  --crypnot-tldr-cyan: #22d3ee;
  --crypnot-tldr-shadow: 0 24px 70px rgba(31, 41, 55, 0.10);
}

@media (prefers-color-scheme: dark) {
  :root {
    --crypnot-tldr-text: #ffffff;
    --crypnot-tldr-muted: rgba(255, 255, 255, 0.72);
    --crypnot-tldr-border: rgba(216, 180, 254, 0.22);
    --crypnot-tldr-panel: rgba(15, 23, 42, 0.48);
    --crypnot-tldr-panel-strong: rgba(15, 23, 42, 0.66);
    --crypnot-tldr-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  }
}

body.dark,
body.dark-mode,
body.theme-dark,
body[data-theme="dark"],
html.dark,
html[data-theme="dark"],
[data-theme="dark"] body {
  --crypnot-tldr-text: #ffffff;
  --crypnot-tldr-muted: rgba(255, 255, 255, 0.74);
  --crypnot-tldr-border: rgba(216, 180, 254, 0.22);
  --crypnot-tldr-panel: rgba(15, 23, 42, 0.46);
  --crypnot-tldr-panel-strong: rgba(15, 23, 42, 0.66);
  --crypnot-tldr-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

body.light,
body.light-mode,
body.theme-light,
body[data-theme="light"],
html.light,
html[data-theme="light"],
[data-theme="light"] body {
  --crypnot-tldr-text: #111827;
  --crypnot-tldr-muted: #4b5563;
  --crypnot-tldr-border: rgba(124, 58, 237, 0.18);
  --crypnot-tldr-panel: rgba(255, 255, 255, 0.78);
  --crypnot-tldr-panel-strong: rgba(255, 255, 255, 0.94);
  --crypnot-tldr-shadow: 0 24px 70px rgba(31, 41, 55, 0.10);
}

.crypnot-tldr-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 24px 0 30px;
  border: 1px solid var(--crypnot-tldr-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.18), transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(34, 211, 238, 0.12), transparent 28%),
    linear-gradient(135deg, var(--crypnot-tldr-panel), var(--crypnot-tldr-panel-strong));
  color: var(--crypnot-tldr-text) !important;
  box-shadow: var(--crypnot-tldr-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.crypnot-tldr-box,
.crypnot-tldr-box * {
  box-sizing: border-box;
}

.crypnot-tldr-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  pointer-events: none;
  z-index: 0;
}

.crypnot-tldr-glow::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -72px;
  top: -92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.42), rgba(139, 92, 246, 0.10) 46%, transparent 70%);
  filter: blur(12px);
  animation: crypnotTldrGlowMove 8s ease-in-out infinite alternate;
  z-index: -1;
}

.crypnot-tldr-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(12px);
  z-index: -1;
}

.crypnot-tldr-orb-one {
  width: 150px;
  height: 150px;
  right: 7%;
  top: -70px;
  background: rgba(139, 92, 246, 0.28);
  animation: crypnotTldrOrbOne 9s ease-in-out infinite;
}

.crypnot-tldr-orb-two {
  width: 110px;
  height: 110px;
  left: 32%;
  bottom: -68px;
  background: rgba(34, 211, 238, 0.20);
  animation: crypnotTldrOrbTwo 11s ease-in-out infinite;
}

.crypnot-tldr-inner {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vw, 34px);
}

.crypnot-tldr-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.crypnot-tldr-head h2 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(22px, 2.5vw, 34px) !important;
  line-height: 1.05 !important;
  color: var(--crypnot-tldr-text) !important;
  letter-spacing: -0.03em;
}

.crypnot-tldr-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(139, 92, 246, 0.12);
  color: var(--crypnot-tldr-purple-2) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crypnot-tldr-list {
  display: grid;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.crypnot-tldr-list li {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 30px !important;
  color: var(--crypnot-tldr-text) !important;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
}

.crypnot-tldr-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--crypnot-tldr-purple), var(--crypnot-tldr-cyan));
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
}

.crypnot-tldr-paragraph {
  color: var(--crypnot-tldr-text) !important;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  margin: 0 !important;
}

.crypnot-tldr-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--crypnot-tldr-border);
  color: var(--crypnot-tldr-muted) !important;
  font-size: 12px;
}

@keyframes crypnotTldrGlowMove {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  100% { transform: translate3d(90px, 42px, 0) scale(1.16); opacity: 0.85; }
}

@keyframes crypnotTldrOrbOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-42px, 56px, 0) scale(1.12); }
}

@keyframes crypnotTldrOrbTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(52px, -32px, 0) scale(1.2); }
}

@media (max-width: 720px) {
  .crypnot-tldr-box {
    border-radius: 20px;
    margin: 18px 0 24px;
  }
  .crypnot-tldr-inner {
    padding: 20px;
  }
  .crypnot-tldr-head {
    display: block;
  }
  .crypnot-tldr-list li {
    padding-left: 25px !important;
  }
}
