@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #05080a;
  --bg2: #0b1214;
  --bg3: #101a1d;
  --glass: rgba(12, 22, 24, 0.72);
  --glass-border: rgba(0, 255, 200, 0.12);
  --cyan: #00ffc8;
  --cyan-2: #00d4a8;
  --cyan-dim: rgba(0, 255, 200, 0.18);
  --cyan-glow: rgba(0, 255, 200, 0.45);
  --violet: #7c5cff;
  --text: #f2fbf8;
  --muted: #8a9a96;
  --danger: #ff4d6d;
  --ok: #00ffa0;
  --discord: #5865f2;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Outfit', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* scrollbar tema (loja + checkout + modais) */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 200, 0.35) rgba(0, 0, 0, 0.35);
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(5, 10, 12, 0.9);
  border-left: 1px solid rgba(0, 255, 200, 0.06);
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 255, 200, 0.45), rgba(0, 180, 150, 0.28));
  border-radius: 999px;
  border: 2px solid rgba(5, 10, 12, 0.9);
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.15);
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 255, 200, 0.7), rgba(0, 220, 180, 0.4));
}
*::-webkit-scrollbar-corner {
  background: rgba(5, 10, 12, 0.9);
}
/*
 * ANTI-FLASH F5 (permanente — todas as páginas)
 * head deve: classList.add('hs-page-booting') ANTES do body
 * JS no fim: remove booting + add hs-page-ready
 */
html.hs-page-booting body,
html.hs-orders-booting body {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
html.hs-page-ready body {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 0.12s ease;
}
/* fallback se JS falhar: mostra em 4s (não trava o site) */
html.hs-page-booting:not(.hs-page-ready) body,
html.hs-orders-booting:not(.hs-page-ready) body {
  animation: hs-boot-show 0s linear 4s forwards;
}
@keyframes hs-boot-show {
  to {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}
.hs-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: left, top;
  image-rendering: auto;
  filter: drop-shadow(0 0 6px rgba(0, 255, 200, 0.45));
}
.hs-cursor img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 255, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(124, 92, 255, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(0, 180, 255, 0.06), transparent 50%),
    var(--bg);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 255, 200, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 200, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(5, 8, 10, 0.75);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
}
.site-header::after {
  content: none;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header-compact {
  padding: 12px 0;
  position: sticky;
}
.site-header-compact .nav {
  margin: 0;
  width: 100%;
  justify-content: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: var(--text) !important;
  flex-shrink: 0;
}
.brand-lockup img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 255, 200, 0.4);
}
.brand-lockup span {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.brand-lockup .dot { color: var(--cyan); }

.nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  margin: 0 0 0 auto;
  flex: 0 1 auto;
  width: max-content;
  max-width: 100%;
  padding: 3px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}
.nav a {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  transition: .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.nav a:hover {
  color: var(--text);
  background: rgba(0, 255, 200, 0.08);
  border-color: transparent;
}
.nav a i { font-size: 11px; opacity: 0.85; }
/* Discord / social — mais afastado dos links (Feedback etc.) */
.nav .btn {
  padding: 5px 11px;
  font-size: 12px;
  min-width: auto;
  margin-left: 10px;
}
.nav .btn + .btn {
  margin-left: 4px;
}
.nav .btn-sm { padding: 5px 10px; }

/* ========== HERO ========== */
.hero {
  text-align: center;
  padding: 72px 20px 40px;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(720px, 95vw);
  height: 420px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 255, 200, 0.16), transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(124, 92, 255, 0.1), transparent 45%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
  animation: hero-breathe 8s ease-in-out infinite;
}
@keyframes hero-breathe {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.hero-orb {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 28px;
}
.hero-orb::before,
.hero-orb::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 200, 0.25);
  animation: orb-spin 12s linear infinite;
}
.hero-orb::after {
  inset: -22px;
  border-color: rgba(124, 92, 255, 0.18);
  border-style: dashed;
  animation-duration: 20s;
  animation-direction: reverse;
}
@keyframes orb-spin {
  to { transform: rotate(360deg); }
}
.hero-avatar {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  margin: 0;
  box-shadow:
    0 0 0 3px rgba(0, 255, 200, 0.35),
    0 0 50px var(--cyan-dim),
    0 0 100px rgba(0, 255, 200, 0.12);
  border: 4px solid rgba(5, 8, 10, 0.95);
  object-fit: cover;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 200, 0.25);
  background: rgba(0, 255, 200, 0.06);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-kicker i { font-size: 11px; }
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-shadow: none;
  margin: 0 0 16px;
  line-height: 1.08;
}
.hero h1 .welcome { color: var(--muted); font-weight: 500; display: block; font-size: 0.42em; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.hero h1 .brand-grad {
  background: linear-gradient(120deg, #fff 10%, var(--cyan) 50%, #7c5cff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 400;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .22s ease;
  text-decoration: none;
  color: #041210;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-2) 50%, #00a87a 100%);
  box-shadow: 0 4px 20px var(--cyan-dim), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
  color: #041210;
}
.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(0, 255, 200, 0.08);
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-discord {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  box-shadow: 0 4px 18px rgba(88, 101, 242, 0.35);
}
.btn-discord:hover { color: #fff; box-shadow: 0 8px 24px rgba(88, 101, 242, 0.5); }
.btn-telegram {
  background: linear-gradient(135deg, #229ed9, #0d8ecf);
  color: #fff;
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.3);
}
.btn-telegram:hover { color: #fff; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-danger {
  background: linear-gradient(135deg, #ff4d6d, #c9184a);
  color: #fff;
}

/* ========== REGION ========== */
.region-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 4px 16px 8px;
  font-size: 12px;
  color: var(--muted);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--cyan);
  font-weight: 500;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.hs-region-icon {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.hs-region-icon.hs-region-flag {
  width: 20px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.region-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 64px 0;
  position: relative;
}
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  text-align: center;
}
.section-title img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan-dim);
}
.section-title h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}
.section-title h2,
.section-title span {
  background: linear-gradient(90deg, #fff 0%, var(--cyan) 55%, #7dffd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-title::after {
  content: '';
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* ========== GRIDS / CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
}
.services-grid.cats-compact {
  grid-template-columns: repeat(auto-fit, minmax(150px, 160px));
  gap: 14px;
  justify-content: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: var(--glass);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px var(--cyan-dim);
  border-color: rgba(0, 255, 200, 0.28);
}
.service-card .thumb {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  display: block;
  background: #0a1012;
}
.service-card .thumb-empty {
  display: block;
  min-height: 8px;
  aspect-ratio: auto;
  background: transparent;
  border: none;
}
.run-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  z-index: 2;
  opacity: 1;
  border: none;
}
.run-badge.run-online {
  background: #00c47a;
  color: #041210;
}
.run-badge.run-updating {
  background: #ffc800;
  color: #1a1400;
}
.run-badge.run-detected {
  background: #ff4d6d;
  color: #fff;
}
.run-badge.run-offline {
  background: #5a6570;
  color: #e8eef2;
}
.run-badge-inline {
  position: static;
  top: auto;
  left: auto;
  flex-shrink: 0;
}
.service-detail-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.service-detail-meta .badge { margin: 0; }

