




































.dl {
  --dl-cuore: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  


  --dl-r: 10px;
  


  --m: var(--accent);
  --m-rot: 0deg;

  position: relative;
  isolation: isolate;
}








.dl::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  




  background:
    radial-gradient(24% 20% at 26% 22%, rgba(255, 206, 110, 0.13), transparent 70%),
    radial-gradient(22% 20% at 76% 24%, rgba(111, 157, 255, 0.13), transparent 70%),
    radial-gradient(34% 14% at 50% 82%, rgba(199, 155, 255, 0.10), transparent 72%);
}







.dl-card--classic,  .dl--m-classic  { --m: #ffce6e; --m-rot:   0deg; }
.dl-card--art,      .dl--m-art      { --m: #c79bff; --m-rot: 222deg; }
.dl-card--zoom,     .dl--m-zoom     { --m: #6f9dff; --m-rot: 174deg; }
.dl-card--traits,   .dl--m-traits   { --m: #6fdd8b; --m-rot:  92deg; }
.dl-card--ability,  .dl--m-ability  { --m: #5fd0e8; --m-rot: 142deg; }
.dl-card--arts,     .dl--m-arts     { --m: #ffa25c; --m-rot: 337deg; }
.dl-card--effects,  .dl--m-effects  { --m: #ff8fc8; --m-rot: 282deg; }
.dl-card--zability, .dl--m-zability { --m: #dbe45f; --m-rot:  17deg; }
.dl-card--grid,     .dl--m-grid     { --m: #59e0c5; --m-rot: 120deg; }







.dl .page__title {
  border-bottom-color: transparent;
  color: var(--accent);
  background: linear-gradient(180deg, #fff4d6 8%, var(--accent) 52%, #d99a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 206, 110, 0.28));
}




@media (forced-colors: active) {
  .dl .page__title {
    background: none;
    -webkit-text-fill-color: currentcolor;
    filter: none;
  }
}

.dl__intro,
.dl__noscript {
  max-width: var(--measure);
  margin: 0 auto var(--s5);
  color: var(--text-muted);
  font-size: var(--t-dense);
  text-align: center;
}








.dl__menu,
.dl__menunext {
  display: none;
}

.dl--menu .dl__crumb,
.dl--menu .dl__rules,
.dl--menu .dl__hint,
.dl--menu .dl__bar,
.dl--menu .dl__clue,
.dl--menu .dl__pick,
.dl--menu .dl__grid,
.dl--menu .dl__end {
  display: none;
}



.dl--menu .dl__menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s3);
  max-width: 980px;
  margin: 0 auto var(--s4);
}



.dl--menu .dl__menunext {
  display: inline-block;
  padding: var(--s2) var(--s4);
  border: var(--hair) solid var(--rule);
  border-radius: 999px;
  background: var(--bg-raised);
  margin: var(--s4) auto var(--s4);
  color: var(--text-muted);
  font-family: var(--font-game);
  font-size: var(--t-dense);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--track-caps);
  text-align: center;
  text-transform: uppercase;
}










.dl-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-areas:
    "ico"
    "nome"
    "hint"
    "stato";
  grid-template-rows: 88px auto 1fr auto;
  padding: 0 0 var(--s3);
  border: var(--hair) solid var(--rule-strong);
  border-radius: var(--dl-r);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 44%),
    var(--bg-raised);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}




.dl-card:not(.dl-card--done):not(.dl-card--choose):hover {
  border-color: var(--m);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.dl-card:not(.dl-card--done):not(.dl-card--choose):hover .dl-card__ico::before {
  opacity: 0.95;
}




@media (prefers-reduced-motion: reduce) {
  .dl-card {
    transition: border-color 0.15s ease;
  }

  .dl-card:not(.dl-card--done):not(.dl-card--choose):hover {
    transform: none;
  }
}




.dl-card__ico {
  position: relative;
  z-index: 0;
  grid-area: ico;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-bottom: var(--hair) solid var(--rule);
  color: var(--m);
}



.dl-card__ico::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url(/assets/scouter_bg_zenkai.webp);
  background-position: center;
  background-size: cover;
  filter: hue-rotate(var(--m-rot, 0deg)) saturate(1.15) brightness(0.42);
  opacity: 0.8;
  transition: opacity 0.15s ease;
}




.dl-card__ico::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(58% 120% at 50% 118%, var(--m), transparent 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  opacity: 0.34;
}

.dl-card__ico svg {
  display: block;
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 12px var(--m)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

.dl-card__name {
  grid-area: nome;
  padding: var(--s3) var(--s3) 0;
  font-family: var(--font-game);
  font-size: var(--t-lead);
  letter-spacing: var(--track-h);
  line-height: var(--lh-tight);
  text-wrap: balance;
}

.dl-card__hint {
  grid-area: hint;
  padding: var(--s1) var(--s4) 0;
  color: var(--text-muted);
  font-size: var(--t-dense);
  line-height: var(--lh-prose);
  text-wrap: pretty;
}




.dl-card__state {
  grid-area: stato;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  min-height: 18px;
  margin-top: var(--s3);
  padding: 0 var(--s3);
  color: var(--text-faint);
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}




.dl-card--done {
  border-color: var(--accent-red);
}

.dl-card--done .dl-card__state {
  color: var(--accent-red);
}

.dl-card--win {
  border-color: var(--accent-green);
}

.dl-card--win .dl-card__state {
  color: var(--accent-green);
}




.dl-card--done .dl-card__ico::before {
  filter: grayscale(1) brightness(0.3);
  opacity: 0.55;
}

.dl-card--done .dl-card__ico::after {
  opacity: 0.12;
}














.dl-card--choose {
  border-color: var(--m);
  cursor: default;
}

.dl-choice {
  grid-area: hint;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s3) var(--s3) 0;
}

.dl-choice__b {
  min-height: 44px;
  padding: var(--s2) var(--s3);
  border: var(--hair) solid var(--m);
  border-radius: var(--radius);
  background: transparent;
  color: var(--m);
  cursor: pointer;
  font-family: var(--font-game);
  font-size: var(--t-body);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}



.dl-choice__b--go {
  background: var(--m);
  color: var(--ink);
  font-weight: 600;
}

.dl-choice__b:hover {
  box-shadow: 0 0 0 1px var(--m);
}

.dl-choice__note {
  color: var(--text-faint);
  font-size: var(--t-micro);
  line-height: var(--lh-prose);
}







.dl-choice__x {
  grid-area: stato;
  min-height: 44px;
  margin: var(--s3) var(--s3) 0;
  padding: var(--s1);
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.dl-choice__x:hover {
  color: var(--text);
}












.dl__crumb {
  display: flex;
  max-width: var(--measure);
  align-items: center;
  gap: var(--s3);
  margin: 0 auto var(--s3);
  padding: var(--s2) var(--s3);
  border: var(--hair) solid var(--rule);
  border-left: 3px solid var(--m);
  border-radius: var(--dl-r);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 62%),
    var(--bg-raised);
}



.dl-crumb__ico {
  display: flex;
  flex: none;
  width: 28px;
  height: 28px;
  color: var(--m);
}

.dl-crumb__ico svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px var(--m));
}

.dl-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: var(--s2) var(--s3);
  border: var(--hair) solid var(--rule-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-game);
  font-size: var(--t-dense);
  letter-spacing: var(--track-h);
}

.dl-back:hover {
  color: var(--text);
}




.dl-info {
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  border: var(--hair) solid var(--rule-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-game);
  font-size: var(--t-body);
  line-height: 1;
}

.dl-info:hover {
  color: var(--text);
}

.dl-info--on {
  border-color: var(--m);
  color: var(--m);
}

.dl__rules {
  max-width: var(--measure);
  margin: 0 auto var(--s3);
  padding: var(--s4);
  border: var(--hair) solid var(--rule);
  border-radius: var(--dl-r);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg-raised);
}



.dl-rules__list li::marker {
  color: var(--m);
}

.dl-rules__list {
  margin: 0 0 var(--s3);
  padding-left: var(--s4);
  color: var(--text);
  font-size: var(--t-dense);
  line-height: var(--lh-prose);
  text-align: left;
}

.dl-rules__list li {
  margin-bottom: var(--s1);
}

.dl-crumb__now {
  color: var(--m);
  font-family: var(--font-game);
  font-size: var(--t-h3);
  letter-spacing: var(--track-h);
  line-height: var(--lh-tight);
}

.dl__hint {
  margin: 0 auto var(--s3);
  color: var(--text-muted);
  font-size: var(--t-dense);
  text-align: center;
}

.dl__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  margin: 0 0 var(--s4);
}





