:root {
  --bg: #07030c;
  --bg-2: #120720;
  --panel: rgba(20, 8, 34, .72);
  --line: rgba(190, 110, 255, .38);
  --purple: #a855f7;
  --purple-hi: #c77dff;
  --magenta: #e14bff;
  --text: #f5eefe;
  --muted: #a896bf;
  --glow: 0 0 6px rgba(199, 125, 255, .9), 0 0 18px rgba(168, 85, 247, .65), 0 0 38px rgba(168, 85, 247, .35);
  --box-glow: 0 0 0 1px rgba(199, 125, 255, .55), 0 0 18px rgba(168, 85, 247, .35), inset 0 0 22px rgba(168, 85, 247, .08);
  --tile: 88px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(90, 30, 150, .22), transparent 70%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: var(--purple-hi); }
a:hover { color: #fff; }
.muted { color: var(--muted); }

/* ---------- kouř v rozích ---------- */
.smoke {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  opacity: .8;
  animation: drift 18s ease-in-out infinite alternate;
}
.smoke-tl {
  top: -12vh; left: -14vw; width: 46vw; height: 50vh;
  background: radial-gradient(closest-side, rgba(170, 60, 255, .45), rgba(120, 30, 200, .15) 60%, transparent);
  transform: rotate(-25deg);
}
.smoke-br {
  bottom: -14vh; right: -12vw; width: 44vw; height: 55vh;
  background: radial-gradient(closest-side, rgba(200, 70, 255, .42), rgba(120, 30, 200, .15) 60%, transparent);
  animation-delay: -6s;
}
.smoke-bl {
  bottom: -18vh; left: -10vw; width: 34vw; height: 40vh;
  background: radial-gradient(closest-side, rgba(150, 50, 240, .35), transparent);
  animation-delay: -11s;
}
@keyframes drift {
  from { translate: 0 0; scale: 1; }
  to { translate: 3vw -2vh; scale: 1.08; }
}
@media (prefers-reduced-motion: reduce) { .smoke { animation: none; } }

.topbar, .page, .foot { position: relative; z-index: 1; }

/* ---------- hlavička ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 48px);
}
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
.brand-name {
  position: relative;
  font-family: "Kaushan Script", cursive;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  text-shadow: var(--glow);
  line-height: 1;
}
.brand-name b {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  color: var(--purple-hi);
  margin-left: 2px;
}
.brand-crown {
  position: absolute;
  width: 30px; height: 20px;
  left: 30%; top: -14px;
  color: var(--purple-hi);
  filter: drop-shadow(0 0 5px var(--purple));
  transform: rotate(-8deg);
}
.brand-sub {
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: .08em;
  font-size: clamp(14px, 1.6vw, 18px);
  text-shadow: 0 0 10px rgba(168, 85, 247, .7);
}

.userbox { display: flex; align-items: center; gap: 12px; }
.user-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--panel);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--box-glow);
  color: var(--text);
  cursor: pointer;
}
.user-chip img, .avatar-fallback {
  width: 38px; height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--purple);
}
.avatar-fallback {
  display: grid; place-items: center;
  background: var(--purple);
  font-weight: 800;
}
.user-meta { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.user-meta small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.user-meta strong { font-size: 15px; }
@media (max-width: 480px) {
  .user-meta small { display: none; }
  .brand-sub { display: none; }
  .topbar { padding-top: 22px; }
}

.neon-menu {
  --bs-dropdown-bg: #140824;
  --bs-dropdown-link-color: var(--text);
  --bs-dropdown-link-hover-bg: rgba(168, 85, 247, .2);
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(168, 85, 247, .3);
}

/* ---------- tlačítka ---------- */
.btn-neon, .btn-twitch, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .12s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-neon {
  color: #fff;
  background: linear-gradient(135deg, #8b2cf5, #c13cff);
  box-shadow: 0 0 18px rgba(193, 60, 255, .55);
}
.btn-neon:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 0 28px rgba(193, 60, 255, .85); }
.btn-twitch {
  color: #fff;
  background: #9146ff;
  box-shadow: 0 0 18px rgba(145, 70, 255, .6);
}
.btn-twitch svg { width: 20px; height: 20px; }
.btn-twitch:hover { color: #fff; background: #a970ff; transform: translateY(-1px); }
.btn-ghost {
  color: var(--purple-hi);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover { color: #fff; box-shadow: inset 0 0 0 1px var(--purple-hi), 0 0 14px rgba(168, 85, 247, .4); }
.btn-sm { padding: 7px 14px; font-size: 14px; border-radius: 10px; }
.btn-danger-ghost { color: #ff7ab6; box-shadow: inset 0 0 0 1px rgba(255, 90, 160, .45); }

/* ---------- obsah ---------- */
.page {
  flex: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px 48px;
}

.spaced {
  text-transform: uppercase;
  letter-spacing: .4em;
  font-weight: 600;
  font-size: 13px;
}
.x { color: var(--magenta); letter-spacing: 0; margin: 0 .6em; }

.flash {
  margin: 0 auto 16px;
  max-width: 720px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--box-glow);
  text-align: center;
}
.flash-error { box-shadow: 0 0 0 1px rgba(255, 90, 160, .6), 0 0 18px rgba(255, 90, 160, .25); color: #ffc2dc; }

.hero { position: relative; text-align: center; padding: 28px 0 36px; }
.hero-title, .tl-title {
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  color: var(--purple-hi);
  text-shadow: var(--glow);
  margin: 0;
}
.hero-title { font-size: clamp(48px, 9vw, 110px); transform: rotate(-3deg); line-height: 1; }
.hero-sub { margin: 22px 0 26px; }
.deco-heart { position: absolute; width: 38px; color: var(--purple-hi); filter: drop-shadow(0 0 6px var(--purple)); }
.deco-heart.h1 { left: 12%; top: 38%; transform: rotate(-18deg); }
.deco-heart.h2 { right: 12%; top: 24%; transform: rotate(16deg); }
@media (max-width: 640px) { .deco-heart { display: none; } }

.section-head {
  display: flex; align-items: center; gap: 14px;
  margin: 8px 0 18px;
  color: var(--magenta);
  text-transform: uppercase; letter-spacing: .3em; font-size: 13px; font-weight: 700;
}
.section-head::before, .section-head::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.empty { text-align: center; padding: 40px 0; color: var(--muted); }

/* ---------- karty tierlistů ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.tl-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--box-glow);
  transition: transform .15s, box-shadow .2s;
}
.tl-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--purple-hi), 0 0 30px rgba(168, 85, 247, .55); }
.tl-card-main { display: flex; flex-direction: column; height: 100%; color: var(--text); text-decoration: none; }
.tl-card-main:hover { color: var(--text); }
.tl-card-edit {
  position: absolute; top: 8px; right: 8px;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  color: #fff;
  background: rgba(7, 3, 12, .72);
  box-shadow: 0 0 0 1px var(--line);
  backdrop-filter: blur(4px);
  opacity: 0; transform: scale(.85);
  transition: opacity .15s, transform .15s, box-shadow .2s, background .2s;
}
.tl-card:hover .tl-card-edit, .tl-card-edit:focus-visible { opacity: 1; transform: none; }
.tl-card-edit:hover { color: #fff; background: #8b2cf5; box-shadow: 0 0 16px rgba(193, 60, 255, .8); }
.tl-card-edit svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (hover: none) { .tl-card-edit { opacity: 1; transform: none; } }
.tl-card-preview {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  aspect-ratio: 4 / 1.3;
  background: #1b0b2e;
}
.tl-card-preview img { width: 100%; height: 100%; object-fit: cover; }
.mini-text {
  display: grid; place-items: center;
  padding: 4px;
  font-size: 12px; font-weight: 700; text-align: center;
  background: linear-gradient(160deg, #3b1466, #1c0a31);
  overflow: hidden;
}
.tl-card-body { padding: 14px 16px 16px; }
.tl-card-body h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.tl-card-body p { margin: 0; }

/* ---------- hledání na úvodní stránce ---------- */
.tl-filter {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px;
  margin: 0 0 22px;
}
.tl-search { position: relative; flex: 1 1 260px; max-width: 460px; }
.tl-search svg {
  position: absolute; left: 13px; top: 50%; width: 18px; transform: translateY(-50%);
  fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; pointer-events: none;
}
.tl-search .neon-input {
  padding: 10px 14px 10px 40px; border-radius: 12px;
  border-color: rgba(199, 125, 255, .7);
  box-shadow: 0 0 10px rgba(199, 125, 255, .45), 0 0 26px rgba(168, 85, 247, .3), inset 0 0 12px rgba(168, 85, 247, .12);
  transition: border-color .2s, box-shadow .2s;
}
.tl-search .neon-input:focus {
  border-color: var(--purple-hi);
  box-shadow: 0 0 0 1px var(--purple-hi), 0 0 16px rgba(199, 125, 255, .8), 0 0 42px rgba(168, 85, 247, .55), inset 0 0 14px rgba(168, 85, 247, .18);
}
.tl-search:focus-within svg { stroke: var(--purple-hi); }
.tl-mine { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; font-weight: 600; }
.tl-mine input { position: absolute; opacity: 0; pointer-events: none; }
.tl-mine .switch {
  position: relative; flex: none;
  width: 42px; height: 24px; border-radius: 999px;
  background: rgba(7, 3, 12, .6); box-shadow: inset 0 0 0 1px var(--line);
  transition: background .2s, box-shadow .2s;
}
.tl-mine .switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--muted);
  transition: transform .2s, background .2s;
}
.tl-mine input:checked + .switch { background: linear-gradient(135deg, #8b2cf5, #c13cff); box-shadow: 0 0 14px rgba(193, 60, 255, .6); }
.tl-mine input:checked + .switch::after { transform: translateX(18px); background: #fff; }
.tl-mine input:focus-visible + .switch { outline: 2px solid var(--purple-hi); outline-offset: 2px; }
#tl-grid { position: relative; }
/* seznam se posouvá uvnitř, hledání a filtr zůstávají nad ním */
.tl-scroll {
  max-height: min(70vh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
  /* místo pro záři a nadskočení karet, jinak by je okraj ořízl */
  padding: 8px 10px 14px;
  margin: -8px -10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}
.tl-scroll::-webkit-scrollbar { width: 8px; }
.tl-scroll::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 8px; box-shadow: 0 0 8px var(--purple); }
.tl-scroll::-webkit-scrollbar-track { background: transparent; }

/* ---------- detail tierlistu ---------- */
.tl-head { text-align: center; margin: 10px 0 24px; }
.tl-title { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; }
.tl-desc { max-width: 720px; margin: 12px auto 6px; color: #dccdf0; }

.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; }
.tab {
  padding: 9px 20px;
  border: 0; border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--line);
}
.tab.active { color: #fff; background: rgba(168, 85, 247, .22); box-shadow: inset 0 0 0 1px var(--purple-hi), 0 0 16px rgba(168, 85, 247, .45); }
.panel { display: none; }
.panel.active { display: block; }

.board {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 4, 18, .8);
  box-shadow: var(--box-glow);
}
.tier-row { display: flex; min-height: calc(var(--tile) + 8px); }
.tier-row + .tier-row { border-top: 1px solid rgba(190, 110, 255, .18); }
.tier-label {
  flex: 0 0 96px;
  display: grid; place-items: center;
  font-family: "Permanent Marker", cursive;
  font-size: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, .5);
}
.tier-S { background: linear-gradient(135deg, #ff4fd8, #c026d3); }
.tier-A { background: linear-gradient(135deg, #d05bff, #9d2cf0); }
.tier-B { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.tier-C { background: linear-gradient(135deg, #8b5cf6, #5b35c9); }
.tier-D { background: linear-gradient(135deg, #6d4bb8, #432a85); }
.tier-F { background: linear-gradient(135deg, #4a3470, #2a1b45); }

.tier-drop {
  flex: 1;
  display: flex; flex-wrap: wrap; align-content: flex-start;
  gap: 4px;
  padding: 4px;
  min-height: calc(var(--tile) + 8px);
}
.pool {
  border-radius: 14px;
  background: rgba(20, 8, 34, .55);
  box-shadow: inset 0 0 0 1px dashed var(--line);
  outline: 1px dashed var(--line);
  outline-offset: -1px;
  padding: 8px;
  min-height: calc(var(--tile) + 16px);
}
.pool-head {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 10px;
  color: var(--magenta);
}
.pool-head .spaced { flex: 1; }
.save-state { font-size: 13px; color: var(--muted); }
.save-state.ok { color: #b8f5c8; }
.save-state.err { color: #ffa3c9; }
.hint { text-align: center; margin-top: 14px; }

.tile {
  position: relative;
  width: var(--tile); height: var(--tile);
  border-radius: 8px;
  overflow: hidden;
  background: #1e0c35;
  box-shadow: 0 0 0 1px rgba(199, 125, 255, .35);
  user-select: none;
  touch-action: manipulation;
}
[data-panel="mine"] .tile { cursor: grab; }
[data-panel="mine"] .tile:active { cursor: grabbing; }
.tile img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.tile-text {
  display: grid; place-items: center;
  padding: 6px;
  background: linear-gradient(160deg, #4a1a80, #200b3a);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.15;
  word-break: break-word;
}
.tile-text span { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.tile-ghost { opacity: .35; }
.tile-chosen { box-shadow: 0 0 0 2px var(--magenta), 0 0 18px var(--magenta); }
.badge-votes {
  position: absolute; right: 3px; bottom: 3px;
  min-width: 20px; padding: 1px 6px;
  border-radius: 999px;
  background: rgba(7, 3, 12, .85);
  color: #fff;
  font-size: 11px; font-weight: 700; text-align: center;
  box-shadow: 0 0 0 1px var(--purple);
}

.guest-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px;
  margin-bottom: 14px; padding: 12px 16px;
  border-radius: 12px;
  background: rgba(145, 70, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(145, 70, 255, .5);
}
.guest-note p { margin: 0; }

@media (max-width: 600px) {
  :root { --tile: 64px; }
  .tier-label { flex-basis: 54px; font-size: 28px; }
  .tile-text { font-size: 11px; }
}

/* ---------- formuláře ---------- */
.neon-box {
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--box-glow);
}
.form-box { max-width: 900px; margin: 0 auto; padding: clamp(18px, 3vw, 30px); }
.form-box.narrow { max-width: 420px; }
.form-label { margin-top: 14px; font-weight: 600; }
.neon-input, .neon-input:focus {
  background: rgba(7, 3, 12, .6);
  color: var(--text);
  border: 1px solid var(--line);
}
.neon-input:focus { border-color: var(--purple-hi); box-shadow: 0 0 0 .2rem rgba(168, 85, 247, .25); }
.neon-input::placeholder { color: #6f5d88; }
.form-actions { margin-top: 22px; display: flex; justify-content: flex-end; }

.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 154px;
  padding: 16px;
  border-radius: 10px;
  border: 1px dashed var(--line);
  background: rgba(7, 3, 12, .45);
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.dropzone.over, .dropzone.has-files { border-color: var(--purple-hi); box-shadow: 0 0 16px rgba(168, 85, 247, .35); }
.dz-text { font-weight: 700; }

/* ---------- editor bloků (vypadá jako deska na hlasování) ---------- */
.ed-pool { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px 8px; padding: 10px; }
.ed-item { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: grab; }
.ed-item:active { cursor: grabbing; }
.ed-item .tile { transition: filter .2s, opacity .2s; }
.ed-actions { display: flex; gap: 4px; }
.ed-btn {
  display: grid; place-items: center;
  width: 27px; height: 26px; padding: 0;
  border: 0; border-radius: 8px;
  color: var(--text);
  background: rgba(7, 3, 12, .7);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background .15s, box-shadow .15s, color .15s;
}
.ed-btn svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ed-btn:hover { color: #fff; background: #8b2cf5; box-shadow: 0 0 12px rgba(193, 60, 255, .7); }
.ed-btn.ed-del { color: #ff8fc4; box-shadow: inset 0 0 0 1px rgba(255, 90, 160, .5); }
.ed-btn.ed-del:hover { color: #fff; background: #c0267a; box-shadow: 0 0 12px rgba(255, 60, 150, .6); }
.ed-btn.ed-undo { display: inline-flex; gap: 4px; width: auto; padding: 0 8px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.ed-item.is-removed .tile { filter: grayscale(1) brightness(.5); opacity: .45; }
.ed-item.is-removed .tile::after {
  content: ""; position: absolute; inset: 50% 8px auto; height: 2px;
  background: #ff8fc4; transform: rotate(-35deg); box-shadow: 0 0 6px #ff4fa0;
}
.ed-flag {
  position: absolute; left: 3px; top: 3px;
  padding: 1px 5px; border-radius: 999px;
  font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: #8b2cf5; box-shadow: 0 0 8px rgba(193, 60, 255, .8);
}
.ed-flag.changed { background: #b8327d; box-shadow: 0 0 8px rgba(255, 60, 150, .7); }
.ed-add {
  display: grid; place-items: center; padding: 0;
  border: 0;
  background: rgba(168, 85, 247, .08);
  box-shadow: none;
  outline: 2px dashed var(--line); outline-offset: -2px;
  color: var(--purple-hi);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s, outline-color .2s;
}
.ed-add:disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }
.ed-add svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.ed-add:hover, .ed-add:focus-visible {
  color: #fff; background: rgba(168, 85, 247, .28);
  outline-color: var(--purple-hi); box-shadow: 0 0 18px rgba(168, 85, 247, .6);
}
.ed-save { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-top: 18px; }
.ed-error { margin: 0; color: #ffa3c9; font-weight: 600; }
.ed-save .ed-error { flex: 1; text-align: right; }
#ed-pending { color: #ff8fc4; }

.neon-modal {
  background: #12071f;
  color: var(--text);
  border: 0; border-radius: 16px;
  box-shadow: var(--box-glow), 0 20px 60px rgba(0, 0, 0, .6);
}
.neon-modal .modal-header, .neon-modal .modal-footer { border-color: rgba(190, 110, 255, .2); }
.neon-modal .modal-title { font-size: 20px; font-weight: 800; }
.modal-backdrop.show { opacity: .7; }
.ed-label-wrap { position: relative; }
.ed-label-wrap .neon-input { padding-right: 58px; }
.ed-counter { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--muted); }
.ed-counter.full { color: #ff8fc4; }
.ed-image { display: flex; gap: 12px; align-items: stretch; }
.ed-preview { flex: none; }
.ed-drop { flex: 1; min-height: var(--tile); padding: 10px; text-align: center; }
.ed-drop-image { margin-top: 8px; }
.neon-modal .ed-error { margin-top: 12px; }
@media (max-width: 600px) { .ed-preview { width: 88px; height: 88px; } }

.danger-zone { margin-top: 32px; text-align: center; }

/* ---------- patička ---------- */
.foot {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 24px 16px 32px;
  color: #e6d9f7;
}
.foot .line { flex: 0 1 160px; height: 1px; background: linear-gradient(90deg, transparent, var(--line)); }
.foot .line:last-child { background: linear-gradient(90deg, var(--line), transparent); }
.foot .heart { width: 22px; color: var(--magenta); filter: drop-shadow(0 0 5px var(--magenta)); }
@media (max-width: 480px) { .foot .line { display: none; } .foot .spaced { letter-spacing: .2em; font-size: 11px; } }

.tooltip { --bs-tooltip-bg: #2a1045; }