/* Suporte (meus pedidos / pedido) */
.pay-binance.is-selected {
  border-color: rgba(240, 185, 11, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(240, 185, 11, 0.25);
}
.pay-binance .pay-card-icon {
  color: #f0b90b;
}
.binance-gift-wrap.hidden { display: none !important; }
.binance-gift-info {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(240, 185, 11, 0.3);
  background: rgba(240, 185, 11, 0.08);
  color: #e8d9a0;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.binance-gift-info.hidden { display: none !important; }
.binance-gift-info-text {
  white-space: pre-wrap;
  word-break: break-word;
}
.binance-gift-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(240, 185, 11, 0.3);
  background: rgba(240, 185, 11, 0.06);
}
.btn-support {
  background: linear-gradient(135deg, #ff4d6d, #c9184a) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.35);
  font-weight: 700;
}
.btn-support:hover {
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(255, 77, 109, 0.5);
}
.support-panel {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 77, 109, 0.25);
  background: rgba(255, 77, 109, 0.06);
  display: none;
}
.support-panel.open { display: block; }
.support-panel p {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--muted);
}
.support-panel .contact-actions {
  margin: 0;
  justify-content: stretch;
}
.support-panel .contact-actions .btn {
  flex: 1;
  min-width: 100px;
}
.service-card .body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  min-height: 0;
}
.service-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  text-align: center;
  color: #fff;
  letter-spacing: -0.01em;
}
.service-card .desc {
  color: var(--muted);
  font-size: 13px;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  min-height: 0;
}
/* sem descrição: mantém espaço e empurra preço/botões pra baixo */
.service-card .desc:empty,
.service-card .desc.desc-empty {
  display: block;
  flex: 1 1 auto;
  min-height: 12px;
  visibility: hidden;
  -webkit-line-clamp: unset;
  overflow: hidden;
}
.service-card .card-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.desc-md.md-body {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.desc-md .md-p { margin: 0 0 4px; }
.desc-md .md-p:last-child { margin-bottom: 0; }
.desc-md a { color: var(--cyan); }
.desc-md .feat-arrow { color: var(--cyan); margin-right: 4px; }
.page-sub.desc-md {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Category search (home + admin) */
.cat-search-wrap {
  margin: 0 auto 22px;
  max-width: 480px;
  width: 100%;
}
.cat-search-wrap-admin {
  max-width: 420px;
  margin: 0 0 16px;
}
.cat-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(8, 18, 20, 0.95), rgba(5, 12, 14, 0.98));
  border: 1px solid rgba(0, 255, 200, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 255, 200, 0.06) inset,
    0 8px 28px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(0, 255, 200, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-search:focus-within {
  border-color: rgba(0, 255, 200, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 255, 200, 0.12) inset,
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(0, 255, 200, 0.18);
}
.cat-search-icon {
  color: var(--cyan);
  font-size: 14px;
  opacity: 0.85;
  flex-shrink: 0;
}
.cat-search-input {
  flex: 1;
  min-width: 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  color: #e8fff9 !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 4px !important;
  border-radius: 0 !important;
}
.cat-search-input::placeholder {
  color: #5a7a72 !important;
  font-weight: 400 !important;
}
.cat-search-input::-webkit-search-cancel-button {
  display: none;
}
.cat-search-clear {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 255, 200, 0.08);
  color: var(--cyan);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cat-search-clear:hover {
  background: rgba(0, 255, 200, 0.18);
}
.cat-search-clear[hidden] {
  display: none !important;
}

/* Compact categories */
.cat-card {
  text-decoration: none !important;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.cat-card .thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0a1012;
  /* evita linha/subpixel entre foto e body no hover */
  line-height: 0;
  font-size: 0;
  border-bottom: none;
  z-index: 0;
}
.cat-card .thumb {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
  /* scale sem vazar borda / linha */
  transform-origin: center center;
  backface-visibility: hidden;
}
.cat-card .cat-thumb-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #0e181a 0%, #0a1012 100%);
  border: none;
  color: rgba(0, 255, 200, 0.45);
  font-size: 2.4rem;
  line-height: 1;
}
.cat-card:hover .cat-thumb-ph {
  color: rgba(0, 255, 200, 0.7);
}
/* overlay suave — sem borda dura embaixo da foto */
.cat-card .thumb-wrap::after {
  content: none;
}
.cat-card:hover .thumb {
  transform: scale(1.06);
}
.cat-card .body {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 14px;
  gap: 8px;
  position: relative;
  z-index: 1;
  background: var(--glass);
  flex: 1 1 auto;
  min-height: 0;
}
.cat-card h3 {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.cat-card .desc { display: none; }
.cat-card .price-row {
  margin-top: 0;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cat-card .price {
  font-size: 12px !important;
  text-align: center;
  text-shadow: none;
}
.cat-card .cat-offers {
  font-size: 11px;
  line-height: 1.35;
  min-height: 1.35em;
  color: var(--cyan);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.cat-card .cat-offers.is-empty {
  visibility: hidden;
  opacity: 0;
  color: transparent;
  user-select: none;
}
.cat-card .badge { display: none !important; }
.cat-card .btn {
  padding: 8px 10px;
  font-size: 11px;
  width: 100%;
  border-radius: 999px;
  margin-top: auto;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 200, 0.35);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.features li {
  padding: 4px 0;
  position: relative;
}
.features .feat-arrow,
.md-body .feat-arrow {
  color: var(--cyan);
  margin-right: 4px;
}
.features li.feature-md .md-p { margin: 0; display: inline; }
.features li.feature-md .md-body,
.features li.feature-md { color: #c5d4d0; font-size: 14px; line-height: 1.55; }
.features li.feature-md a { color: var(--cyan); }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px var(--cyan-dim);
}
.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 48px 20px;
  grid-column: 1 / -1;
  font-size: 15px;
}

/* About */
.about-card {
  padding: 32px 36px;
  background: var(--glass);
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.about-card p { font-size: 16px; line-height: 1.75; color: #c5d4d0; margin: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-item {
  text-align: center;
  padding: 24px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: .2s;
}
.feature-item:hover {
  border-color: rgba(0, 255, 200, 0.25);
  transform: translateY(-3px);
}
.feature-item img { margin: 0 auto 12px; height: 44px; width: auto; }
.feature-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
}
.feature-item p { color: var(--muted); font-size: 13px; margin: 0; line-height: 1.55; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 16px 0 24px;
}

/* Feedback */
.feedback-hero {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto 28px;
  padding: 28px;
  background: var(--glass);
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
@media (max-width: 640px) {
  .feedback-hero { grid-template-columns: 1fr; text-align: center; }
  .feedback-cta .contact-actions { justify-content: center; }
}
.feedback-score { text-align: center; }
.feedback-avg {
  font-size: 52px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px var(--cyan-dim);
}
.feedback-stars-big {
  font-size: 20px;
  letter-spacing: 3px;
  margin: 10px 0;
  color: #ffc800;
}
.feedback-count { color: var(--muted); font-size: 13px; }
.feedback-cta p { color: var(--muted); margin: 0 0 14px; line-height: 1.6; font-size: 14px; }
.feedback-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.feedback-tab {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: .15s;
}
.feedback-tab:hover { border-color: rgba(0,255,200,.35); color: #fff; }
.feedback-tab.active {
  background: rgba(0, 255, 200, 0.1);
  border-color: rgba(0, 255, 200, 0.4);
  color: var(--cyan);
  font-weight: 600;
  box-shadow: 0 0 16px var(--cyan-dim);
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
.feedback-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 18px;
  transition: .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.feedback-card:hover {
  border-color: rgba(0, 255, 200, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.feedback-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.feedback-user { font-weight: 650; color: #fff; font-size: 14px; }
.feedback-service { font-size: 12px; color: var(--cyan); margin-top: 2px; }
.feedback-stars { color: #ffc800; letter-spacing: 1px; font-size: 13px; white-space: nowrap; }
.feedback-comment { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; }
.feedback-meta {
  font-size: 11px;
  color: #5a6a66;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.star-picker {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.star-picker button {
  background: transparent;
  border: 1px solid rgba(255,200,0,.25);
  border-radius: 8px;
  color: #666;
  font-size: 18px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: .15s;
  line-height: 1;
  font-family: inherit;
}
.star-picker button:hover,
.star-picker button.active {
  color: #ffc800;
  border-color: #ffc800;
  background: rgba(255,200,0,.1);
}
.feedback-form {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.feedback-form .fb-comment {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: #e8eeec;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
  resize: vertical;
  outline: none;
}
.feedback-form .fb-comment:focus {
  border-color: rgba(0, 255, 200, 0.4);
}
.feedback-form .fb-comment::placeholder {
  color: #667874;
}

footer {
  background: transparent;
  text-align: center;
  padding: 32px 20px 48px;
  color: #5a6a66;
  font-size: 13px;
  margin-top: 24px;
  border-top: 1px solid var(--glass-border);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
  font-size: 13px;
}
.footer-links a {
  color: var(--muted);
  font-weight: 500;
}
.footer-links a:hover,
.footer-links a:hover span {
  color: var(--cyan);
}
/* separators only — not spans inside links (policy/terms use data-legal-lang) */
.footer-links > span { color: #444; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
  font-size: 12px;
  color: #5a6a66;
}
.footer-contact a {
  color: var(--muted);
  font-weight: 500;
}
.footer-contact a:hover,
.footer-contact a:hover span {
  color: var(--cyan);
}
.footer-contact > span { color: #5a6a66; }
.accept-terms-row a {
  color: var(--cyan);
  text-decoration: underline;
}
.legal-page {
  max-width: 820px;
}
.legal-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 24px 22px;
  color: #c5d4d0;
  font-size: 14px;
  line-height: 1.7;
}
.legal-content p { margin: 0 0 14px; }
.legal-list {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}
.legal-list li { margin: 8px 0; }
.legal-meta {
  color: #7a8a86;
  font-size: 12px;
}

/* ========== MODAL ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 8, 0.78);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: linear-gradient(165deg, #0e181a 0%, #0a1012 100%);
  border: 1px solid rgba(0, 255, 200, 0.18);
  border-radius: 20px;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 40px var(--cyan-dim);
  padding: 24px;
  position: relative;
}
#checkoutModal .modal {
  width: min(560px, 100%);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 900px);
  border: 1px solid rgba(0, 255, 200, 0.22);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 255, 200, 0.12), transparent 55%),
    linear-gradient(165deg, #0f1a1c 0%, #080e10 55%, #060a0b 100%);
}
#checkoutModal .modal > .close {
  z-index: 6;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}
#modalContent {
  overflow-y: auto;
  max-height: min(92vh, 900px);
  padding: 0;
}

/* —— Checkout futurista —— */
.co-shell { padding: 0 0 20px; }
.co-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-height: 132px;
  padding: 22px 20px 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 255, 200, 0.1);
}
.co-hero-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 200, 0.28);
  box-shadow: 0 0 24px rgba(0, 255, 200, 0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: #0a1012;
}
.co-hero-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 28px;
  background: rgba(0, 255, 200, 0.06);
}
.co-hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 140%;
  background: radial-gradient(circle at 30% 40%, rgba(0, 255, 200, 0.16), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(124, 92, 255, 0.12), transparent 50%);
  pointer-events: none;
}
.co-hero-body { position: relative; z-index: 1; min-width: 0; flex: 1; }
.co-kicker {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}
.co-title {
  margin: 0 0 6px !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  color: #fff !important;
  line-height: 1.2;
}
.co-cat {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #9fd9c8;
  background: rgba(0, 255, 200, 0.08);
  border: 1px solid rgba(0, 255, 200, 0.18);
}
.co-price-panel {
  margin: 16px 18px 8px;
  padding: 16px 14px 12px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 255, 200, 0.08), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(0, 255, 200, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 28px rgba(0, 255, 200, 0.08);
}
.co-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a9089;
  margin-bottom: 2px;
}
.co-shell .modal-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #7dffd4, #00ffc8 45%, #00d4a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(0, 255, 200, 0.25));
}
.co-shell .checkout-price-detail { margin: 6px 0 0; min-height: 0; }
.co-form { padding: 8px 18px 0; display: flex; flex-direction: column; gap: 12px; }
.co-section {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.28);
  padding: 14px;
}
.co-section-h {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.co-step {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--cyan);
  background: rgba(0, 255, 200, 0.08);
  border: 1px solid rgba(0, 255, 200, 0.2);
}
.co-section-h h4 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: #e8f6f1;
  letter-spacing: -0.01em;
}
.co-section-h p {
  margin: 0;
  font-size: 11px;
  color: #6f807c;
}
.co-section-terms {
  background: rgba(0, 255, 200, 0.03);
  border-style: dashed;
  border-color: rgba(0, 255, 200, 0.16);
}
.co-shell .form-group {
  margin-bottom: 12px;
}
.co-shell .form-group:last-child {
  margin-bottom: 0;
}
.co-shell .form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a9089;
}
.co-field-hint {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #7a9a94;
}
.co-ps-username .co-field-hint {
  color: #8ab4ae;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 255, 200, 0.05);
  border: 1px solid rgba(0, 255, 200, 0.1);
}
.co-discord-id .co-field-hint,
.co-field-hint.co-discord-hint {
  color: #a8b4d4;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.2);
}
.co-shell .req,
.co-shell .form-group label .req,
.co-shell .co-section-h .req {
  color: #ff6b88 !important;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
}
.co-shell .form-group input[type="text"],
.co-shell .form-group input[type="email"],
.co-shell .form-group input[type="number"],
.co-shell .form-group input[type="password"],
.co-shell .form-group input:not([type]),
.co-shell .form-group select,
.co-shell .form-group textarea,
.co-shell .coupon-row input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.32));
  color: #f2fffb;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.co-shell .form-group input::placeholder,