.dl__streak {
  padding: var(--s1) var(--s3);
  border: var(--hair) solid var(--rule);
  border-radius: 999px;
  background: var(--bg-raised);
  color: var(--text-muted);
  font-size: var(--t-dense);
}




.dl .tb-btn:hover {
  border-color: var(--m);
  color: var(--m);
}




.dl__next {
  padding: var(--s1) var(--s3);
  border: var(--hair) solid var(--rule);
  border-radius: 999px;
  background: var(--bg-raised);
  color: var(--text-faint);
  font-size: var(--t-micro);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--track-h);
}









.dl__status {
  display: flex;
  justify-content: center;
  gap: var(--s1);
  margin: var(--s2) 0 0;
}
























.dl-life {
  position: relative;
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 3px rgba(255, 70, 70, 0.5));
}

.dl-life::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 34% at 33% 26%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #ff8a8a, #e8323c 55%, #d0212a);
  -webkit-mask: var(--dl-cuore) center / contain no-repeat;
  mask: var(--dl-cuore) center / contain no-repeat;
}




.dl-life--spent {
  filter: none;
}

.dl-life--spent::before {
  background: var(--rule-strong);
}



.dl__clue:empty {
  display: none;
}

.dl-clue {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s2);
  max-width: var(--measure);
  margin: 0 auto var(--s4);
}











