:root {
  --ink: #0a0a0c;
  --elevated: #121116;
  --line: #232028;
  --bone: #e8e6ea;
  --soft: #a8a5ad;
  --muted: #6b6873;
  --pink: #ff5c8a;
  --pink-soft: rgba(255, 92, 138, 0.12);
  --pink-glow: rgba(255, 92, 138, 0.35);
  --violet: rgba(130, 70, 190, 0.16);
  --grid: rgba(255, 255, 255, 0.025);
  --ok: #4ade80;
  --font-body:
    "Geist",
    system-ui,
    -apple-system,
    sans-serif;
  --font-mono:
    "Geist Mono",
    ui-monospace,
    "SF Mono",
    Menlo,
    monospace;
  --font-pixel: "DotGothic16", var(--font-mono);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
::selection {
  background: var(--pink);
  color: var(--ink);
}
html {
  scrollbar-width: thin;
  scrollbar-color: #2e2b36 transparent;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #2e2b36;
  border-radius: 999px;
  border: 3px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input,
select {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: vt-out 0.16s ease both;
}
::view-transition-new(root) {
  animation: vt-in 0.26s ease both;
}
@keyframes vt-out {
  to {
    opacity: 0;
  }
}
@keyframes vt-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(
      90deg,
      var(--grid) 1px,
      transparent 1px);
  background-size: 44px 44px;
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 40%,
      transparent 30%,
      var(--ink) 100%);
}
.blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
}
.blob-1 {
  background: var(--violet);
  top: -160px;
  left: 12%;
  animation: drift-1 26s ease-in-out infinite alternate;
}
.blob-2 {
  background: var(--pink-soft);
  bottom: -200px;
  right: 4%;
  animation: drift-2 32s ease-in-out infinite alternate;
}
@keyframes drift-1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(120px, 80px) scale(1.15);
  }
}
@keyframes drift-2 {
  from {
    transform: translate(0, 0) scale(1.1);
  }
  to {
    transform: translate(-140px, -70px) scale(0.95);
  }
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.92),
      rgba(10, 10, 12, 0.75) 70%,
      transparent);
}
.tb-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.tb-logo .lg {
  font-family: var(--font-pixel);
  font-size: 19px;
  color: var(--pink);
  text-shadow: 0 0 18px var(--pink-glow);
  line-height: 1;
}
.tb-logo .tb-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.tb-right a {
  color: var(--muted);
  transition: color 0.18s ease;
}
.tb-right a:hover {
  color: var(--pink);
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 14px);
  z-index: 60;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone);
  background: rgba(18, 17, 22, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast.ok {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 24px var(--pink-soft);
}
.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 24px 90px;
}
.hero {
  padding: 26px 0 40px;
}
.hero-kana {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5em;
  margin-bottom: 16px;
}
.hero-name {
  font-family: var(--font-pixel);
  font-weight: 400;
  font-size: clamp(38px, 7.5vw, 58px);
  line-height: 1.12;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.hero-name .accent {
  color: var(--pink);
  text-shadow: 0 0 32px var(--pink-glow), 0 0 90px var(--pink-soft);
}
.hero-sub {
  margin-top: 20px;
  font-size: 14px;
  color: var(--soft);
  max-width: 46ch;
}
.hero-note {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.hero-note b {
  color: var(--pink);
  font-weight: 500;
}
.flow {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(20, 17, 24, 0.82),
      rgba(12, 11, 15, 0.82));
  backdrop-filter: blur(14px);
  padding: 24px 24px 26px;
  position: relative;
  overflow: hidden;
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--pink-glow),
      transparent);
}
.flow-steps {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 22px;
}
.flow-steps span {
  transition: color 0.25s ease;
}
.flow-steps span.on {
  color: var(--pink);
}
.flow-steps i {
  font-style: normal;
  opacity: 0.5;
}
.step {
  display: none;
  animation: step-in 0.35s ease both;
}
.step.on {
  display: block;
}
@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}
.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 9px;
}
.providers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 18px;
}
.provider {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: rgba(18, 17, 22, 0.5);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}
.provider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.6;
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
}
.provider small {
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
  letter-spacing: 0.08em;
}
.provider:hover {
  border-color: var(--pink);
  color: var(--bone);
  transform: translateY(-1px);
}
.provider.sel {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-soft);
}
.provider.sel .dot {
  background: var(--pink);
  opacity: 1;
  box-shadow: 0 0 10px var(--pink-glow);
}
.provider[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.provider[disabled]:hover {
  border-color: var(--line);
  color: var(--soft);
  transform: none;
}
.tin {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tin::placeholder {
  color: var(--muted);
}
.tin:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.row-gap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  padding: 11px 20px;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.btn-pink {
  color: var(--ink);
  background: var(--pink);
}
.btn-pink:hover {
  box-shadow: 0 0 24px var(--pink-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--soft);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn.busy {
  pointer-events: none;
}
.btn.busy::after {
  content: "";
  animation: dots 1.2s steps(4, end) infinite;
}
@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
.form-err {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #f87171;
  margin-top: 12px;
  min-height: 18px;
}
.pv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pv-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--elevated);
  object-fit: cover;
  flex-shrink: 0;
}
.pv-ava.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  color: var(--pink);
  font-size: 18px;
}
.pv-ava[hidden],
.pv-ava.ph[hidden] {
  display: none;
}
.pv-ava-btn {
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.pv-ava-btn .pv-ava {
  transition: filter 0.2s ease;
}
.ava-edit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--bone);
  background: rgba(10, 10, 12, 0.72);
  padding: 2px 0 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.pv-ava-btn {
  overflow: hidden;
}
.pv-ava-btn:hover .ava-edit,
.pv-ava-btn:focus-visible .ava-edit {
  opacity: 1;
}
.pv-ava-btn:hover .pv-ava {
  filter: brightness(0.85);
  border-color: var(--pink);
}
.pv-name {
  font-weight: 600;
  font-size: 15px;
}
.pv-via {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.pv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.pv-stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 8px 8px;
  text-align: center;
  background: rgba(18, 17, 22, 0.5);
}
.pv-stat .n {
  font-family: var(--font-pixel);
  font-size: 19px;
  color: var(--pink);
  text-shadow: 0 0 14px var(--pink-glow);
  line-height: 1.2;
  white-space: nowrap;
}
.pv-stat .l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 3px;
}
.pv-strip {
  display: flex;
  gap: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  mask-image:
    linear-gradient(
      90deg,
      #000 82%,
      transparent);
  -webkit-mask-image:
    linear-gradient(
      90deg,
      #000 82%,
      transparent);
}
.pv-strip img {
  width: 44px;
  height: 62px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  opacity: 0;
  animation: strip-in 0.5s ease forwards;
}
@keyframes strip-in {
  to {
    opacity: 1;
  }
}
.slug-field {
  display: flex;
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.slug-field:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.slug-prefix {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  padding: 11px 0 11px 14px;
  white-space: nowrap;
}
.slug-field input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--pink);
  background: none;
  border: none;
  padding: 11px 8px 11px 2px;
}
.slug-field input:focus {
  outline: none;
}
.slug-field input::placeholder {
  color: var(--muted);
}
.slug-check {
  font-family: var(--font-mono);
  font-size: 11px;
  padding-right: 13px;
  white-space: nowrap;
  color: var(--muted);
}
.slug-check.free {
  color: var(--ok);
}
.slug-check.taken {
  color: #f87171;
}
.done-glow {
  font-family: var(--font-mono);
  font-size: clamp(14px, 3.4vw, 17px);
  color: var(--pink);
  text-shadow: 0 0 22px var(--pink-glow);
  border: 1px solid var(--pink);
  border-radius: 10px;
  background: var(--pink-soft);
  padding: 16px 18px;
  text-align: center;
  word-break: break-all;
  margin-bottom: 16px;
  animation: claim 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.4) both;
}
@keyframes claim {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
}
.done-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.done-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}
.key-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: center;
}
.key-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--pink);
  border-radius: 12px;
  background: var(--pink-soft);
  padding: 18px 20px;
  margin-bottom: 10px;
  animation: claim 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.4) both;
}
.key-val {
  font-family: var(--font-pixel);
  font-size: clamp(17px, 4vw, 25px);
  color: var(--pink);
  text-shadow: 0 0 22px var(--pink-glow);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.key-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 22px;
}
.key-note b {
  color: var(--pink);
  font-weight: 500;
}
.mng-wrap {
  max-width: 480px;
}
.mng-hero {
  padding: 20px 0 34px;
}
.mng-hero .hero-name {
  font-size: clamp(30px, 6vw, 46px);
}
.key-in {
  text-align: center;
  letter-spacing: 0.18em;
  color: var(--pink);
  text-transform: uppercase;
}
.key-in::placeholder {
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: none;
}
@keyframes shake {
  10%, 90% {
    transform: translateX(-2px);
  }
  20%, 80% {
    transform: translateX(4px);
  }
  30%, 50%, 70% {
    transform: translateX(-6px);
  }
  40%, 60% {
    transform: translateX(6px);
  }
}
.mcard.shake {
  animation: shake 0.45s ease;
}
.mng-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.mng-ava {
  width: 72px;
  height: 72px;
}
.pv-ava.ph.mng-ava {
  font-size: 26px;
}
.mng-id {
  min-width: 0;
}
.mng-slug {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--pink);
  text-shadow: 0 0 16px var(--pink-soft);
}
.mng-mini {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  width: fit-content;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.mng-mini:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.mng-id .mng-mini {
  margin-top: 5px;
}
.mng-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 17, 22, 0.5);
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}
.mng-toggle:hover {
  border-color: var(--pink);
}
.mng-toggle-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--bone);
  display: block;
}
.mng-toggle-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.switch {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--elevated);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muted);
  transition:
    transform 0.25s cubic-bezier(0.3, 0.9, 0.3, 1.2),
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.switch.on {
  background: var(--pink-soft);
  border-color: var(--pink);
}
.switch.on::after {
  transform: translateX(18px);
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}
.mng-sub-toggle {
  margin-left: 14px;
  border-left: 2px solid var(--line);
  padding-left: 12px;
  max-height: 90px;
  opacity: 1;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}