.co-shell .coupon-row input::placeholder {
  color: #556862;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.co-shell .form-group input:hover,
.co-shell .coupon-row input:hover {
  border-color: rgba(0, 255, 200, 0.2);
  background: linear-gradient(180deg, rgba(0, 8, 8, 0.55), rgba(0, 0, 0, 0.4));
}
.co-shell .form-group input:focus,
.co-shell .coupon-row input:focus {
  border-color: rgba(0, 255, 200, 0.5);
  background: rgba(0, 10, 10, 0.65);
  box-shadow:
    0 0 0 3px rgba(0, 255, 200, 0.1),
    0 0 20px rgba(0, 255, 200, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.co-shell .coupon-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  padding: 6px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 200, 0.14);
  background: rgba(0, 255, 200, 0.03);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.co-shell .coupon-row input {
  flex: 1;
  min-width: 0;
  border-radius: 11px !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600 !important;
}
.co-shell .coupon-row #applyCouponBtn,
.co-shell .coupon-row .btn {
  flex-shrink: 0;
  margin: 0;
  border-radius: 11px !important;
  padding: 0 16px !important;
  min-height: 46px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 255, 200, 0.35) !important;
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.14), rgba(0, 255, 200, 0.05)) !important;
  color: var(--cyan) !important;
  box-shadow: none !important;
}
.co-shell .coupon-row #applyCouponBtn:hover,
.co-shell .coupon-row .btn:hover {
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.22), rgba(0, 255, 200, 0.08)) !important;
  border-color: rgba(0, 255, 200, 0.55) !important;
  color: #b8fff0 !important;
}
.co-shell .coupon-msg {
  margin-top: 10px;
  min-height: 0;
  font-size: 12px;
  font-weight: 600;
}
.co-shell .coupon-msg.ok {
  color: var(--ok);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 255, 160, 0.08);
  border: 1px solid rgba(0, 255, 160, 0.2);
}
.co-shell .coupon-msg.err {
  color: #ff8fa3;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.2);
}
/* checkbox custom + termos: mesmo layout (quadrado | texto, centrado) */
.co-check-field {
  margin-bottom: 12px;
}
.co-check {
  font-size: 13px;
  color: #c5d4d0;
}
.co-shell .co-check.co-check-box,
.co-check.co-check-box {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.28));
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.45;
  /* anula .form-group label { display:block; uppercase… } se algum pai herdar */
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #c5d4d0 !important;
}
.co-check.co-check-box:hover {
  border-color: rgba(0, 255, 200, 0.22);
}
.co-shell .co-check.co-check-box input[type='checkbox'],
.co-check.co-check-box input[type='checkbox'] {
  margin: 0 !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  accent-color: var(--cyan);
  flex: 0 0 18px;
  align-self: center;
  cursor: pointer;
  position: relative;
  top: 0;
}
.co-shell .co-check.co-check-box > span,
.co-check.co-check-box > span {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  line-height: 1.45;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: inherit;
}
.co-check .req,
.co-check-box .req,
.accept-terms-row .req {
  color: var(--danger, #ff4d6d) !important;
  font-weight: 700;
}
.accept-terms-row {
  font-size: 13px;
  line-height: 1.45;
  color: #ccc;
}
.co-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 28px rgba(0, 255, 200, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.co-submit:disabled { opacity: 0.55; cursor: not-allowed; }

/* pay methods grid */
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pay-card {
  display: block;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.pay-card input { position: absolute; opacity: 0; pointer-events: none; }
.pay-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s, transform 0.15s;
  min-height: 64px;
}
.pay-card:hover .pay-card-inner {
  border-color: rgba(0, 255, 200, 0.28);
  background: rgba(0, 255, 200, 0.04);
}
.pay-card.is-selected .pay-card-inner {
  border-color: rgba(0, 255, 200, 0.55);
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.12), rgba(0, 255, 200, 0.04));
  box-shadow: 0 0 0 1px rgba(0, 255, 200, 0.15), 0 0 22px rgba(0, 255, 200, 0.12);
}
.pay-card.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pay-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(0, 255, 200, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 200, 0.18);
}
.pay-card.pay-pix .pay-card-icon {
  background: rgba(0, 200, 150, 0.15);
  color: #00e6a8;
  border-color: rgba(0, 230, 168, 0.25);
}
.pay-card.pay-stripe .pay-card-icon {
  background: rgba(99, 91, 255, 0.15);
  color: #a8a0ff;
  border-color: rgba(124, 92, 255, 0.3);
}
.pay-card.pay-paypal .pay-card-icon {
  background: rgba(0, 112, 186, 0.18);
  color: #5bb8ff;
  border-color: rgba(0, 112, 186, 0.35);
}
.pay-card.pay-crypto .pay-card-icon {
  background: rgba(247, 147, 26, 0.15);
  color: #f7b955;
  border-color: rgba(247, 147, 26, 0.3);
}
.pay-card.pay-mp .pay-card-icon {
  background: rgba(0, 158, 227, 0.15);
  color: #5ec8f5;
  border-color: rgba(0, 158, 227, 0.3);
}
.pay-card.pay-picpay .pay-card-icon {
  background: rgba(33, 204, 116, 0.15);
  color: #4ce08f;
  border-color: rgba(33, 204, 116, 0.3);
}
.pay-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.pay-card-text strong {
  font-size: 12.5px;
  font-weight: 700;
  color: #eef8f5;
  line-height: 1.25;
}
.pay-card-text small {
  font-size: 10.5px;
  color: #6f807c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.pay-card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  flex-shrink: 0;
  transition: 0.15s;
}
.pay-card.is-selected .pay-card-check {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #041210;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.45);
}
.co-empty-pay {
  margin: 0;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: #7a9089;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
@media (max-width: 480px) {
  .pay-grid { grid-template-columns: 1fr; }
  .co-hero { min-height: 110px; padding: 18px 14px 14px; }
  .co-form { padding: 8px 12px 0; }
  .co-price-panel { margin: 12px 12px 6px; }
}
.modal-lg { width: min(680px, 100%); }
.modal h3 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.modal .close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .close:hover { background: rgba(0,255,200,.1); color: var(--cyan); }
.modal .modal-img {
  width: 100%;
  border-radius: 12px;
  margin: 10px 0 14px;
  max-height: 200px;
  object-fit: cover;
}
.form-group { margin-bottom: 14px; text-align: left; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--danger); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group input[type="search"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 255, 200, 0.45);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.checkbox-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ddd;
  margin: 0;
}
.checkbox-row input[type='checkbox'] {
  margin: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--cyan);
  flex: 0 0 18px;
  align-self: center;
}
.modal-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
  text-align: center;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}
