/* minecraft-template.de — premium marketplace design system */
:root {
  --bg: #070b09;
  --bg-elev: #0c1210;
  --surface: #101816;
  --surface-2: #151e1b;
  --line: rgba(120, 200, 160, 0.12);
  --line-strong: rgba(80, 220, 140, 0.28);
  --ink: #eef7f2;
  --muted: #8fa89a;
  --emerald: #2ee59d;
  --emerald-dim: #1a9f6e;
  --emerald-deep: #0d3d2c;
  --cyan: #3de7ff;
  --gold: #e8c547;
  --discord: #5865f2;
  --danger: #ff3a4a;
  --warn: #ff9b3d;
  --ok: #2ee59d;
  --radius: 0.75rem;
  --radius-sm: 0.45rem;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --glow: 0 0 28px rgba(46, 229, 157, 0.18);
  --font: "Figtree", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --wrap: min(1120px, calc(100% - 2rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(46, 229, 157, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(61, 231, 255, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald); text-decoration: none; }
a:hover { color: #6ff0bd; }
:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* —— Layout —— */
.sh-wrap, .mt-wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.sh-main, .mt-main {
  padding: 1.5rem 0 3.5rem;
  display: grid;
  gap: 1.5rem;
}

/* —— Header —— */
.sh-top, .mt-top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 9, 0.82);
  border-bottom: 1px solid var(--line);
}
.sh-bar, .mt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.65rem 0;
}
.sh-brand, .mt-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
  white-space: nowrap;
}
.sh-brand span, .mt-brand span { color: var(--emerald); }
.sh-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none !important;
  flex: 0 1 auto;
}
.sh-logo {
  display: block;
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 999px;
  box-shadow:
    0 0 0 2px rgba(255, 200, 74, 0.55),
    0 0 18px rgba(46, 180, 255, 0.35);
  background: #000;
}
.sh-banner {
  display: block;
  width: 468px;
  max-width: min(468px, calc(100vw - 9rem));
  height: auto;
  aspect-ratio: 468 / 60;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.35rem;
}
.sh-brand-wrap--foot {
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sh-brand-wrap--foot .sh-logo {
  width: 4.25rem;
  height: 4.25rem;
}
.sh-brand-wrap--foot .sh-banner {
  max-width: min(468px, 100%);
}
.mt-foot__brand { margin-bottom: 0.55rem; }
.mt-foot__brand a { text-decoration: none; }
@media (max-width: 720px) {
  .sh-logo {
    width: 2.75rem;
    height: 2.75rem;
  }
  .sh-banner {
    max-width: min(468px, calc(100vw - 7.5rem));
  }
}

/* legacy brand classes kept for safety */
.sh-brand--img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex: 0 1 auto;
  min-width: 0;
}
.sh-brand--img img {
  display: block;
  width: 468px;
  max-width: min(468px, 100%);
  height: auto;
  aspect-ratio: 468 / 60;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.35rem;
}
.sh-nav, .mt-nav {
  display: none;
}
.sh-nav-desk {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.sh-nav-desk a {
  color: var(--ink);
  opacity: 0.78;
  font-weight: 600;
  font-size: 0.9rem;
}
.sh-nav-desk a:hover,
.sh-nav-desk a[aria-current="page"] {
  opacity: 1;
  color: var(--emerald);
}
.sh-nav a, .mt-nav a {
  color: var(--ink);
  opacity: 0.9;
  font-weight: 600;
  font-size: 1rem;
}
.sh-nav a:hover, .sh-nav a[aria-current="page"],
.mt-nav a:hover, .mt-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--emerald);
}
.sh-nav-group {
  display: grid;
  gap: 0.35rem;
}
.sh-nav-group a { font-size: 0.95rem; }
.sh-nav-muted { opacity: 0.55 !important; font-size: 0.9rem !important; }
.sh-nav-admin {
  color: var(--danger) !important;
  opacity: 1 !important;
  font-weight: 800 !important;
  text-shadow: 0 0 8px rgba(255, 58, 74, 0.55);
}
.sh-nav-panel {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(46, 229, 157, 0.28);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(46, 229, 157, 0.1), transparent 55%),
    rgba(6, 12, 10, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.sh-nav-panel__label {
  margin: 0.45rem 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
}
.sh-nav-panel__label:first-child { margin-top: 0; }
.sh-nav-panel > a,
.sh-nav-panel .sh-nav-group a,
.sh-nav-panel .sh-discord,
.sh-nav-panel .sh-balance {
  display: flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}
.sh-nav-panel > a:hover,
.sh-nav-panel .sh-nav-group a:hover,
.sh-nav-panel > a[aria-current="page"] {
  border-color: rgba(46, 229, 157, 0.35);
  background: rgba(46, 229, 157, 0.08);
}
.sh-balance, .mt-balance {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(46, 229, 157, 0.12), rgba(46, 229, 157, 0.04));
  color: var(--emerald);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: var(--glow);
}
.sh-balance:hover, .mt-balance:hover { color: #6ff0bd; }
.sh-discord, .btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--discord);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.sh-discord:hover, .btn-discord:hover { filter: brightness(1.08); color: #fff !important; }

.mt-menu-btn {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  border: 1px solid rgba(46, 229, 157, 0.35);
  background: rgba(46, 229, 157, 0.08);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.85rem 0.5rem 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.mt-menu-btn__bars {
  position: relative;
  width: 1.1rem;
  height: 0.85rem;
  display: inline-block;
}
.mt-menu-btn__bars::before,
.mt-menu-btn__bars::after,
.mt-menu-btn__bars {
  background: var(--emerald);
}
.mt-menu-btn__bars::before,
.mt-menu-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--emerald);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.mt-menu-btn__bars::before { top: 0; box-shadow: 0 0.32rem 0 var(--emerald); }
.mt-menu-btn__bars::after { bottom: 0; }
.mt-menu-btn__label { font-size: 0.88rem; }
.sh-bar.is-open .mt-menu-btn {
  border-color: var(--emerald);
  background: rgba(46, 229, 157, 0.16);
}
.sh-bar.is-open .mt-menu-btn__bars::before {
  top: 0.32rem;
  box-shadow: none;
  transform: rotate(45deg);
}
.sh-bar.is-open .mt-menu-btn__bars::after {
  bottom: auto;
  top: 0.32rem;
  transform: rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, border-color 0.18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-cyan, .btn-primary {
  background: linear-gradient(180deg, #3af0a8, var(--emerald-dim));
  color: #04140e !important;
  box-shadow: 0 8px 24px rgba(46, 229, 157, 0.25);
}
.btn-cyan:hover, .btn-primary:hover { box-shadow: 0 10px 30px rgba(46, 229, 157, 0.38); color: #04140e !important; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink) !important;
}
.btn-ghost:hover { background: rgba(46, 229, 157, 0.08); color: var(--emerald) !important; }
.sh-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }

/* —— Surfaces —— */
.sh-panel, .mt-panel {
  background: linear-gradient(180deg, rgba(21, 30, 27, 0.92), rgba(12, 18, 16, 0.96));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.sh-hero, .mt-hero-block {
  padding: 0.5rem 0 0.25rem;
}
.sh-hero h1, .mt-hero-block h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}
.sh-hero p, .mt-hero-block p {
  color: var(--muted);
  max-width: 42rem;
  margin: 0;
  font-size: 1.05rem;
}
.sh-muted, .mt-muted { color: var(--muted); }
.sh-note { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.sh-note a { font-weight: 700; }
.sh-warn {
  color: #ffd0a8;
  background: rgba(255, 155, 61, 0.1);
  border: 1px solid rgba(255, 155, 61, 0.28);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.sh-ok {
  color: #b8ffe0;
  background: rgba(46, 229, 157, 0.1);
  border: 1px solid rgba(46, 229, 157, 0.28);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
}
.sh-badge, .mt-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04140e;
  background: linear-gradient(110deg, var(--emerald), #6ff0bd);
}
.sh-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

/* —— Product grid / cards —— */
.sh-grid, .mt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.sh-card, .mt-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background:
    linear-gradient(165deg, rgba(24, 36, 32, 0.95), rgba(10, 16, 14, 0.98));
  border: 1px solid rgba(46, 229, 157, 0.14);
  border-radius: 1.05rem;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.sh-card:hover, .mt-card:hover {
  border-color: rgba(46, 229, 157, 0.42);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(46, 229, 157, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(46, 229, 157, 0.12);
}
.sh-card h2, .mt-card h2, .mt-card h3 {
  font-family: var(--display);
  font-size: 1.22rem;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.mt-card h3 a {
  color: inherit;
  text-decoration: none;
}
.mt-card h3 a:hover { color: var(--emerald); }
.sh-card .tag, .mt-card .tag {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sh-card .sum, .mt-card .sum { display: none; }
.sh-card__shot, .mt-card__shot {
  position: relative;
  display: block;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #050807;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sh-card__shot img, .mt-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s var(--ease);
}
.sh-card:hover .sh-card__shot img, .mt-card:hover .mt-card__shot img { transform: scale(1.045); }
.mt-card__shot-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(80% 70% at 50% 40%, rgba(46, 229, 157, 0.18), transparent 60%),
    #070b09;
}
.mt-card__chip {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 5.5rem);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04140e;
  background: linear-gradient(110deg, #ffe08a, #ffc84a 42%, #2ee59d);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 200, 74, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mt-card__ver {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(4, 10, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.mt-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1rem;
}
.mt-card__actions {
  margin-top: 0.15rem;
}
.mt-card__actions .btn {
  flex: 1;
  justify-content: center;
  min-height: 2.45rem;
  font-size: 0.88rem;
}
.mt-deal--card {
  margin-top: 0.15rem;
}
.mt-deal--card.is-sale {
  padding: 0.55rem 0.7rem 0.5rem;
  border-radius: 0.7rem;
}
.mt-deal--card .mt-deal__best {
  font-size: 0.62rem;
  padding: 0.14rem 0.45rem;
}
.mt-deal--card .mt-deal__now {
  font-size: 1.35rem;
}
.mt-deal--card .mt-deal__was {
  font-size: 0.9rem;
}
.mt-deal--card .mt-deal__hint { display: none; }
.mt-rating-inline--card {
  margin: 0 !important;
  font-size: 0.82rem;
}
.mt-card .sh-feats,
.mt-card .mt-feats { display: none; }
.sh-feats, .mt-feats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}
.sh-feats li, .mt-feats li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.sh-feats li::before, .mt-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(46, 229, 157, 0.5);
}

/* —— Floating livechat bubble —— */
.mt-cb {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  font-family: var(--body, inherit);
}
.mt-cb__fab {
  position: relative;
  width: 3.65rem;
  height: 3.65rem;
  border: 0;
  border-radius: 1.35rem 1.35rem 0.45rem 1.35rem;
  cursor: pointer;
  color: #04140e;
  background:
    radial-gradient(120% 100% at 20% 15%, #b8ffe0 0%, transparent 45%),
    linear-gradient(145deg, #ffe08a 0%, #2ee59d 55%, #1bbf82 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(46, 229, 157, 0.35);
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease, ease), box-shadow 0.2s ease;
  animation: mtCbFloat 4.5s ease-in-out infinite;
}
.mt-cb__fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(46, 229, 157, 0.5);
}
.mt-cb__fab:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}
.mt-cb__fab-icon {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}
.mt-cb__fab-wave {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(46, 229, 157, 0.55);
  animation: mtCbRipple 2.4s ease-out infinite;
  pointer-events: none;
}
.mt-cb__fab-wave--2 { animation-delay: 0.8s; }
.mt-cb.is-open .mt-cb__fab {
  animation: none;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #1a2420, #0c1411);
  color: var(--emerald);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.mt-cb.is-open .mt-cb__fab-wave { display: none; }
.mt-cb.has-ping .mt-cb__fab {
  animation: mtCbPop 0.7s ease;
}
.mt-cb__badge {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #ff4d4d;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(255, 60, 60, 0.45);
}
.mt-cb__panel {
  position: absolute;
  right: 0;
  bottom: calc(3.65rem + 0.75rem);
  width: min(34rem, calc(100vw - 1.5rem));
  height: min(34rem, calc(100svh - 6.5rem));
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(46, 229, 157, 0.28);
  background:
    linear-gradient(165deg, rgba(22, 34, 30, 0.98), rgba(7, 12, 10, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(46, 229, 157, 0.12);
  transform-origin: bottom right;
  animation: mtCbIn 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.mt-cb__panel[hidden] { display: none !important; }
.mt-cb__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(46, 229, 157, 0.06);
}
.mt-cb__head-text { display: grid; gap: 0.1rem; }
.mt-cb__head strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.mt-cb__head span {
  color: var(--muted);
  font-size: 0.78rem;
}
.mt-cb__close {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.25);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.mt-cb__close:hover { border-color: rgba(46, 229, 157, 0.4); color: var(--emerald); }
.mt-cb__body {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 10.25rem;
}
.mt-cb__log {
  overflow: auto;
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.mt-cb__members {
  min-height: 0;
  overflow: auto;
  padding: 0.65rem 0.45rem 0.75rem;
  background: rgba(0, 0, 0, 0.22);
}
.mt-cb__members-label {
  margin: 0 0.35rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.mt-cb__members-group {
  margin: 0.55rem 0.35rem 0.25rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9a93;
}
.mt-cb__members-empty {
  margin: 0.75rem 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.mt-cb__member {
  width: 100%;
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.4rem;
  align-items: center;
  padding: 0.28rem 0.35rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.mt-cb__member:hover,
.mt-cb__member:focus-visible {
  background: rgba(46, 229, 157, 0.1);
  outline: none;
}
.mt-cb__member-av {
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
}
.mt-cb__member-av img,
.mt-cb__member-av .av-empty {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  object-fit: cover;
}
.mt-cb__member-av .av-empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep, #0a2a1c);
  color: var(--emerald);
  font-size: 0.68rem;
  font-weight: 800;
}
.mt-cb__dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #23a55a;
  border: 2px solid #0a100e;
  box-shadow: 0 0 0 1px rgba(35, 165, 90, 0.35);
}
.mt-cb__dot.is-off {
  background: #747f8d;
  box-shadow: none;
}
.mt-cb__member.is-offline {
  opacity: 0.72;
}
.mt-cb__member.is-offline .mt-cb__member-name {
  color: #9aa8a1;
}
.mt-cb__member.is-offline.is-admin .mt-cb__member-name {
  color: #6bb89a;
}
.mt-cb__member-meta {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.3rem;
}
.mt-cb__member-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #d7e4de;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.mt-cb__member.is-admin .mt-cb__member-name { color: var(--emerald); }

/* Emerald badge */
.mt-em {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: #2ee59d;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1;
  vertical-align: middle;
}
.mt-em__gem {
  width: 0.85rem;
  height: 0.85rem;
  display: block;
  filter: drop-shadow(0 0 4px rgba(46, 229, 157, 0.45));
}
.mt-em__n { color: #3af0a8; letter-spacing: -0.02em; }
.mt-em--hop .mt-em__gem {
  animation: mtEmHop 1.6s ease-in-out infinite;
}
@keyframes mtEmHop {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-1px); }
}

.mt-cb__msg {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.5rem;
  align-items: start;
}
.mt-cb__msg.is-new {
  animation: mtCbMsg 0.25s ease;
}
.mt-cb__avbtn {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  line-height: 0;
}
.mt-cb__avbtn:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}
.mt-cb__msg img,
.mt-cb__msg .av-empty {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}
.mt-cb__msg .av-empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep, #0a2a1c);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 800;
}
.mt-cb__bubble {
  padding: 0.5rem 0.7rem;
  border-radius: 0.85rem 0.85rem 0.85rem 0.35rem;
  background: rgba(16, 24, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.mt-cb__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  align-items: center;
  margin-bottom: 0.15rem;
}
.mt-cb__name {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.mt-cb__name:hover strong { text-decoration: underline; }
.mt-cb__meta strong { font-size: 0.82rem; color: var(--emerald); }
.mt-cb__meta time { font-size: 0.68rem; color: var(--muted); margin-left: auto; }
.mt-cb__del {
  border: none;
  background: transparent;
  color: #ff8a75;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.05rem 0.3rem;
  font-family: inherit;
}
.mt-cb__bubble p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}
.mt-cb__empty {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 2rem 0.75rem;
  margin: 0;
}
.mt-cb__foot {
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}
.mt-cb__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}
.mt-cb__form input {
  min-height: 2.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0f18;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
}
.mt-cb__form input:focus {
  outline: none;
  border-color: rgba(46, 229, 157, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 229, 157, 0.12);
}
.mt-cb__form .btn { min-height: 2.5rem; padding: 0 0.9rem; }
.mt-cb__login {
  display: flex;
  justify-content: center;
  width: 100%;
}
.mt-cb__err {
  color: #ff8a75;
  font-size: 0.78rem;
  margin: 0.4rem 0 0;
  display: none;
}
.mt-cb__err.show { display: block; }

/* Discord-style profile popover */
.mt-cb__profile {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}
.mt-cb__profile[hidden] { display: none !important; }
.mt-cb__profile-card {
  position: relative;
  width: min(100%, 17.5rem);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(46, 229, 157, 0.35);
  background: linear-gradient(180deg, #121a17 0%, #0a100e 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(46, 229, 157, 0.12);
  animation: mtCbIn 0.22s ease;
}
.mt-cb__profile-card--load {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}
.mt-cb__profile-banner {
  height: 3.5rem;
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(46, 229, 157, 0.45), transparent 55%),
    linear-gradient(110deg, #0d3d2c, #1a9f6e 55%, #0a2a1c);
}
.mt-cb__profile-x {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.mt-cb__profile-top {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.65rem;
  padding: 0 0.9rem 0.75rem;
  margin-top: -1.5rem;
  align-items: end;
}
.mt-cb__profile-av,
.mt-cb__profile-top .av-empty {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0a100e;
  box-shadow: 0 0 0 2px rgba(46, 229, 157, 0.35);
}
.mt-cb__profile-top .av-empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep);
  color: var(--emerald);
  font-size: 1.1rem;
  font-weight: 800;
}
.mt-cb__profile-id {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
  padding-bottom: 0.15rem;
}
.mt-cb__profile-id strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.mt-cb__profile-id > span {
  font-size: 0.75rem;
  color: var(--muted);
}
.mt-cb__profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.2rem;
}
.mt-cb__role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9bb0a6;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}
.mt-cb__profile-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0 0.9rem 0.9rem;
}
.mt-cb__profile-stats div {
  display: grid;
  gap: 0.15rem;
  padding: 0.45rem 0.35rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.mt-cb__profile-stats span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mt-cb__profile-stats strong {
  font-size: 0.85rem;
}
.mt-cb__profile-stats strong.is-em { color: #3af0a8; }
.mt-cb__profile-hint {
  margin: 0;
  padding: 0 0.9rem 0.9rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}

@keyframes mtCbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes mtCbRipple {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes mtCbPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
@keyframes mtCbIn {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes mtCbMsg {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .mt-cb__fab,
  .mt-cb__fab-wave,
  .mt-cb__panel,
  .mt-cb__msg,
  .mt-em--hop .mt-em__gem,
  .mt-cb__profile-card { animation: none; }
}
@media (max-width: 520px) {
  .mt-cb__panel {
    width: calc(100vw - 1.25rem);
    height: min(78svh, 34rem);
  }
  .mt-cb__body {
    grid-template-columns: 1fr 8.5rem;
  }
}

/* legacy page chat (hidden — replaced by bubble) */
.chat { display: none !important; }
.sh-price, .mt-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.sh-price strong, .mt-price strong {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--ink);
}
.sh-price s, .mt-price s { color: var(--muted); font-size: 0.9rem; }

/* Sale / Best Price deal */
.mt-deal {
  position: relative;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.mt-deal.is-sale {
  padding: 0.75rem 0.85rem 0.7rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(46, 229, 157, 0.45);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(46, 229, 157, 0.18), transparent 55%),
    radial-gradient(90% 80% at 100% 100%, rgba(255, 200, 74, 0.1), transparent 50%),
    rgba(4, 14, 10, 0.72);
  box-shadow:
    0 0 0 1px rgba(46, 229, 157, 0.08) inset,
    0 0 28px rgba(46, 229, 157, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
}
.mt-deal.is-sale::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: skewX(-18deg);
  animation: mtDealShine 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes mtDealShine {
  0% { left: -40%; opacity: 0; }
  20% { opacity: 1; }
  55% { left: 110%; opacity: 0.2; }
  100% { left: 110%; opacity: 0; }
}
.mt-deal__badges,
.mt-deal__row,
.mt-deal__hint { position: relative; z-index: 1; }
.mt-deal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.mt-deal__best {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #04140e;
  background: linear-gradient(110deg, #ffe08a, #ffc84a 45%, #2ee59d);
  box-shadow: 0 0 16px rgba(255, 200, 74, 0.45);
  animation: mtDealPulse 2.4s ease-in-out infinite;
}
@keyframes mtDealPulse {
  0%, 100% { filter: brightness(1); box-shadow: 0 0 14px rgba(255, 200, 74, 0.4); }
  50% { filter: brightness(1.08); box-shadow: 0 0 22px rgba(46, 229, 157, 0.55); }
}
.mt-deal__off {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffb4b4;
  background: rgba(255, 70, 70, 0.14);
  border: 1px solid rgba(255, 90, 90, 0.35);
}
.mt-deal__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.75rem;
}
.mt-deal__was {
  color: var(--muted);
  font-size: 1rem;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 100, 100, 0.75);
  opacity: 0.9;
}
.mt-deal__now {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #9affd4;
  text-shadow: 0 0 18px rgba(46, 229, 157, 0.45);
}
.mt-deal--detail .mt-deal__now {
  font-size: clamp(1.9rem, 4vw, 2.35rem);
}
.mt-deal--detail.is-sale { padding: 0.95rem 1rem; }
.mt-deal__hint {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(154, 255, 212, 0.85);
}
@media (prefers-reduced-motion: reduce) {
  .mt-deal.is-sale::before,
  .mt-deal__best { animation: none; }
}

/* —— Marketplace toolbar —— */
.mt-toolbar {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: rgba(16, 24, 22, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mt-toolbar--cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 1.1rem;
}
.mt-search { display: none; }
.mt-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.mt-cat {
  flex: 0 0 auto;
  border: 1px solid rgba(46, 229, 157, 0.22);
  background: rgba(7, 14, 11, 0.65);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.mt-cat:hover {
  color: var(--ink);
  border-color: rgba(46, 229, 157, 0.45);
  transform: translateY(-1px);
}
.mt-cat.is-active {
  color: #04140e;
  background: linear-gradient(110deg, var(--emerald), #6ff0bd);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(46, 229, 157, 0.28);
}

/* —— Homepage sections —— */
.mt-section { display: grid; gap: 1rem; }
.mt-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}
.mt-section__head--brand {
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
}
.mt-section__logo {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(255, 200, 74, 0.45),
    0 0 22px rgba(46, 180, 255, 0.28);
  background: #000;
  flex: 0 0 auto;
}
.mt-section__head h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.mt-section__head p { margin: 0.25rem 0 0; color: var(--muted); max-width: 36rem; }

.mt-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* ~2073/758 ≈ 2.735 — Banner bleibt scharf, Logo mittig */
  height: clamp(210px, 36.55vw, 760px);
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  background: #050807;
  isolation: isolate;
}
.mt-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: high-quality;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.mt-hero picture {
  position: absolute;
  inset: 0;
  display: block;
}
.mt-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 9, 0.08) 0%, rgba(7, 11, 9, 0.05) 45%, rgba(7, 11, 9, 0.72) 100%);
  pointer-events: none;
}
.mt-hero__cta {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(0.85rem, 2.5vw, 1.75rem);
}
.mt-live-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0 0;
  max-width: 100%;
  overflow: hidden;
}
.mt-live-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}
.mt-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 229, 157, 0.28);
  background: rgba(46, 229, 157, 0.08);
}
.mt-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(46, 229, 157, 0.55);
  animation: mt-pulse 2s infinite;
}
@keyframes mt-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 229, 157, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(46, 229, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 229, 157, 0); }
}
.mt-live strong { font-size: 0.92rem; }
.mt-live span { color: var(--muted); font-size: 0.78rem; }
.online-people {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}
.online-stack {
  display: flex;
  align-items: center;
  padding-left: 0.35rem;
}
.online-person {
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: -0.4rem;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--emerald-deep);
  overflow: hidden;
  flex: 0 0 auto;
}
.online-person.is-admin {
  box-shadow: 0 0 0 1.5px #ff2a2a;
}
.online-person img,
.online-person .av-empty {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.online-person .av-empty {
  display: grid;
  place-items: center;
  color: var(--emerald);
  font-size: 0.62rem;
  font-weight: 800;
}
.online-more {
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.online-empty { font-size: 0.78rem; color: var(--muted); margin: 0; }

.mt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  counter-reset: step;
}
.mt-step {
  position: relative;
  padding: 1.1rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.mt-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.65rem;
  border-radius: 0.35rem;
  background: var(--emerald-deep);
  color: var(--emerald);
  font-weight: 800;
  font-size: 0.82rem;
  border: 1px solid var(--line-strong);
}
.mt-step strong { display: block; margin-bottom: 0.25rem; }
.mt-step span { color: var(--muted); font-size: 0.88rem; }

.mt-farm {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 0.2rem);
  border: 1px solid rgba(46, 229, 157, 0.35);
  background:
    linear-gradient(135deg, rgba(46, 229, 157, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(21, 30, 27, 0.95), rgba(10, 14, 12, 0.98));
  box-shadow:
    0 0 0 1px rgba(46, 229, 157, 0.08),
    0 0 28px rgba(46, 229, 157, 0.16),
    var(--shadow);
}
.mt-farm__eyebrow {
  display: inline-flex;
  margin: 0 0 0.55rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(46, 229, 157, 0.1);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mt-farm h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}
.mt-farm__lead {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 34rem;
}
.mt-farm__points {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.mt-farm__points li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.mt-farm__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(46, 229, 157, 0.5);
}
.mt-farm__setups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.mt-farm__setups-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.15rem;
}
.mt-farm__chip {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(46, 229, 157, 0.1);
  color: var(--emerald) !important;
  font-weight: 800;
  font-size: 0.82rem;
}
.mt-farm__chip:hover {
  background: var(--emerald);
  color: #04140e !important;
}
.mt-farm__visual {
  display: grid;
  gap: 0.55rem;
  outline: none;
}
.mt-farm__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(46, 229, 157, 0.4);
  background: #050807;
  box-shadow:
    0 0 18px rgba(46, 229, 157, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.4);
  isolation: isolate;
}
.mt-farm__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(46, 229, 157, 0.22), transparent 80%);
  mix-blend-mode: screen;
}
.mt-farm__stage.is-fx-left::after,
.mt-farm__stage.is-fx-right::after {
  animation: mtFarmSweep 0.55s ease-out;
}
.mt-farm__stage.is-fx-left::after {
  animation-name: mtFarmSweepLeft;
}
.mt-farm__stage.is-fx-right::after {
  animation-name: mtFarmSweepRight;
}
@keyframes mtFarmSweepRight {
  0% { opacity: 0; transform: translateX(-35%) skewX(-8deg); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(35%) skewX(-8deg); }
}
@keyframes mtFarmSweepLeft {
  0% { opacity: 0; transform: translateX(35%) skewX(8deg); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-35%) skewX(8deg); }
}
.mt-farm__fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(46, 229, 157, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(4, 20, 14, 0.15), transparent 40%, rgba(4, 20, 14, 0.35));
}
.mt-farm__fx.is-flash {
  animation: mtFarmFlash 0.5s ease-out;
}
@keyframes mtFarmFlash {
  0% { opacity: 0.85; }
  100% { opacity: 0; }
}
.mt-farm__shot {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0) scale(1.04);
  filter: blur(0) brightness(1);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.48s ease,
    visibility 0s linear 0.48s;
  will-change: transform, opacity, filter;
}
.mt-farm__shot.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: translateX(0) scale(1);
  filter: blur(0) brightness(1);
  transition-delay: 0s;
  animation: mtFarmKen 7.5s ease-in-out alternate infinite;
}
.mt-farm__shot.is-prep {
  transition: none !important;
  visibility: visible;
  opacity: 0;
  z-index: 2;
}
.mt-farm__shot.is-enter-right { transform: translateX(18%) scale(1.08); filter: blur(4px) brightness(1.15); }
.mt-farm__shot.is-enter-left { transform: translateX(-18%) scale(1.08); filter: blur(4px) brightness(1.15); }
.mt-farm__shot.is-leave-left {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transform: translateX(-14%) scale(0.96);
  filter: blur(3px) brightness(0.7);
  transition-delay: 0s;
}
.mt-farm__shot.is-leave-right {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transform: translateX(14%) scale(0.96);
  filter: blur(3px) brightness(0.7);
  transition-delay: 0s;
}
@keyframes mtFarmKen {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}
.mt-farm__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.mt-farm__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 229, 157, 0.55);
  border-radius: 999px;
  background: rgba(4, 14, 10, 0.62);
  color: var(--emerald);
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 0 rgba(46, 229, 157, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}
.mt-farm__nav--prev { left: 0.65rem; }
.mt-farm__nav--next { right: 0.65rem; }
.mt-farm__stage:hover .mt-farm__nav,
.mt-farm__visual:focus-within .mt-farm__nav,
.mt-farm__nav:focus-visible {
  opacity: 1;
}
.mt-farm__nav:hover {
  background: rgba(46, 229, 157, 0.92);
  color: #04140e;
  border-color: #9affd4;
  box-shadow:
    0 0 22px rgba(46, 229, 157, 0.55),
    0 8px 22px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%) scale(1.08);
}
.mt-farm__nav:active {
  transform: translateY(-50%) scale(0.94);
}
.mt-farm__nav svg { display: block; }
@media (hover: none), (max-width: 720px) {
  .mt-farm__nav { opacity: 0.92; }
  .mt-farm__shot.is-active { animation: none; }
}
.mt-farm__thumbs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.35rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.mt-farm__thumbs::-webkit-scrollbar { display: none; width: 0; height: 0; }
.mt-farm__thumb {
  flex: 0 0 auto;
  width: 3.55rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 0.4rem;
  border: 1px solid rgba(46, 229, 157, 0.18);
  overflow: hidden;
  background: #050807;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.mt-farm__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mt-farm__thumb.is-active,
.mt-farm__thumb:hover {
  opacity: 1;
  border-color: var(--emerald);
  box-shadow: 0 0 12px rgba(46, 229, 157, 0.4);
  transform: translateY(-1px);
}

/* Custom scrubber — replaces native white scrollbar */
.mt-farm__scrub {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.1rem 0.15rem 0.05rem;
}
.mt-farm__scrub-track {
  position: relative;
  height: 0.55rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.95), rgba(14, 28, 22, 0.9));
  border: 1px solid rgba(46, 229, 157, 0.22);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(46, 229, 157, 0.08);
  cursor: pointer;
  touch-action: none;
  user-select: none;
}
.mt-farm__scrub-track::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 10px,
    rgba(46, 229, 157, 0.06) 10px,
    rgba(46, 229, 157, 0.06) 11px
  );
  pointer-events: none;
  opacity: 0.7;
}
.mt-farm__scrub-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0d3d2c, var(--emerald), #9affd4);
  box-shadow: 0 0 14px rgba(46, 229, 157, 0.45);
  pointer-events: none;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mt-farm__scrub.is-dragging .mt-farm__scrub-fill {
  transition: none;
}
.mt-farm__scrub-knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, #e8fff4, var(--emerald) 45%, var(--emerald-dim));
  box-shadow:
    0 0 0 3px rgba(4, 20, 14, 0.85),
    0 0 16px rgba(46, 229, 157, 0.65),
    0 4px 10px rgba(0, 0, 0, 0.45);
  cursor: grab;
  z-index: 2;
  transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, transform 0.2s ease;
}
.mt-farm__scrub.is-dragging .mt-farm__scrub-knob {
  transition: none;
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow:
    0 0 0 3px rgba(4, 20, 14, 0.9),
    0 0 26px rgba(46, 229, 157, 0.9),
    0 6px 14px rgba(0, 0, 0, 0.5);
}
.mt-farm__scrub-knob::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.mt-farm__scrub-track:hover .mt-farm__scrub-knob {
  box-shadow:
    0 0 0 3px rgba(4, 20, 14, 0.85),
    0 0 22px rgba(46, 229, 157, 0.8),
    0 4px 10px rgba(0, 0, 0, 0.45);
}
.mt-farm__scrub-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  min-width: 2.6rem;
  justify-content: flex-end;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--emerald);
  text-shadow: 0 0 10px rgba(46, 229, 157, 0.35);
}
.mt-farm__scrub-sep {
  color: var(--muted);
  font-weight: 500;
  margin: 0 0.05rem;
}