.mng-sub-toggle.off {
  max-height: 0;
  opacity: 0;
  margin-top: -16px;
  pointer-events: none;
}
.mng-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.mng-foot .danger {
  margin-left: auto;
}
.mng-foot .danger:hover {
  color: #f87171;
  border-color: #f87171;
}
.mng-foot .danger.armed {
  color: #f87171;
  border-color: #f87171;
  text-shadow: 0 0 14px rgba(248, 113, 113, 0.5);
}
.mine {
  margin-top: 34px;
}
.mine-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}
.mine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mine-chips a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 14px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mine-chips a:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.foot {
  margin-top: 60px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.foot a {
  color: var(--soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.foot a:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.lwrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 26px 80px;
}
.lhead {
  position: relative;
  margin: 10px 0 26px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
}
.collage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.collage-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  gap: 8px;
  transform: translateY(-50%);
  filter: blur(22px) saturate(1.3) brightness(0.68);
  animation: pan 70s linear infinite;
  will-change: transform;
}
.collage-track img {
  width: 96px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
@keyframes pan {
  from {
    transform: translate(0, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}
.collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.38),
      rgba(10, 10, 12, 0.78)),
    radial-gradient(
      ellipse 90% 100% at 50% 0%,
      transparent 40%,
      var(--ink) 100%);
}
.lhead-inner {
  position: relative;
  padding: 34px 30px 26px;
}
.lhead-top {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.l-ava {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  box-shadow: 0 0 22px var(--pink-soft);
  object-fit: cover;
  background: var(--elevated);
  flex-shrink: 0;
}
.l-ava.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 24px;
  color: var(--pink);
}
.l-id {
  min-width: 0;
  flex: 1;
}
.l-title {
  font-family: var(--font-pixel);
  font-weight: 400;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.15;
  color: var(--pink);
  text-shadow: 0 0 26px var(--pink-glow);
  overflow-wrap: anywhere;
}
.l-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--soft);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.l-meta a {
  color: var(--soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.l-meta a:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.l-meta .sep {
  color: var(--muted);
  opacity: 0.6;
}
.l-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.iconbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 13px;
  background: rgba(10, 10, 12, 0.5);
  backdrop-filter: blur(8px);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.iconbtn:hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 16px var(--pink-soft);
}
.iconbtn svg {
  width: 13px;
  height: 13px;
}
.iconbtn.busy {
  pointer-events: none;
  opacity: 0.6;
}
.iconbtn.danger:hover {
  color: #f87171;
  border-color: #f87171;
  box-shadow: none;
}
.l-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.l-stat .n {
  font-family: var(--font-pixel);
  font-size: 26px;
  color: var(--pink);
  text-shadow: 0 0 16px var(--pink-glow);
  line-height: 1.2;
  white-space: nowrap;
}
.l-stat .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
}
.controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tab {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--soft);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab i {
  font-style: normal;
  font-size: 10px;
  color: var(--muted);
  margin-left: 5px;
  transition: color 0.2s ease;
}
.tab:hover {
  color: var(--bone);
  background: var(--elevated);
}
.tab.on {
  color: var(--pink);
  background: var(--pink-soft);
}
.tab.on i {
  color: var(--pink);
  opacity: 0.75;
}
.ctrl-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.search {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone);
  background: rgba(18, 17, 22, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  width: 150px;
  transition: border-color 0.2s ease, width 0.25s ease;
}
.search::placeholder {
  color: var(--muted);
}
.search:focus {
  outline: none;
  border-color: var(--pink);
  width: 190px;
}
.sort {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--soft);
  background: rgba(18, 17, 22, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.sort:hover {
  border-color: var(--pink);
  color: var(--bone);
}
.sort:focus {
  outline: none;
  border-color: var(--pink);
}
.viewtog {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(18, 17, 22, 0.6);
}
.viewtog button {
  padding: 7px 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s ease, background 0.2s ease;
}
.viewtog button svg {
  width: 13px;
  height: 13px;
}
.viewtog button:hover {
  color: var(--bone);
}
.viewtog button.on {
  color: var(--pink);
  background: var(--pink-soft);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 20px 16px;
}
.card {
  display: block;
}
.card .covw {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--elevated);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.card:hover .covw {
  transform: translateY(-5px);
  border-color: var(--pink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 22px var(--pink-soft);
}
.card .covw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.card .covw img.ld {
  opacity: 1;
  transform: none;
}
.card:hover .covw img {
  transform: scale(1.045);
}
.card .covw .noimg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 20px;
  color: var(--muted);
}
.scorechip {
  position: absolute;
  right: 6px;
  bottom: 6px;
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--pink);
  background: rgba(10, 10, 12, 0.82);
  border: 1px solid rgba(255, 92, 138, 0.35);
  border-radius: 6px;
  padding: 2px 7px;
  line-height: 1.4;
  backdrop-filter: blur(6px);
}
.progressbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(10, 10, 12, 0.6);
}
.progressbar i {
  display: block;
  height: 100%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}