.alert {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 12px;
}
.co-checkout-alert {
  margin: 12px 0 0;
  width: 100%;
}
.co-checkout-alert .alert {
  margin: 0;
  text-align: left;
  word-break: break-word;
}
.alert-error {
  background: rgba(255, 77, 109, 0.1);
  color: #ff8fa3;
  border: 1px solid rgba(255, 77, 109, 0.25);
}
.alert-ok {
  background: rgba(0, 255, 160, 0.08);
  color: var(--ok);
  border: 1px solid rgba(0, 255, 160, 0.25);
}
.alert-info {
  background: rgba(0, 255, 200, 0.06);
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 200, 0.2);
}
.pix-box {
  background: #050a0b;
  border: 1px dashed rgba(0, 255, 200, 0.25);
  border-radius: 12px;
  padding: 12px;
  word-break: break-all;
  font-size: 12px;
  font-family: var(--mono);
  color: #ccc;
  margin-top: 10px;
}
.pix-manual-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 200, 0.2);
  background: rgba(0, 255, 200, 0.04);
}
.pix-instructions {
  font-size: 14.5px;
  line-height: 1.55;
  color: #c5d0cc;
  margin: 12px 0 0;
  white-space: pre-line;
}
.pix-qr-img {
  display: block;
  width: min(200px, 70%);
  margin: 0 auto 12px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  border: 1px solid rgba(0, 255, 200, 0.2);
}