@media (max-width: 900px) {
  .mt-farm { grid-template-columns: 1fr; }
}

.mt-slider {
  position: relative;
  width: min(680px, 100%);
  margin-inline: auto;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(46, 229, 157, 0.45);
  background: #050807;
  box-shadow:
    0 0 0 1px rgba(46, 229, 157, 0.12),
    0 0 18px rgba(46, 229, 157, 0.28),
    0 0 42px rgba(46, 229, 157, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.45);
  animation: mt-frame-glow 3.2s ease-in-out infinite;
  isolation: isolate;
}
@keyframes mt-frame-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(46, 229, 157, 0.12),
      0 0 14px rgba(46, 229, 157, 0.22),
      0 0 32px rgba(46, 229, 157, 0.1),
      0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(46, 229, 157, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(46, 229, 157, 0.22),
      0 0 22px rgba(46, 229, 157, 0.4),
      0 0 48px rgba(61, 231, 255, 0.16),
      0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(110, 255, 200, 0.7);
  }
}
.mt-slider__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #050807;
}
.mt-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s var(--ease);
  pointer-events: none;
  z-index: 0;
  display: grid;
  place-items: center;
}
.mt-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.mt-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: none;
  pointer-events: none;
}
.mt-slider__slide.is-active img {
  transform: none;
}
.mt-slider__zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}
.mt-slider__cap {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(5, 8, 7, 0.78);
  border: 1px solid rgba(46, 229, 157, 0.25);
  box-shadow: 0 0 16px rgba(46, 229, 157, 0.12);
  backdrop-filter: blur(8px);
  color: var(--ink);
  z-index: 2;
}
.mt-slider__product {
  font-family: var(--display);
  font-size: clamp(0.98rem, 2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--emerald);
  text-shadow: 0 0 18px rgba(46, 229, 157, 0.35);
}
.mt-slider__shot {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}
.mt-slider__link {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink) !important;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(46, 229, 157, 0.12);
}
.mt-slider__link:hover {
  color: #04140e !important;
  background: var(--emerald);
  border-color: var(--emerald);
}
.mt-slider__dots {
  position: absolute;
  left: 50%;
  top: 0.75rem;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.35rem;
  pointer-events: auto;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(7, 11, 9, 0.45);
  backdrop-filter: blur(6px);
}
.mt-slider__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
.mt-slider__dot.is-active {
  width: 1.15rem;
  background: var(--emerald);
}
.mt-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.72);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.mt-slider__nav:hover {
  border-color: var(--line-strong);
  color: var(--emerald);
}
.mt-slider__nav--prev { left: 0.65rem; }
.mt-slider__nav--next { right: 0.65rem; }

