/* =========================================================================
   WALYSER — CHAIN-STRIP-BOOST (Abschnitt 2: Börsen & Wallets)
   additiv, rührt keine IDs/Funktionalität an — nur Optik
========================================================================= */

/* ---------- Ganze Leiste: eigener Glas-Panel-Look statt reiner Linie ---------- */
.chainStripSection{padding:34px 0 38px;position:relative}
.chainStripHead{padding:0 0 16px}

/* ---------- Label: leuchtende Badge-Pille statt Fließtext ---------- */
.chainStripSection .chainLabel{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 15px;border-radius:999px;
  background:#62eaff0f;border:1px solid #62eaff30;
  color:#8fe9ff;font-weight:800;
}

/* ---------- Bar: dezenter Glow-Rahmen + weicherer Glas-Hintergrund ---------- */
.chainStripBar{
  border-top-color:transparent;border-bottom-color:transparent;
  background:linear-gradient(180deg,#0b0e18,#05060a);
  border-radius:18px;padding:20px 0;
  position:relative;
  box-shadow:inset 0 0 0 1px #ffffff0f,0 24px 50px -34px #000c;
}
.chainStripBar:before,.chainStripBar:after{width:120px}
.chainStripBar:before{background:linear-gradient(90deg,#05060a,transparent)}
.chainStripBar:after{background:linear-gradient(270deg,#05060a,transparent)}

/* Feine Leuchtlinie oben & unten am Panel */
.chainStripSection:before,.chainStripSection:after{
  content:"";display:block;width:min(320px,70%);height:1px;margin:0 auto;
  background:linear-gradient(90deg,transparent,#62eaff55,transparent);
}
.chainStripSection:before{margin-bottom:22px}
.chainStripSection:after{margin-top:22px}

/* ---------- Chips: mehr Kontur, sanftes Heben beim Hover ---------- */
.chainChip{
  padding:9px 16px;border-radius:12px;
  background:#ffffff06;border-color:#ffffff14;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.chainChip:hover{transform:translateY(-2px);border-color:#62eaff4a;background:#62eaff0d}
.chainChip .ic.logoIc{width:30px;height:30px;padding:4px;box-shadow:0 0 0 1px #ffffff14}

@media(max-width:520px){
  .chainStripSection{padding:26px 0 30px}
  .chainStripBar{padding:16px 0}
}