/* Order status */
.order-status-card {
  margin-top: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}
.order-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.status,
.order-status-head .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
/* pedido: pending amarelo · informed roxo · paid verde · failed/expired vermelho · refunded azul */
.status-pending,
.order-status-head .status-pending {
  background: rgba(255, 200, 0, 0.14);
  color: #ffc800;
  border: 1px solid rgba(255, 200, 0, 0.22);
}
.status-informed,
.order-status-head .status-informed {
  background: rgba(124, 92, 255, 0.16);
  color: #c4b5ff;
  border: 1px solid rgba(124, 92, 255, 0.28);
}
.status-paid,
.order-status-head .status-paid {
  background: rgba(0, 255, 160, 0.12);
  color: var(--ok);
  border: 1px solid rgba(0, 255, 160, 0.25);
}
.status-failed,
.status-expired,
.order-status-head .status-failed,
.order-status-head .status-expired {
  background: rgba(255, 77, 109, 0.14);
  color: #ff8fa3;
  border: 1px solid rgba(255, 77, 109, 0.28);
}
.status-refunded,
.order-status-head .status-refunded {
  background: rgba(56, 189, 248, 0.14);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.28);
}
.btn-pix-informed {
  width: 100%;
  margin-top: 12px;
  background: linear-gradient(135deg, #7c5cff, #5a3fd4) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(124, 92, 255, 0.35);
}
.btn-pix-informed:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}
.pix-thanks-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 160, 0.25);
  background: rgba(0, 255, 160, 0.06);
  text-align: center;
}
.pix-thanks-box p {
  margin: 0 0 14px;
  color: #cfe;
  font-size: 14px;
  line-height: 1.55;
}
.order-status-body { display: flex; flex-direction: column; gap: 8px; }
.order-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding-bottom: 7px;
}
.order-row span:first-child { color: var(--muted); flex-shrink: 0; }
.order-row code {
  font-size: 11px;
  font-family: var(--mono);
  word-break: break-all;
  color: var(--cyan);
  text-align: right;
}
.order-refresh-msg { font-size: 12px; margin-top: 8px; min-height: 16px; line-height: 1.4; }
.order-refresh-msg.ok { color: var(--ok); }
.order-refresh-msg.warn { color: #ffc800; }
.order-refresh-msg.err { color: #ff8fa3; }

.coupon-row { display: flex; gap: 8px; align-items: stretch; }
.coupon-row input { flex: 1; }
.coupon-msg { font-size: 12px; margin-top: 6px; min-height: 16px; }
.coupon-msg.ok { color: var(--ok); }
.coupon-msg.err { color: #ff8fa3; }
/* cupom no checkout estilizado em .co-shell .coupon-row */
.checkout-price-detail {
  text-align: center;
  margin: -8px 0 12px;
  font-size: 13px;
  min-height: 18px;
}
.price-was { text-decoration: line-through; color: #666; margin-right: 8px; }
.price-save { color: var(--ok); font-weight: 600; }

/* Plan UI */
.plan-list { display: flex; flex-direction: column; gap: 8px; }
.plan-option { display: block; cursor: pointer; margin: 0; }
.plan-option input { display: none; }
.plan-option-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.plan-option-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.plan-option-left strong {
  font-size: 13.5px;
  font-weight: 650;
  color: #eef8f5;
}
.plan-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  position: relative;
  transition: 0.15s;
}
.plan-radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--cyan);
  transform: scale(0);
  transition: transform 0.15s;
  box-shadow: 0 0 8px rgba(0, 255, 200, 0.5);
}
.plan-option:hover .plan-option-body {
  border-color: rgba(0, 255, 200, 0.22);
}
.plan-option input:checked + .plan-option-body {
  border-color: rgba(0, 255, 200, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 255, 200, 0.12), 0 0 20px rgba(0, 255, 200, 0.12);
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.1), rgba(0, 255, 200, 0.03));
}
.plan-option input:checked + .plan-option-body .plan-radio-dot {
  border-color: var(--cyan);
}
.plan-option input:checked + .plan-option-body .plan-radio-dot::after {
  transform: scale(1);
}
.plan-price {
  color: var(--cyan);
  font-weight: 800;
  font-size: 14px;
  font-family: var(--mono);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.plan-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.plan-chip {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0,255,200,.06);
  border: 1px solid rgba(0,255,200,.18);
  color: var(--cyan);
}
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.plan-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 12px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: .2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font);
}
.plan-card:hover, .plan-card.active {
  border-color: rgba(0, 255, 200, 0.45);
  box-shadow: 0 0 20px var(--cyan-dim);
  background: rgba(0, 255, 200, 0.06);
}
.plan-card-label { font-weight: 600; font-size: 13px; }
.plan-card-price { color: var(--cyan); font-size: 17px; font-weight: 700; }
.plan-card-note { font-size: 11px; color: var(--muted); }