/* Lightbox — fullscreen centered */
.mt-lb[hidden] { display: none !important; }
.mt-lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
}
.mt-lb__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(2, 6, 4, 0.88);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.mt-lb__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: min(96vw, 1400px);
  max-height: min(94svh, 94vh);
  pointer-events: none;
}
.mt-lb__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 1400px);
  max-height: min(86svh, 86vh);
  object-fit: contain;
  object-position: center;
  border-radius: 0.65rem;
  border: 1px solid rgba(46, 229, 157, 0.4);
  box-shadow:
    0 0 0 1px rgba(46, 229, 157, 0.12),
    0 0 28px rgba(46, 229, 157, 0.28),
    0 24px 60px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  background: #050807;
}
.mt-lb__cap {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 90vw;
  pointer-events: none;
}
.mt-lb__close {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 229, 157, 0.35);
  background: rgba(7, 11, 9, 0.92);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 16px rgba(46, 229, 157, 0.2);
}
.mt-lb__close:hover {
  color: var(--emerald);
  border-color: var(--emerald);
}
body.mt-lb-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mt-slider { animation: none; }
  .mt-slider__slide,
  .mt-slider__slide img {
    transition: none !important;
  }
}

.mt-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
}
.mt-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.mt-faq summary::-webkit-details-marker { display: none; }
.mt-faq details[open] summary { color: var(--emerald); margin-bottom: 0.45rem; }
.mt-faq p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.mt-faq a { color: var(--emerald); }