.dl-art {
  position: relative;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  width: 240px;
  height: 240px;
  align-items: center;
  justify-content: center;
  border: var(--hair) solid var(--rule-strong);
  border-radius: var(--dl-r);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.dl-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/scouter_bg_zenkai.webp);
  background-position: center;
  background-size: cover;
  filter: hue-rotate(var(--m-rot, 0deg)) saturate(1.1) brightness(0.5);
  opacity: 0.42;
}


.dl-clue--art .dl-art {
  background: radial-gradient(circle at 50% 50%, rgba(240, 245, 255, 0.28) 0%, rgba(138, 92, 246, 0.22) 40%, #101018 78%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 35px rgba(138, 92, 246, 0.28);
  border-color: rgba(138, 92, 246, 0.45);
}

.dl-clue--art .dl-art::before {
  opacity: 0.55;
  filter: hue-rotate(var(--m-rot, 0deg)) saturate(1.3) brightness(0.8);
}



.dl-art img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  

  transition: filter 0.35s ease, transform 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .dl-art img { transition: none; }
}

.dl-traits {
  display: flex;
  max-width: var(--measure);
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--s2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-clue__more {
  text-align: left;
  margin: 0;
  color: var(--text-faint);
  font-size: var(--t-micro);
}






.dl-clue--traits,
.dl-clue--ability,
.dl-clue--arts,
.dl-clue--effects,
.dl-clue--zability {
  padding: var(--s4);
  border: var(--hair) solid var(--rule);
  border-left: 3px solid var(--m);
  border-radius: var(--dl-r);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 255, 255, 0.04), transparent 62%),
    var(--bg-raised);
}