.card .ct {
  margin-top: 9px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--bone);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.card:hover .ct {
  color: var(--pink);
}
.card .cm {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.rows {
  display: flex;
  flex-direction: column;
}
.rowi {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.rowi:hover {
  background: var(--elevated);
}
.rowi .rcov {
  width: 38px;
  height: 54px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--elevated);
  flex-shrink: 0;
}
.rowi .rmain {
  min-width: 0;
  flex: 1;
}
.rowi .rt {
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.rowi:hover .rt {
  color: var(--pink);
}
.rowi .rm {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
.rowi .rprog {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--soft);
  white-space: nowrap;
}
.rowi .rscore {
  font-family: var(--font-pixel);
  font-size: 16px;
  color: var(--pink);
  text-shadow: 0 0 12px var(--pink-glow);
  width: 46px;
  text-align: right;
  white-space: nowrap;
}
.rowi .rscore.none {
  color: var(--muted);
  text-shadow: none;
}
.grp {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--pink);
  margin: 14px 0 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.grp::after {
  content: "";
  flex: 1;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--line),
      transparent);
}
.grp:first-child {
  margin-top: 0;
}
.grp i {
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.nores {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  padding: 40px 0;
  text-align: center;
}
.nf {
  text-align: center;
  padding: 90px 20px 60px;
}
.nf-code {
  font-family: var(--font-pixel);
  font-size: clamp(56px, 12vw, 88px);
  color: var(--pink);
  text-shadow: 0 0 32px var(--pink-glow);
  line-height: 1;
}
.nf-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--soft);
  margin: 18px 0 26px;
}
.nf-sub b {
  color: var(--pink);
  font-weight: 500;
}
.lfoot {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.lfoot a {
  color: var(--soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.lfoot a:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.skel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 20px 16px;
}
.skel div {
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  background:
    linear-gradient(
      100deg,
      var(--elevated) 40%,
      #1a1820 50%,
      var(--elevated) 60%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
@media (max-width: 700px) {
  .wrap {
    padding: 30px 18px 70px;
  }
  .lwrap {
    padding: 0 16px 60px;
  }
  .providers {
    grid-template-columns: 1fr;
  }
  .pv-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .lhead-inner {
    padding: 26px 20px 22px;
  }
  .l-stats {
    gap: 22px;
  }
  .l-stat .n {
    font-size: 22px;
  }
  .controls {
    gap: 10px;
  }
  .ctrl-right {
    margin-left: 0;
    width: 100%;
  }
  .search {
    flex: 1;
    width: auto;
  }
  .search:focus {
    width: auto;
  }
  .grid,
  .skel {
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 16px 12px;
  }
  .rowi .rprog {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .blob-1,
  .blob-2,
  .collage-track {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