/* Setup guide */
.mt-setup {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(46, 229, 157, 0.28);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(46, 229, 157, 0.12), transparent 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(13, 61, 44, 0.45), transparent 50%),
    linear-gradient(165deg, rgba(8, 16, 13, 0.95), rgba(5, 10, 8, 0.98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), var(--glow);
}
.mt-setup__hero {
  display: grid;
  gap: 0.4rem;
  max-width: 42rem;
}
.mt-setup__eyebrow {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04140e;
  background: linear-gradient(110deg, var(--emerald), #9affd4);
}
.mt-setup__hero h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.03em;
}
.mt-setup__hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}
.mt-setup__hero strong { color: var(--ink); }
.mt-setup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.mt-setup__card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(4, 12, 9, 0.72);
  overflow: hidden;
}
.mt-setup__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--emerald), transparent);
}
.mt-setup__card--linux::before {
  background: linear-gradient(180deg, #6ff0bd, #1a9f6e);
}
.mt-setup__os {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
}
.mt-setup__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  counter-reset: setup-step;
}
.mt-setup__steps li {
  position: relative;
  padding-left: 2.35rem;
  display: grid;
  gap: 0.25rem;
  counter-increment: setup-step;
}
.mt-setup__steps li::before {
  content: counter(setup-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #04140e;
  background: linear-gradient(145deg, #3af0a8, var(--emerald-dim));
  box-shadow: 0 0 14px rgba(46, 229, 157, 0.35);
}
.mt-setup__steps strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.mt-setup__steps span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.mt-setup__code {
  display: inline-block;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.28rem 0.55rem;
  border-radius: 0.4rem;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.82rem;
  color: #b8ffe0;
  background: rgba(46, 229, 157, 0.08);
  border: 1px solid rgba(46, 229, 157, 0.28);
  box-shadow: inset 0 0 12px rgba(46, 229, 157, 0.06);
}
.mt-setup__steps .mt-setup__code + .mt-setup__code { margin-top: 0.35rem; }
.mt-setup__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.mt-setup__note {
  display: grid;
  gap: 0.3rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(46, 229, 157, 0.14);
  background: rgba(46, 229, 157, 0.04);
}
.mt-setup__note strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald);
}
.mt-setup__note span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.mt-setup__help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(88, 101, 242, 0.35);
  background:
    linear-gradient(120deg, rgba(88, 101, 242, 0.16), rgba(46, 229, 157, 0.06));
}
.mt-setup__help-label {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.mt-setup__help-text {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.mt-setup__dc {
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  .mt-setup__grid,
  .mt-setup__notes { grid-template-columns: 1fr; }
}

.badge-admin {
  position: relative;
  display: inline-block;
  padding: 0.1rem 0.45rem 0.22rem;
  border-radius: 0.28rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff5f5;
  background: linear-gradient(180deg, #ff1a1a 0%, #b30000 55%, #5c0000 100%);
  border: 1px solid #ff2a2a;
  text-shadow: 0 0 6px #ff0000, 0 0 14px #ff0033;
  box-shadow: 0 0 8px rgba(255, 0, 40, 0.75);
  animation: corpse-glow 2.4s ease-in-out infinite;
  vertical-align: middle;
}
.badge-admin::before, .badge-admin::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 3px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(180deg, #ff1a1a, #7a0000 70%, transparent);
  pointer-events: none;
  animation: blood-drip 2.8s ease-in infinite;
}
.badge-admin::before { left: 28%; height: 7px; }
.badge-admin::after { left: 62%; width: 2px; height: 5px; animation-delay: 1.1s; }
@keyframes corpse-glow {
  0%, 100% { filter: brightness(1) saturate(1.15); }
  45% { filter: brightness(1.25) saturate(1.4); }
  55% { filter: brightness(0.82) saturate(1.05); }
}
@keyframes blood-drip {
  0% { opacity: 0; transform: scaleY(0.2); }
  20% { opacity: 1; transform: scaleY(1); }
  70% { opacity: 0.85; }
  100% { opacity: 0; transform: scaleY(1.35) translateY(2px); }
}

.chat {
  display: grid;
  gap: 0.75rem;
}
.chat__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.chat__head h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 0;
}
.chat__hint { color: var(--muted); font-size: 0.82rem; margin: 0; }
.chat__log {
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.55);
}
.chat__msg {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.55rem;
  align-items: start;
}
.chat__msg img, .chat__msg .av-empty {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}
.chat__msg .av-empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 800;
}
.chat__bubble {
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}
.chat__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
  margin-bottom: 0.2rem;
}
.chat__meta strong { font-size: 0.88rem; color: var(--emerald); }
.chat__meta time { font-size: 0.72rem; color: var(--muted); margin-left: auto; }
.chat__del {
  border: none;
  background: transparent;
  color: #ff8a75;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  font-family: inherit;
}
.chat__del:hover { background: rgba(255, 58, 26, 0.12); }
.chat__bubble p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.chat__empty {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0.5rem;
  margin: 0;
}
.chat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}
.chat__form input {
  min-height: 2.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--ink);
  font: inherit;
}
.chat__err { color: #ff8a75; font-size: 0.82rem; display: none; }
.chat__err.show { display: block; }

/* —— Product detail —— */
.sh-detail__top {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 1.1rem;
  align-items: start;
}
.sh-buy { position: sticky; top: 4.5rem; display: grid; gap: 0.85rem; }
.sh-buy .price {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.sh-buy .mt-deal { margin-top: 0; }
.sh-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sh-cols h3, .sh-panel h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 1rem 0 0.5rem;
}
.sh-cols ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.sh-update-pill {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(46, 229, 157, 0.08);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.sh-update-pill strong { color: var(--emerald); }

/* Gallery */
.sh-gallery h3 { margin-top: 1.25rem; }
.sh-gallery__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
  margin-top: 0.65rem;
}
.sh-gallery__item { margin: 0; }
.sh-gallery__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #050807;
  cursor: zoom-in;
  position: relative;
}
.sh-gallery__frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sh-gallery__item figcaption {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
.sh-lb[hidden] { display: none !important; }
.sh-lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}
.sh-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}
.sh-lb__panel {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  display: grid;
  gap: 0.5rem;
}
.sh-lb__stage {
  display: grid;
  place-items: center;
  min-height: 40vh;
  background: #050807;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.sh-lb__img { max-width: 100%; max-height: 75svh; object-fit: contain; }
.sh-lb__cap, .sh-lb__counter { text-align: center; color: var(--muted); margin: 0; }
.sh-lb__close, .sh-lb__nav {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(16, 24, 22, 0.9);
  color: var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.sh-lb__close { top: -0.25rem; right: 0; width: 2.4rem; height: 2.4rem; }
.sh-lb__nav { top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; }
.sh-lb__nav--prev { left: -0.5rem; }
.sh-lb__nav--next { right: -0.5rem; }

/* —— Profile / wallet —— */
.sh-balance-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(46, 229, 157, 0.12), transparent 45%),
    var(--surface);
}
.sh-balance-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.sh-balance-big {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.2rem 0;
  letter-spacing: -0.03em;
  color: var(--emerald);
  text-shadow: 0 0 30px rgba(46, 229, 157, 0.25);
}
.sh-charge h1, .sh-sec-title {
  font-family: var(--display);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.sh-charge-lead { color: var(--muted); margin: 0 0 1rem; }
.sh-fee-box {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.35);
}
.sh-fee-title { font-weight: 800; margin: 0 0 0.35rem; }
.sh-fee-copy { color: var(--muted); font-size: 0.9rem; margin: 0 0 0.85rem; }
.sh-fee-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: end;
}
.sh-fee-row label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.sh-fee-row input {
  min-height: 2.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
}
.sh-fee-result {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(46, 229, 157, 0.08);
}
.sh-fee-label, .sh-fee-sub { font-size: 0.75rem; color: var(--muted); }
.sh-fee-result strong { font-size: 1.35rem; color: var(--emerald); }
.sh-quick-amounts { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.sh-txn { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.sh-txn li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.35);
  font-size: 0.88rem;
}
.sh-txn code { font-size: 0.78rem; color: var(--muted); }
.st { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.st-approved { color: var(--ok); }
.st-pending { color: var(--warn); }
.st-rejected { color: var(--danger); }

.sh-profile-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid var(--line);
  background: var(--surface);
}
.sh-profile-id { display: flex; gap: 0.9rem; align-items: center; }
.sh-avatar {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}
.sh-avatar--empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep);
  color: var(--emerald);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
}
.sh-profile-name {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 0.15rem 0;
  letter-spacing: -0.02em;
}
.sh-profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.sh-profile-stats div { display: grid; gap: 0.15rem; min-width: 5.5rem; }
.sh-profile-stats strong { font-size: 1.2rem; color: var(--emerald); }
.sh-profile-stats a { font-size: 0.82rem; font-weight: 700; }
.sh-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sh-subnav a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}
.sh-subnav a[aria-current="page"], .sh-subnav a:hover {
  color: #04140e;
  background: var(--emerald);
  border-color: var(--emerald);
}
.sh-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.sh-overview-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.35);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.sh-overview-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  color: inherit;
}
.sh-overview-card strong {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--emerald);
}
.sh-overview-card span:last-child { color: var(--muted); font-size: 0.86rem; }
.sh-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}
.sh-empty[hidden],
#mp-empty[hidden] {
  display: none !important;
}
.sh-lic-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.sh-lic {
  margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.35);
  overflow: hidden;
}
.sh-lic__sum {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.sh-lic__sum::-webkit-details-marker { display: none; }
.sh-lic__sum::after {
  content: "›";
  margin-left: auto;
  color: var(--muted);
  font-size: 1.1rem;
  transform: rotate(90deg);
  transition: transform 0.18s var(--ease);
}
.sh-lic[open] .sh-lic__sum::after { transform: rotate(-90deg); color: var(--emerald); }
.sh-lic__thumb {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #050807;
}
.sh-lic__thumb--empty {
  display: inline-block;
  background: var(--emerald-deep);
}
.sh-lic__sum-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.sh-lic__sum-text strong {
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-lic__sum-text small {
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-lic__sum .sh-badge { flex: 0 0 auto; }
.sh-lic__body {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}
.sh-lic__actions { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: start; }

/* Discord user suggest — compact for many users */
.sh-suggest { position: relative; display: block; }
.sh-suggest__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 40;
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  max-height: 14rem;
  overflow: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: #0a100e;
  box-shadow: var(--shadow), var(--glow);
}
.sh-suggest__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.4rem;
  cursor: pointer;
}
.sh-suggest__item:hover,
.sh-suggest__item.is-active {
  background: rgba(46, 229, 157, 0.1);
}
.sh-suggest__av {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sh-suggest__av--empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep);
  color: var(--emerald);
  font-size: 0.65rem;
  font-weight: 800;
}
.sh-suggest__text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
  flex: 1;
}
.sh-suggest__text strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-suggest__user {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}
.sh-suggest__id {
  display: block;
  margin-top: 0.12rem;
  color: var(--emerald);
  font-size: 0.68rem;
  font-weight: 600;
  word-break: break-all;
  opacity: 0.9;
}
.sh-suggest__bal {
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 0.15rem;
}