.dl-traits .pill {
  border-color: var(--m);
  color: var(--m);
}







.dl-ability {
  margin: 0;
  text-align: left;
}




.dl-ability__line {
  margin: 0 0 var(--s1);
  color: var(--text);
  font-size: var(--t-dense);
  line-height: var(--lh-prose);
}


.dl-ability__name {
  margin: 0;
  color: var(--m);
  font-family: var(--font-game);
  font-size: var(--t-lead);
  text-align: left;
}

.dl-arts {
  margin: 0;
  text-align: left;
}

.dl-arts__label {
  color: var(--m);
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.dl-arts__name {
  margin: 0 0 var(--s3);
  color: var(--text);
  font-family: var(--font-game);
  font-size: var(--t-lead);
  line-height: var(--lh-tight);
}






.dl-arts__label {
  margin: var(--s4) 0 var(--s1);
}

.dl-arts__label:first-child {
  margin-top: 0;
}

.dl-zab__line {
  margin: 0 0 var(--s3);
  color: var(--text);
  font-size: var(--t-dense);
  line-height: var(--lh-prose);
}





.dl__pick {
  position: relative;
  max-width: var(--measure);
  margin: 0 auto var(--s5);
}

.dl__label {
  display: block;
  margin-bottom: var(--s1);
  color: var(--text-faint);
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.dl__input {
  width: 100%;
  min-height: 46px;
  padding: var(--s2) var(--s3);
  border: var(--hair) solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--bg-raised);
  color: var(--text);
  font-family: var(--font-barlow);
  font-size: var(--t-body);
}




.dl__input:focus-visible {
  border-color: var(--m);
  box-shadow: 0 0 18px -4px var(--m);
}




.dl__input::placeholder {
  color: var(--text-faint);
}

.dl__input:disabled {
  opacity: 0.55;
}







.dl__filtri {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s2);
}

.dl-f {
  flex: 1 1 8rem;
  min-height: 44px;
  padding: var(--s1) var(--s3);
  border: var(--hair) solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg-raised);
  color: var(--text-muted);
  font-family: var(--font-barlow);
  font-size: var(--t-dense);
  cursor: pointer;
}





.dl-f--on {
  border-color: var(--m);
  color: var(--text);
}

.dl-f:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.dl-f:disabled {
  opacity: 0.55;
  cursor: default;
}

.dl__list {
  position: absolute;
  z-index: 5;
  right: 0;
  left: 0;
  max-height: 320px;
  margin: var(--s1) 0 0;
  overflow-y: auto;
  padding: 4px 0;
  border: var(--hair) solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--bg-sunken);
  list-style: none;
}

.dl-opt {
  cursor: pointer;
}

.dl-opt:hover,
.dl-opt--on {
  background: var(--bg-raised);
}




.dl-opt--on {
  box-shadow: inset 2px 0 0 var(--accent);
}








.dl-opt__in,
.dl-who {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: var(--s2);
  padding: 6px var(--s2);
  font-size: var(--t-body);
  text-align: left;
}

















.dl-opt__in .chara-card,
.dl-who .chara-card {
  flex: none;
  zoom: 0.32;
}





.dl-opt__in .chara-card:hover,
.dl-who .chara-card:hover {
  transform: none;
  outline-color: transparent;
}

