.cp a, .cp 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;
}
.cp 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);
}
.cp a:focus-visible{
  outline: 2px solid rgba(190, 140, 255, 0.6);
  outline-offset: 3px;
  border-radius: 10px;
}

.cp-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);
}
.cp-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;
}
.cp-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px){
  .cp-grid2{ grid-template-columns: 1fr; }
}
.cp-sep{
  border:0;
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 22px 0;
}
.cp-lead{ font-size: 1.06rem; line-height: 1.85; }
.cp-muted{ opacity:.88; }
.cp-small{ font-size:14px; line-height:1.7; opacity:.9; }

.cp-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;
}
.cp-note strong{ color: rgba(215,175,255,1); }

.cp-pillrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 10px;
}
.cp-pill{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  padding: 6px 10px;
  font-size: 13px;
  opacity: .92;
}
.cp-pill strong{ color: rgba(215,175,255,1); }

/* Accordion */
.cp-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;
}
.cp-acc summary{
  cursor:pointer;
  font-weight: 900;
  list-style:none;
}
.cp-acc summary::-webkit-details-marker{ display:none; }
.cp-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;
}
.cp-acc details[open] summary:after{
  transform: rotate(225deg);
  margin-top: 8px;
}
.cp-acc .body{ margin-top: 10px; opacity:.95; line-height: 1.8; }
.cp-acc ul{ margin: 8px 0 0; padding-left: 18px; }
.cp-acc li{ margin: 6px 0; }
.cp-acc code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.95em; }

/* Cookie table */
.cp-table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
  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);
}
.cp-table th, .cp-table td{
  text-align:left;
  vertical-align: top;
  padding: 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.7;
}
.cp-table th{
  border-top: 0;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  opacity: .85;
}
.cp-table tr:first-child td{ border-top: 0; }
.cp-tag{
  display:inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 3px 9px;
  font-size: 12px;
  opacity: .9;
}
.cp-footlinks{
  margin: 0;
  padding-left: 18px;
  line-height: 1.85;
}