/* Admin license rows */
.sh-lic-admin-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.sh-lic-admin-list {
  display: grid;
  gap: 0.4rem;
  max-height: 28rem;
  overflow: auto;
  padding-right: 0.15rem;
}
.sh-lic-admin-row {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.35);
}
.sh-lic-admin-av {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  object-fit: cover;
}
.sh-lic-admin-av--empty {
  display: grid;
  place-items: center;
  background: var(--emerald-deep);
  color: var(--emerald);
  font-size: 0.65rem;
  font-weight: 800;
}
.sh-lic-admin-meta,
.sh-lic-admin-prod {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}
.sh-lic-admin-meta strong,
.sh-lic-admin-prod strong {
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-lic-admin-meta small,
.sh-lic-admin-prod small {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-lic-admin-meta code {
  font-size: 0.68rem;
  color: var(--emerald);
  word-break: break-all;
}
.sh-lic-admin-act { margin: 0; }

@media (max-width: 720px) {
  .sh-lic-admin-row {
    grid-template-columns: auto 1fr auto;
  }
  .sh-lic-admin-prod { grid-column: 1 / -1; padding-left: 2.35rem; }
}

/* —— Footer —— */
.sh-foot, .mt-foot {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.mt-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.25rem;
}
.mt-foot__brand {
  font-family: var(--display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.mt-foot nav { display: grid; gap: 0.35rem; }
.mt-foot nav a { color: var(--muted); font-weight: 600; }
.mt-foot nav a:hover { color: var(--emerald); }
.mt-foot__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

/* —— Admin fit —— */
.sh-nav-admin:hover { color: #ff6b75 !important; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .mt-hero { height: clamp(180px, 48vw, 420px); }
  .mt-trust, .mt-steps { grid-template-columns: 1fr 1fr; }
  .mt-slider__nav { display: none; }
  .sh-detail__top { grid-template-columns: 1fr; }
  .sh-buy { position: static; }
  .mt-foot__grid { grid-template-columns: 1fr 1fr; }
  .sh-fee-row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sh-nav-desk { display: none; }
  .mt-menu-btn { display: inline-flex; }
  .sh-nav, .mt-nav {
    display: none;
    width: 100%;
    order: 5;
    flex-basis: 100%;
    padding: 0.55rem 0 0.35rem;
  }
  .sh-bar.is-open .sh-nav,
  .mt-bar.is-open .mt-nav {
    display: block;
  }
  .sh-bar, .mt-bar {
    flex-wrap: wrap;
    align-items: center;
  }
  .sh-banner {
    max-width: min(468px, calc(100vw - 8.5rem));
  }
}
@media (max-width: 640px) {
  .mt-trust, .mt-steps, .mt-foot__grid { grid-template-columns: 1fr; }
  .sh-cols { grid-template-columns: 1fr; }
  .chat__form { grid-template-columns: 1fr; }
  .sh-lb__nav--prev { left: 0.25rem; }
  .sh-lb__nav--next { right: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Product reviews */
.mt-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.92rem;
}
.mt-rating-inline--card { margin: 0.15rem 0 0.35rem; }
.mt-rating-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(46, 229, 157, 0.28);
  background: rgba(46, 229, 157, 0.06);
  color: var(--ink) !important;
  text-decoration: none !important;
  font-size: 0.88rem;
}
.mt-rating-box:hover { border-color: var(--emerald); }
.mt-stars {
  display: inline-flex;
  gap: 0.08rem;
  letter-spacing: 0;
  line-height: 1;
}
.mt-star {
  color: rgba(143, 168, 154, 0.35);
  font-size: 1.05rem;
}
.mt-star.is-on { color: #ffc84a; text-shadow: 0 0 10px rgba(255, 200, 74, 0.35); }
.mt-star.is-half {
  background: linear-gradient(90deg, #ffc84a 50%, rgba(143, 168, 154, 0.35) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.mt-stars--sm .mt-star { font-size: 0.92rem; }
.mt-reviews {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.1rem;
}
.mt-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.mt-reviews__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
}
.mt-reviews__score {
  text-align: right;
  display: grid;
  gap: 0.15rem;
  justify-items: end;
}
.mt-reviews__avg {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--emerald);
}
.mt-reviews__flash {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.55rem;
  background: rgba(46, 229, 157, 0.12);
  border: 1px solid rgba(46, 229, 157, 0.35);
  color: var(--emerald);
  font-weight: 600;
}
.mt-reviews__err {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.55rem;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.35);
  color: #ff8a8a;
}
.mt-reviews__form {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(46, 229, 157, 0.25);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(46, 229, 157, 0.08), transparent 55%),
    rgba(4, 12, 9, 0.55);
}
.mt-reviews__form-label {
  margin: 0;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.mt-stars-pick {
  display: inline-flex;
  gap: 0.2rem;
}
.mt-stars-pick__btn {
  border: none;
  background: transparent;
  padding: 0.15rem 0.2rem;
  font-size: 1.65rem;
  line-height: 1;
  color: rgba(143, 168, 154, 0.35);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.mt-stars-pick__btn.is-on { color: #ffc84a; text-shadow: 0 0 12px rgba(255, 200, 74, 0.4); }
.mt-stars-pick__btn:hover { transform: scale(1.12); }
.mt-reviews__ta-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mt-reviews__form textarea {
  width: 100%;
  resize: vertical;
  min-height: 6rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.55rem;
  border: 1px solid var(--line);
  background: rgba(5, 10, 8, 0.85);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}
.mt-reviews__form textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(46, 229, 157, 0.15);
}
.mt-reviews__form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.mt-reviews__gate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border: 1px dashed var(--line);
  color: var(--muted);
}
.mt-reviews__list { display: grid; gap: 0.75rem; }
.mt-reviews__empty { margin: 0; padding: 0.5rem 0; }
.mt-review {
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(4, 12, 9, 0.45);
  display: grid;
  gap: 0.55rem;
}
.mt-review__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}
.mt-review__av {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(46, 229, 157, 0.25);
}
.mt-review__av--empty {
  display: grid;
  place-items: center;
  background: rgba(46, 229, 157, 0.12);
  color: var(--emerald);
  font-weight: 800;
}
.mt-review__meta {
  display: grid;
  gap: 0.15rem;
}
.mt-review__meta strong { font-size: 0.95rem; }
.mt-review__date {
  font-size: 0.78rem;
  color: var(--muted);
}
.mt-review__text {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
  font-size: 0.95rem;
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  .mt-review__top { grid-template-columns: auto 1fr; }
  .mt-review__date { grid-column: 2; }
}

.mt-review__side {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  align-content: start;
}
.mt-review__del { margin: 0; }
.mt-review__del-btn {
  border: 1px solid rgba(255, 90, 90, 0.35);
  background: rgba(255, 60, 60, 0.08);
  color: #ff8a8a;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 0.35rem;
  cursor: pointer;
}
.mt-review__del-btn:hover {
  background: rgba(255, 60, 60, 0.2);
  border-color: #ff6b6b;
  color: #ffb4b4;
}

.mt-reviews__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mt-reviews__fields input {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(5, 10, 8, 0.85);
  color: var(--ink);
  font: inherit;
}
.mt-reviews__fields input:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(46, 229, 157, 0.15);
}
.mt-reviews__ta-label span {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  opacity: 0.85;
}
.mt-review__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.mt-review__chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 229, 157, 0.3);
  background: rgba(46, 229, 157, 0.08);
  color: var(--ink) !important;
  text-decoration: none !important;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.mt-review__chip:hover {
  border-color: var(--emerald);
  background: rgba(46, 229, 157, 0.16);
  transform: translateY(-1px);
}
.mt-review__chip span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
}
.mt-review__chip strong {
  font-size: 0.88rem;
  font-weight: 700;
}
.mt-review__chip--dc {
  border-color: rgba(88, 101, 242, 0.4);
  background: rgba(88, 101, 242, 0.12);
}
.mt-review__chip--dc span { color: #9aa3ff; }
.mt-review__chip--dc:hover {
  border-color: #7289da;
  background: rgba(88, 101, 242, 0.22);
}
@media (max-width: 720px) {
  .mt-reviews__fields { grid-template-columns: 1fr; }
}

/* Admin pricing */
.sh-price-admin {
  display: grid;
  gap: 1rem;
}
.sh-price-card__head {
  display: grid;
  grid-template-columns: 1fr minmax(12rem, 16rem);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
.sh-price-card__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.sh-price-form__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.sh-price-form__check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 600;
}
.sh-price-form__check input { width: auto; }
.sh-price-form__hint { margin: 0.35rem 0 0.75rem; }
@media (max-width: 900px) {
  .sh-price-card__head,
  .sh-price-form__grid { grid-template-columns: 1fr; }
}

/* Admin forms */
.sh-form { display: grid; gap: 0.85rem; }
.sh-form label {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}
.sh-form input,
.sh-form select,
.sh-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0f18;
  color: var(--ink);
  font: inherit;
}
.sh-form textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.45;
}
.sh-form input[type="file"] {
  padding: 0.55rem;
  font-size: 0.85rem;
}
.sh-select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0f18;
  color: var(--ink);
  font: inherit;
}
.sh-donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 800px) {
  .sh-donate-grid { grid-template-columns: 1fr; }
}