/* Detail pages */
.site-header-compact { padding: 12px 0; }
.logged-email {
  color: var(--cyan);
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.01em;
  text-shadow: 0 0 12px var(--cyan-dim);
  word-break: break-all;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}
.back-link:hover { color: var(--cyan); }
.page-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 8px 0 10px;
  text-shadow: none;
}
.page-sub {
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 640px;
  line-height: 1.65;
  font-size: 15px;
}
.cat-header-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.cat-header-others {
  align-items: flex-start;
}
.cat-header-body {
  flex: 1;
  min-width: min(100%, 280px);
}
.cat-others-desc {
  max-width: 720px;
  margin: 10px 0 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  max-height: min(70vh, 560px);
  overflow-y: auto;
  white-space: normal;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 2px;
  align-content: start;
}
.cat-others-desc .md-body {
  display: contents;
}
.cat-others-desc .md-p {
  margin: 0;
  line-height: 1.4;
  font-size: 13px;
  min-width: 0;
  color: #c5d4d0;
}
.cat-others-desc .md-h,
.cat-others-desc .md-spacer,
.cat-others-desc .md-list,
.cat-others-desc .md-quote,
.cat-others-desc .md-pre,
.cat-others-desc .md-hr {
  grid-column: 1 / -1;
  margin: 6px 0 2px;
}
.cat-others-desc .md-p.md-full,
.cat-others-desc .md-p:first-child {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
}
.cat-others-desc .md-p.md-letter {
  grid-column: 1 / -1;
  margin: 8px 0 1px;
  font-weight: 800;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.cat-others-desc .md-flag {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
  overflow: hidden;
}
@media (max-width: 720px) {
  .cat-others-desc {
    grid-template-columns: 1fr;
    column-gap: 0;
    max-width: none;
  }
}
.cat-others-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}
.cat-others-actions .support-panel {
  width: 100%;
  max-width: 220px;
  flex-basis: 100%;
  padding: 10px 12px;
  margin-top: 8px;
  box-sizing: border-box;
}
.cat-others-actions .support-panel p {
  margin: 0 0 8px;
  font-size: 12px;
}
.cat-others-actions .support-panel .contact-actions {
  display: flex;
  margin: 0;
  width: 100%;
}
.cat-others-actions .support-panel .contact-actions .btn {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 9px 12px;
  font-size: 13px;
  justify-content: center;
}
.md-flag {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
  overflow: hidden;
}
.cat-header-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 24px var(--cyan-dim);
  border: 1px solid var(--glass-border);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 800px) {
  .service-detail { grid-template-columns: 1fr; }
}
.service-detail-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.svc-media-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-media-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.svc-media-label i {
  opacity: 0.9;
  font-size: 13px;
}
.service-detail-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow), 0 0 30px var(--cyan-dim);
  border: 1px solid var(--glass-border);
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.svc-media-placeholder {
  width: 100%;
  min-height: 220px;
  max-height: 420px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px dashed rgba(0, 255, 200, 0.22);
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0, 255, 200, 0.06), transparent 65%),
    rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.svc-media-placeholder i {
  font-size: 1.75rem;
  color: rgba(0, 255, 200, 0.35);
}
.svc-media-placeholder span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.svc-media-placeholder-video {
  aspect-ratio: 16 / 9;
  min-height: 180px;
}
.service-video {
  position: relative;
  margin-top: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 24px var(--cyan-dim);
  background: #000;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 180px;
}
.service-video iframe,
.service-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
  object-fit: contain;
}
.long-desc {
  color: var(--muted);
  line-height: 1.75;
  margin: 14px 0;
  font-size: 14px;
}
.detail-h {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 22px 0 12px;
}
.detail-features { margin-bottom: 8px; }