.dl-tag__txt {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dl-tag__name {
  overflow: hidden;
  color: var(--text);
  font-size: var(--t-dense);
  line-height: 1.25;
  padding: 1px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}




.dl-tag__meta {
  


  overflow: hidden;
  color: var(--text-faint);
  font-size: var(--t-micro);
  line-height: 1.25;
  padding: 1px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}









.dl__grid {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}




.dl-row {
  display: grid;
  grid-template-columns: 260px repeat(6, minmax(80px, 1fr));
  gap: var(--s1);
  min-width: 740px;
  margin-bottom: var(--s1);
}




.dl-row .dl-who {
  border-radius: var(--radius);
  background: var(--bg-raised);
}

.dl-cell {
  display: flex;
  min-width: 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: var(--s1);
  border-radius: var(--radius-card);
  font-size: var(--t-dense);
  line-height: var(--lh-tight);
  text-align: center;
  word-break: break-word;
}

@keyframes dl-cell-pop {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dl-row:last-child .dl-cell:not(.dl-cell--head) {
  animation: dl-cell-pop 0.22s ease-out backwards;
}
.dl-row:last-child .dl-cell:nth-child(2) { animation-delay: 0.03s; }
.dl-row:last-child .dl-cell:nth-child(3) { animation-delay: 0.06s; }
.dl-row:last-child .dl-cell:nth-child(4) { animation-delay: 0.09s; }
.dl-row:last-child .dl-cell:nth-child(5) { animation-delay: 0.12s; }
.dl-row:last-child .dl-cell:nth-child(6) { animation-delay: 0.15s; }
.dl-row:last-child .dl-cell:nth-child(7) { animation-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .dl-row:last-child .dl-cell:not(.dl-cell--head) {
    animation: none;
  }
}

.dl-cell--head {
  min-height: 0;
  color: var(--text-faint);
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}




.dl-cell--ok {
  background: linear-gradient(180deg, #8ce9a4, var(--accent-green));
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 0 16px -6px var(--accent-green);
}

.dl-cell--part {
  background: linear-gradient(180deg, #ffe0a0, var(--accent));
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 0 16px -6px var(--accent);
}




.dl-cell--no,
.dl-cell--up,
.dl-cell--down {
  background: var(--bg-raised);
  color: var(--text-muted);
}



.dl-miss {
  display: flex;
  max-width: var(--measure);
  justify-content: flex-start;
  margin: 0 auto var(--s1);
  border-radius: var(--radius);
  background: var(--bg-raised);
}

.dl-miss--hit {
  background: var(--accent-green);
}

.dl-miss--hit .dl-tag__name,
.dl-miss--hit .dl-tag__meta {
  color: var(--ink);
}






.dl-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  max-width: 480px;
  margin: var(--s5) auto 0;
  padding: var(--s5) var(--s4);
  border: var(--hair) solid var(--m);
  border-radius: var(--dl-r);
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(255, 255, 255, 0.07), transparent 62%),
    var(--bg-raised);
  box-shadow: 0 0 34px -12px var(--m), 0 14px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: dl-cell-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.dl-end__title {
  margin: 0;
  color: var(--m);
  font-family: var(--font-game);
  font-size: var(--t-h2);
  line-height: var(--lh-tight);
}

.dl-end__answer {
  display: flex;
  align-items: center;
  gap: var(--s3);
  color: var(--text);
  font-size: var(--t-body);
  text-decoration: none;
}

.dl-end__answer:hover {
  text-decoration: underline;
}




.dl-end__answer .chara-card {
  flex: none;
}

.dl-end__hint {
  color: var(--text-muted);
  font-size: var(--t-dense);
}










.dl-gr {
  display: grid;
  grid-template-columns: 92px repeat(3, 1fr);
  gap: var(--s1);
  margin: 0 0 var(--s3);
}




.dl-gr__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  padding: var(--s1);
  color: var(--m);
  font-family: var(--font-game);
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  line-height: var(--lh-tight);
  text-align: center;
  text-transform: uppercase;
}

.dl-gr__ico {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.dl-gr__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  min-height: 104px;
  padding: var(--s1);
  border: var(--hair) solid var(--rule-strong);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 50%),
    var(--bg-raised);
  color: var(--text-faint);
  cursor: pointer;
}

.dl-gr__cell[disabled] {
  cursor: default;
}






.dl-gr__cell:empty::before {
  content: "+";
  color: var(--rule-strong);
  font-size: var(--t-h2);
  line-height: 1;
}






.dl-gr__cell:not([disabled]):not(.dl-gr__cell--sel):hover {
  border-color: var(--m);
}

.dl-gr__cell:not([disabled]):not(.dl-gr__cell--sel):hover:empty::before {
  color: var(--m);
}




.dl-gr__cell--sel { border-color: var(--accent); box-shadow: 0 0 18px -6px var(--accent); }
.dl-gr__cell--ok  { border-color: var(--accent-green); box-shadow: 0 0 18px -6px var(--accent-green); }
.dl-gr__cell--ko  { border-color: var(--accent-red); color: var(--accent-red); }

.dl-gr__cell .chara-card {
  flex: none;
  zoom: 0.5;
}



.dl-gr__cell .chara-card:hover {
  transform: none;
  outline-color: transparent;
}

.dl-gr__ko {
  font-size: var(--t-h3);
  line-height: var(--lh-tight);
}

.dl-gr__fit {
  font-size: var(--t-micro);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.dl-gr__now {
  margin: 0 auto var(--s3);
  color: var(--text-muted);
  font-size: var(--t-dense);
  text-align: center;
}









.dl__opts {
  display: none;
}

.dl--menu .dl__opts {
  display: block;
  max-width: 420px;
  margin: 0 auto var(--s5);
}

.dl-opt__row {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) var(--s4);
  border: var(--hair) solid var(--rule);
  border-radius: var(--dl-r);
  background: var(--bg-raised);
  cursor: pointer;
  font-size: var(--t-dense);
  text-align: left;
}

.dl-opt__row:hover {
  border-color: var(--m);
}

.dl-opt__box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  


  accent-color: var(--m);
  cursor: pointer;
}