/* Update publish UI */
.sh-update-hero { max-width: 640px; }
.sh-update-form__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
}
.sh-update-target {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(46, 229, 157, 0.28);
  background: rgba(46, 229, 157, 0.07);
  font-size: 0.9rem;
  color: var(--ink);
}
.sh-update-target code {
  color: var(--emerald);
  font-weight: 700;
}
.sh-update-file {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}
.sh-update-file__title {
  color: var(--ink);
  font-weight: 700;
}
.sh-update-file__hint {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.sh-update-status {
  display: grid;
  gap: 1rem;
}
.sh-update-status__card {
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(7, 11, 9, 0.35);
}
.sh-update-status__card header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.sh-update-status__card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
}
.sh-update-status__card header code {
  font-size: 0.78rem;
  color: var(--muted);
}
.sh-update-status__now {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.45rem;
}
.sh-update-status__log {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.45;
  color: var(--ink);
}
.sh-update-pill-mini {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 0, 0.3);
  background: rgba(255, 199, 0, 0.1);
  color: #ffd56a;
  font-size: 0.75rem;
  font-weight: 700;
}
.sh-update-history {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 0.45rem;
}
.sh-update-history li {
  font-size: 0.86rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: baseline;
}
.sh-update-history code {
  font-size: 0.75rem;
  color: var(--emerald);
}
@media (max-width: 700px) {
  .sh-update-form__grid { grid-template-columns: 1fr; }
}