/* Delivery / markdown */
.delivery-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 255, 200, 0.04);
  border: 1px solid rgba(0, 255, 200, 0.15);
}
.delivery-box h4 { margin: 0 0 10px; color: var(--cyan); font-size: 14px; }
.btn-loader-fix {
  background: linear-gradient(135deg, #ff9f1c, #e85d04) !important;
  color: #111 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(255, 159, 28, 0.35);
  font-weight: 700;
}
.btn-loader-fix:hover {
  color: #111 !important;
  box-shadow: 0 6px 22px rgba(255, 159, 28, 0.5);
}
.loader-fix-panel {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 159, 28, 0.3);
  background: rgba(255, 159, 28, 0.06);
  display: none;
  max-height: 70vh;
  overflow-y: auto;
}
.loader-fix-panel.open { display: block; }
.tutorial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #d0ddd9;
  white-space: normal;
  max-height: none;
  overflow-y: visible;
}
.md-body { font-size: 14px; line-height: 1.7; color: #d0ddd9; }
.md-h { color: var(--cyan); margin: 16px 0 10px; font-weight: 700; line-height: 1.3; }
.md-h1 { font-size: 1.4rem; }
.md-h2 { font-size: 1.2rem; }
.md-h3 { font-size: 1.05rem; }
.md-p { margin: 0 0 8px; }
.md-spacer { height: 8px; }
.md-list { margin: 6px 0 12px; padding-left: 1.35rem; }
.md-list li { margin: 4px 0; }
.md-code {
  background: #050a0b;
  border: 1px solid rgba(0,255,200,.12);
  border-radius: 5px;
  padding: 1px 6px;
  font-family: var(--mono);
  font-size: 0.88em;
  color: #7dffd4;
}
.md-pre {
  background: #050a0b;
  border: 1px solid rgba(0,255,200,.12);
  border-radius: 12px;
  padding: 12px 14px;
  overflow-x: auto;
  margin: 10px 0;
}
.md-pre code {
  font-family: var(--mono);
  font-size: 12px;
  color: #c8fff0;
  white-space: pre;
}
.md-link { color: var(--cyan); text-decoration: underline; word-break: break-word; }
.md-link:hover { color: #fff; }
.md-img-link {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #050a0b;
  max-width: 100%;
}
.md-img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #000;
}
.md-img-cap {
  display: block;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
}
.md-quote {
  margin: 8px 0;
  padding: 8px 12px;
  border-left: 3px solid var(--cyan);
  background: rgba(0,255,200,.04);
  color: #aab;
}
.md-hr {
  border: 0;
  border-top: 1px solid rgba(0,255,200,.12);
  margin: 14px 0;
}
.md-spoiler {
  background: #222;
  color: transparent;
  border-radius: 4px;
  cursor: pointer;
}
.md-spoiler:hover, .md-spoiler:focus { color: #eee; background: #2a2a2a; }
.access-box {
  background: rgba(0,255,160,.06);
  border: 1px solid rgba(0,255,160,.2);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
.access-box code {
  color: var(--cyan);
  font-size: 13px;
  font-family: var(--mono);
  user-select: all;
}
.hidden { display: none !important; }

/* Lang toggle */
.hs-lang-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(0, 255, 200, 0.4);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10, 22, 20, 0.94), rgba(6, 12, 12, 0.96));
  color: #e8fff9;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 20px rgba(0,255,200,.15);
  backdrop-filter: blur(12px);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.hs-lang-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(0, 255, 200, 0.8);
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 28px rgba(0,255,200,.3);
}
.hs-lang-toggle:active { transform: scale(0.98); }
.hs-lang-toggle.pulse { animation: hs-lang-pulse .4s ease; }
@keyframes hs-lang-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.5); }
  100% { box-shadow: 0 0 0 14px rgba(0, 255, 200, 0); }
}
.hs-lang-flag {
  display: block;
  width: 18px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
  overflow: hidden;
}
.hs-lang-code {
  color: var(--cyan);
  letter-spacing: 0.06em;
  font-size: 12px;
  min-width: 1.5em;
  font-family: var(--mono);
}
.hs-lang-hint {
  color: #7a9;
  font-weight: 500;
  font-size: 11px;
  opacity: 0.9;
}
.hs-lang-toast {
  position: fixed;
  bottom: 78px;
  right: 22px;
  z-index: 9001;
  max-width: 240px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(8, 16, 16, 0.96);
  border: 1px solid rgba(0, 255, 200, 0.3);
  color: #cfe;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.hs-lang-toast.show { opacity: 1; transform: translateY(0); }

.loading {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
}
.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--cyan-dim);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .hero { padding: 40px 16px 24px; }
  .hero-orb, .hero-avatar { width: 110px; height: 110px; }
  .hero-orb::before { inset: -8px; }
  .hero-orb::after { inset: -16px; }
  .section { padding: 40px 0; }
  .nav {
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    border-radius: 14px;
    padding: 3px;
  }
  .nav a { font-size: 11.5px; padding: 5px 9px; }
  .brand-lockup span { font-size: 16px; }
  .hs-lang-toggle { bottom: 16px; right: 16px; padding: 9px 12px; }
  .hs-lang-hint { display: none; }
  .hs-lang-toast { right: 16px; bottom: 68px; }
}