.dl-opt__note {
  margin: var(--s2) 0 0;
  color: var(--text-muted);
  font-size: var(--t-micro);
  text-align: center;
}






.dl__support {
  display: none;
}

.dl--menu .dl__support {
  display: block;
  max-width: 420px;
  margin: 0 auto var(--s6);
  padding: var(--s4);
  border: var(--hair) solid var(--rule);
  border-radius: var(--dl-r);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 206, 110, 0.07), transparent 64%),
    var(--bg-raised);
  text-align: center;
}

.dl-support__b {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s5);
  border-radius: var(--radius);
  







  background: linear-gradient(180deg, #d0212a, #96121a);
  color: #fff;
  font-family: var(--font-game);
  font-size: var(--t-body);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.dl-support__b:hover {
  filter: brightness(1.08);
}



.dl-support__b::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-mask: var(--dl-cuore) center / contain no-repeat;
  mask: var(--dl-cuore) center / contain no-repeat;
}

.dl-support__note {
  margin-top: var(--s2);
  color: var(--text-faint);
  font-size: var(--t-micro);
  line-height: var(--lh-prose);
}











@media (max-width: 640px) {
  





  .dl:not(.dl--menu) .dl__intro {
    display: none;
  }

  



  .dl--menu .dl__menu {
    gap: var(--s2);
  }

  

  .dl-card {
    grid-template-rows: 64px auto 1fr auto;
  }

  .dl-card__ico svg {
    width: 34px;
    height: 34px;
  }

  


  .dl-row {
    grid-template-columns: 160px repeat(6, 68px);
    min-width: 592px;
  }

  





  .dl-end__answer .chara-card {
    zoom: 0.7;
  }

  




  .dl-gr {
    grid-template-columns: 74px repeat(3, 1fr);
  }

  .dl-gr__cell {
    min-height: 84px;
  }

  .dl-gr__cell .chara-card {
    zoom: 0.38;
  }

  .dl-cell {
    min-height: 40px;
    min-width: 0;
    overflow: hidden;
    font-size: var(--t-micro);
  }

  .dl-art {
    width: 180px;
    height: 180px;
  }
}