/* —— Emerald Rewards tip + shop —— */
.sh-em-bal {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.55rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: #3af0a8;
  background: rgba(46, 229, 157, 0.1);
  border: 1px solid rgba(46, 229, 157, 0.28);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.sh-em-bal:hover {
  background: rgba(46, 229, 157, 0.18);
  border-color: rgba(46, 229, 157, 0.5);
  color: #9affd4;
}

.mt-em-tip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  margin: 0 0 1.15rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(46, 229, 157, 0.35);
  background:
    linear-gradient(120deg, rgba(13, 61, 44, 0.55), rgba(10, 16, 14, 0.9) 45%, rgba(26, 159, 110, 0.18));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 12px 36px rgba(0, 0, 0, 0.35);
}
.mt-em-tip__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(154, 255, 212, 0.14) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: mtEmShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mtEmShine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.mt-em-tip__gem {
  width: 2.4rem;
  height: 2.4rem;
  color: #2ee59d;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 10px rgba(46, 229, 157, 0.55));
}
.mt-em-tip__gem svg { width: 1.65rem; height: 1.65rem; }
.mt-em-tip__text { position: relative; min-width: 0; }
.mt-em-tip__text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.mt-em-tip__text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}
.mt-em-tip__text em {
  font-style: normal;
  color: #3af0a8;
  font-weight: 800;
}
.mt-em-tip__cta {
  position: relative;
  white-space: nowrap;
  padding: 0.55rem 0.9rem;
  border-radius: 0.7rem;
  font-weight: 800;
  font-size: 0.82rem;
  color: #04140e;
  background: linear-gradient(145deg, #b8ffe0, #2ee59d 55%, #1bbf82);
  box-shadow: 0 8px 20px rgba(46, 229, 157, 0.25);
  text-decoration: none;
}
.mt-em-tip__cta:hover { filter: brightness(1.06); }

.mt-em--lg .mt-em__gem { width: 1.6rem; height: 1.6rem; }

.mt-em-hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 1.25rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(46, 229, 157, 0.3);
  background: linear-gradient(160deg, #0f1c17, #070b0a 70%);
}
.mt-em-hero__orb {
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -3rem;
  top: -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 229, 157, 0.35), transparent 70%);
  animation: mtEmOrb 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mtEmOrb {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}
