.dp a, .dp a:visited{
  color: rgba(190, 140, 255, 0.95) !important;
  text-decoration: underline;
  text-decoration-color: rgba(190, 140, 255, 0.55);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 800;
}
.dp a:hover{
  color: rgba(215, 175, 255, 1) !important;
  text-decoration-color: rgba(215, 175, 255, 0.9);
  text-shadow: 0 0 14px rgba(190, 140, 255, 0.25);
}
.dp a:focus-visible{
  outline: 2px solid rgba(190, 140, 255, 0.6);
  outline-offset: 3px;
  border-radius: 10px;
}

.dp-hero{
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
  padding: clamp(18px, 2.2vw, 26px);
}
.dp-box{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.16);
  box-shadow: 0 18px 44px rgba(0,0,0,0.30);
  padding: 18px;
}
.dp-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px){
  .dp-grid2{ grid-template-columns: 1fr; }
}
.dp-sep{
  border:0;
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 22px 0;
}
.dp-lead{ font-size: 1.06rem; line-height: 1.85; }
.dp-muted{ opacity:.88; }
.dp-small{ font-size:14px; line-height:1.7; opacity:.9; }

.dp-note{
  border-radius: 16px;
  border: 1px solid rgba(190,140,255,0.18);
  background:
    radial-gradient(circle at 30% 25%, rgba(190,140,255,0.10), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(215,175,255,0.08), transparent 60%),
    rgba(0,0,0,0.16);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
  padding: 12px 14px;
  margin: 12px 0 0;
  line-height: 1.75;
}
.dp-note strong{ color: rgba(215,175,255,1); }

/* Accordion */
.dp-acc details{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.14);
  box-shadow: 0 18px 44px rgba(0,0,0,0.25);
  padding: 12px 14px;
  margin: 10px 0;
}
.dp-acc summary{
  cursor:pointer;
  font-weight: 900;
  list-style:none;
}
.dp-acc summary::-webkit-details-marker{ display:none; }
.dp-acc summary:after{
  content:"";
  float:right;
  width:10px; height:10px;
  border-right:2px solid rgba(255,255,255,0.6);
  border-bottom:2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  margin-top: 4px;
  transition: transform .12s ease;
}
.dp-acc details[open] summary:after{
  transform: rotate(225deg);
  margin-top: 8px;
}
.dp-acc .body{ margin-top: 10px; opacity:.95; line-height: 1.8; }
.dp-acc ul{ margin: 8px 0 0; padding-left: 18px; }
.dp-acc li{ margin: 6px 0; }