.mt-em-hero__copy { position: relative; max-width: 36rem; }
.mt-em-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3af0a8;
}
.mt-em-hero h1 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}
.mt-em-hero p { margin: 0; color: var(--muted); line-height: 1.5; }
.mt-em-hero p .is-em,
.mt-em-hero strong.is-em { color: #3af0a8; }
.mt-em-hero__bal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(46, 229, 157, 0.08);
  border: 1px solid rgba(46, 229, 157, 0.22);
  width: fit-content;
}
.mt-em-hero__bal strong {
  display: block;
  font-size: 1.45rem;
  color: #3af0a8;
  line-height: 1.1;
}
.mt-em-hero__bal span { font-size: 0.78rem; color: var(--muted); }

.mt-em-rewards {
  display: grid;
  gap: 0.85rem;
}
.mt-em-reward {
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.mt-em-reward.is-owned { opacity: 0.72; }
.mt-em-reward__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.mt-em-reward__top h3 { margin: 0; font-size: 1.05rem; }
.mt-em-reward__cost {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  color: #3af0a8;
  font-size: 1.05rem;
}
.mt-em-reward__cost .mt-em__gem { width: 1rem; height: 1rem; }

.mt-buy-ways {
  display: grid;
  gap: 0.75rem;
}
.mt-buy-way {
  margin: 0;
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.mt-buy-way--em {
  border-color: rgba(46, 229, 157, 0.35);
  background: linear-gradient(145deg, rgba(13, 61, 44, 0.35), rgba(0, 0, 0, 0.25));
}
.mt-buy-way__label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.mt-buy-way__price {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.mt-buy-way__price.is-em {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #3af0a8;
}
.mt-buy-way__price .mt-em__gem { width: 1.15rem; height: 1.15rem; }

@media (max-width: 640px) {
  .mt-em-tip {
    grid-template-columns: auto 1fr;
  }
  .mt-em-tip__cta {
    grid-column: 1 / -1;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mt-em-tip__shine,
  .mt-em-hero__orb,
  .mt-em-tip__gem { animation: none; }
}


