:root {
  --bg: #05060a;
  --bg-soft: #0a0d14;
  --card: rgba(13, 17, 26, 0.72);
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #e8ecf4;
  --muted: #8a93a6;
  --accent: #38bdf8;
  --accent-2: #a78bfa;
  --green: #34d399;
  --red: #f87171;
  --amber: #fbbf24;
  --radius: 14px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-grotesk: "Space Grotesk", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(56, 189, 248, 0.3); }

/* ---------- background layers ---------- */

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, transparent 40%, rgba(5, 6, 10, 0.9) 100%);
}

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(5, 6, 10, 0.55);
  border-bottom: 1px solid var(--card-border);
  transition: background 0.3s ease;
}

.header.scrolled { background: rgba(5, 6, 10, 0.85); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.brand-logo {
  width: 46px;
  height: 46px;
  color: var(--accent);
  flex-shrink: 0;
}

.linear-logo {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(-7%);
  background: linear-gradient(135deg, #2b4c9e 0%, #7c3aed 33%, #38bdf8 66%, #2b4c9e 100%);
  background-size: 300% 300%;
  animation: logoFlow 11s ease-in-out infinite;
}
@keyframes logoFlow {
  0% { background-position: 0% 50%; filter: hue-rotate(0deg); }
  33% { background-position: 50% 100%; filter: hue-rotate(12deg); }
  66% { background-position: 100% 50%; filter: hue-rotate(-12deg); }
  100% { background-position: 0% 50%; filter: hue-rotate(0deg); }
}
.brand-logo svg { width: 100%; height: 100%; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  position: relative;
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-ind {
  position: absolute;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
  transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.nav-link {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 9px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-link.active { color: var(--text); }

.actions { display: flex; align-items: center; gap: 10px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #04121c;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(56, 189, 248, 0.4); }

.product-card.phobia-card .btn-primary,
#page-product.phobia-active .pm-checkout {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.product-card.phobia-card .btn-primary:hover,
#page-product.phobia-active .pm-checkout:hover {
  box-shadow: 0 6px 28px rgba(124, 58, 237, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.07); }

.btn-discord {
  background: rgba(88, 101, 242, 0.14);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #a5b4fc;
}
.btn-discord:hover { background: rgba(88, 101, 242, 0.24); box-shadow: 0 4px 20px rgba(88, 101, 242, 0.25); }

.btn-currency {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-currency svg { width: 16px; height: 16px; }
.btn-currency:hover { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.07); }
.currency-chevron { width: 12px !important; height: 12px !important; opacity: 0.5; transition: transform 0.2s; }
.currency-wrap { position: relative; }
.currency-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 110px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 4px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.currency-wrap.open .currency-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.currency-wrap.open .currency-chevron { transform: rotate(180deg); }
.currency-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: none;
  background: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s;
}
.currency-option:hover { background: rgba(255,255,255,0.06); }
.currency-option.active { background: rgba(52,211,153,0.12); color: var(--green); }

.btn-lg { padding: 13px 26px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }
.btn-block { width: 100%; justify-content: center; padding: 13px; font-size: 14.5px; }

.btn-cart {
  position: relative;
  padding: 9px 12px;
  border-radius: 10px;
}
.btn-cart .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121c;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.5);
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-cart .cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* ---------- main / pages ---------- */

.main {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}

.page { display: none; }
.page.active { display: block; animation: pageIn 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-head { margin-bottom: 34px; }
.page-title {
  font-family: var(--font-grotesk);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.page-sub { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* ---------- hero ---------- */

.hero {
  padding: 90px 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.07);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
  font-family: var(--font-grotesk);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.grad {
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-grotesk);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- features ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 20px;
}

.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover { border-color: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 20px; height: 20px; }

.feature-card h3 { font-family: var(--font-grotesk); font-size: 15.5px; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.feature-card h3 { font-family: var(--font-grotesk); font-size: 15.5px; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ---------- category tabs ---------- */

.cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  position: relative;
  z-index: 30;
}

.cat-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 5px;
  padding: 9px 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.cat-tab:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.18); transform: translateY(-1px); }
.cat-tab.active {
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.35);
}

.cat-tab.phobia-tab {
  color: #d8b4fe;
  border-color: rgba(167, 139, 250, 0.45);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(56, 189, 248, 0.06));
  text-shadow: 0 0 14px rgba(167, 139, 250, 0.55);
  position: relative;
}
.cat-tab.phobia-tab::after {
  content: "ERA";
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 100px;
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.12);
  margin-left: 2px;
}
.cat-tab.phobia-tab:hover {
  color: #ede9fe;
  border-color: rgba(167, 139, 250, 0.75);
  box-shadow: 0 0 22px rgba(167, 139, 250, 0.3);
}
.cat-tab.phobia-tab.active {
  color: #0b0218;
  background: linear-gradient(135deg, var(--accent-2), #7c3aed);
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(167, 139, 250, 0.5);
  text-shadow: none;
}
.cat-tab.phobia-tab.active::after {
  color: #0b0218;
  border-color: rgba(11, 2, 24, 0.35);
  background: rgba(11, 2, 24, 0.12);
}

.tab-badge {
  font-size: 10px;
  opacity: 0.7;
  font-family: var(--font-mono);
}

/* category subtabs */

.cat-sub-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -4px;
  padding-top: 8px;
  width: 100%;
}
.cat-sub-tab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cat-sub-tab:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.15); }
.cat-sub-tab.active {
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.tab-caret {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.cat-tab:hover .tab-caret { transform: rotate(180deg); }

.cat-drop {
  position: relative;
}

.cat-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: rgba(10, 13, 20, 0.97);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  z-index: 40;
}
.cat-drop:hover .cat-dropdown,
.cat-drop.menu-open .cat-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cat-drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 4px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.cat-drop-item:hover { background: rgba(56, 189, 248, 0.1); color: var(--text); }
.cat-drop-item.active { color: var(--accent); }

/* ---------- products ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-imgwrap {
  position: relative;
  margin: -24px -24px 0;
  height: 170px;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}
.product-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-imgwrap img { transform: scale(1.06); }

.und-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #d1fae5;
  background: rgba(5, 6, 10, 0.55);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 5px;
  padding: 6px 11px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.und-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 1.6s infinite;
}

.product-card.has-img .product-tag { left: 12px; right: auto; z-index: 2; }

.product-card:hover { transform: translateY(-4px); border-color: rgba(56, 189, 248, 0.32); cursor: pointer; }

.product-card .view-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(5, 6, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  padding: 6px 11px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  pointer-events: none;
}
.product-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.view-btn svg { width: 12px; height: 12px; }
.view-btn:hover { border-color: rgba(56, 189, 248, 0.6); }

.product-card.has-img .view-btn { display: inline-flex; }

.product-card.premium {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(160deg, rgba(167, 139, 250, 0.09), var(--card) 55%);
}
.product-card.premium:hover { border-color: rgba(167, 139, 250, 0.65); }

.product-card.phobia-card {
  border-color: rgba(167, 139, 250, 0.55);
  background:
    radial-gradient(420px circle at 20% 0%, rgba(167, 139, 250, 0.18), transparent 60%),
    radial-gradient(420px circle at 100% 100%, rgba(56, 189, 248, 0.1), transparent 60%),
    var(--card);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.12), 0 18px 50px rgba(0, 0, 0, 0.45);
}
.product-card.phobia-card:hover {
  border-color: rgba(167, 139, 250, 0.85);
  box-shadow: 0 0 26px rgba(167, 139, 250, 0.22), 0 22px 60px rgba(0, 0, 0, 0.55);
}
.product-card.phobia-card .product-imgwrap {
  border-image: linear-gradient(90deg, rgba(167, 139, 250, 0.5), rgba(56, 189, 248, 0.5)) 1;
}
.product-card.phobia-card .product-name {
  background: linear-gradient(135deg, #e9d5ff, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-card.phobia-card .product-icon {
  background: linear-gradient(135deg, var(--accent-2), #7c3aed);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.45);
}

.phobia-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e9d5ff;
  background: rgba(10, 5, 24, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.55);
  border-radius: 5px;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.6);
  pointer-events: none;
}
.phobia-tag svg { width: 11px; height: 11px; color: var(--accent-2); }
.product-card.phobia-card .phobia-tag { left: 12px; right: auto; }

.phobia-grid {
  position: relative;
  padding: 30px;
  margin: 34px -30px 0;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(167, 139, 250, 0.22);
  background:
    radial-gradient(700px circle at 30% 0%, rgba(167, 139, 250, 0.1), transparent 55%),
    radial-gradient(700px circle at 70% 10%, rgba(56, 189, 248, 0.06), transparent 55%);
}

.product-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}
.product-card.premium .product-tag {
  color: #c4b5fd;
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.1);
}

.product-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
}
.product-card.premium .product-icon {
  background: linear-gradient(135deg, var(--accent-2), #7c3aed);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.35);
}
.product-icon svg { width: 22px; height: 22px; }

.product-name { font-family: var(--font-grotesk); font-size: 18px; font-weight: 700; }
.product-desc { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1; }
.card-more {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: #a78bfa;
  cursor: pointer;
  border-bottom: 1px dashed rgba(167, 139, 250, 0.5);
  transition: color 0.18s, border-color 0.18s;
}
.card-more:hover { color: #e9d5ff; border-bottom-color: #e9d5ff; }
.card-more.linear {
  color: #38bdf8;
  border-bottom: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 0;
}
.card-more.linear:hover {
  color: #bae6fd;
  border-bottom-color: #bae6fd;
}

.product-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.meta-chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  border: 1px solid var(--card-border);
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--card-border);
}
.product-price { font-family: var(--font-grotesk); font-size: 21px; font-weight: 700; }
.product-price span { font-family: var(--font-mono); font-size: 11px; color: var(--muted); font-weight: 400; margin-left: 4px; }

.buy-btn { padding: 9px 18px; font-size: 13px; }
.buy-btn.added { background: linear-gradient(135deg, var(--green), #10b981); box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3); }

/* ---------- status ---------- */

.status-cols {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}

.det-panel {
  position: sticky;
  top: 90px;
  background:
    radial-gradient(400px circle at 100% 0%, rgba(52, 211, 153, 0.06), transparent 55%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.det-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.det-title { font-family: var(--font-grotesk); font-size: 15.5px; font-weight: 700; }
.det-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 3px;
}
.det-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.07);
  border-radius: 4px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.det-live .live-dot { width: 6px; height: 6px; }

.det-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.05);
  border-radius: 10px;
  margin-bottom: 8px;
}
.det-score { display: flex; flex-direction: column; line-height: 1.1; }
.det-score b {
  font-family: var(--font-grotesk);
  font-size: 27px;
  font-weight: 700;
  color: #6ee7b7;
  display: flex;
  align-items: baseline;
}
.det-score b i {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: rgba(110, 231, 183, 0.55);
  margin-left: 1px;
}
.det-score-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.det-bar {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.det-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #6ee7b7);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.det-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateX(10px);
  animation: incIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.det-row:last-child { border-bottom: none; }
.det-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.det-name {
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.det-name.phobia { color: #d8b4fe; }
.det-game {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.det-state { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.det-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.08);
  border-radius: 4px;
  padding: 3px 7px;
}
.det-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: corePulse 2.2s ease-in-out infinite;
}
.det-meta {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.32);
}

.online-panel {
  max-width: 1280px;
  margin: 20px auto 0;
  background:
    radial-gradient(400px circle at 50% 0%, rgba(56, 189, 248, 0.06), transparent 55%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.online-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}
.online-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.online-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.online-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 180px;
  height: 80px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.15); }
}
.online-count {
  font-family: var(--font-grotesk);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    #fff 30%,
    #fff 70%,
    var(--accent) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: countShimmer 6s ease-in-out infinite;
}
@keyframes countShimmer {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}
.online-sub {
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.online-note {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 2px;
}
.online-wave {
  display: flex;
  gap: 2px;
  margin-top: 16px;
  height: 28px;
  align-items: flex-end;
}
.online-wave span {
  flex: 1;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.3;
  animation: waveBar 1.8s ease-in-out infinite;
}
.online-wave span:nth-child(1)  { animation-delay: 0.00s; }
.online-wave span:nth-child(2)  { animation-delay: 0.10s; }
.online-wave span:nth-child(3)  { animation-delay: 0.25s; }
.online-wave span:nth-child(4)  { animation-delay: 0.15s; }
.online-wave span:nth-child(5)  { animation-delay: 0.35s; }
.online-wave span:nth-child(6)  { animation-delay: 0.05s; }
.online-wave span:nth-child(7)  { animation-delay: 0.30s; }
.online-wave span:nth-child(8)  { animation-delay: 0.20s; }
.online-wave span:nth-child(9)  { animation-delay: 0.40s; }
.online-wave span:nth-child(10) { animation-delay: 0.12s; }
.online-wave span:nth-child(11) { animation-delay: 0.28s; }
.online-wave span:nth-child(12) { animation-delay: 0.08s; }
.online-wave span:nth-child(13) { animation-delay: 0.33s; }
.online-wave span:nth-child(14) { animation-delay: 0.18s; }
.online-wave span:nth-child(15) { animation-delay: 0.42s; }

@keyframes waveBar {
  0%, 100% { height: 3px; opacity: 0.2; }
  25% { height: 14px; opacity: 0.5; }
  50% { height: 24px; opacity: 0.75; }
  75% { height: 10px; opacity: 0.4; }
}

.status-wrap { max-width: none; margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.status-hero {
  display: flex;
  align-items: center;
  gap: 30px;
  background:
    radial-gradient(500px circle at 0% 0%, rgba(56, 189, 248, 0.07), transparent 55%),
    radial-gradient(400px circle at 100% 100%, rgba(52, 211, 153, 0.05), transparent 55%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 38px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.status-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--green) calc(var(--p, 0) * 1%), rgba(255, 255, 255, 0.06) 0);
  position: relative;
  flex-shrink: 0;
  transition: --p 0.3s;
}
.status-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg-soft);
}
.ring-core {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.8);
  animation: corePulse 2.4s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 12px rgba(52, 211, 153, 0.55); transform: scale(1); }
  50% { box-shadow: 0 0 26px rgba(52, 211, 153, 0.95); transform: scale(1.12); }
}
.ring-orbit {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(52, 211, 153, 0.35);
  animation: orbitSpin 14s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.status-hero-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.status-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: corePulse 2s ease-in-out infinite;
}
.live-label { color: var(--green); font-weight: 700; }
.live-sep { opacity: 0.4; }

.status-pill {
  font-family: var(--font-grotesk);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.status-uptime { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

.status-quick {
  margin-left: auto;
  display: flex;
  gap: 26px;
}
.q-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
.q-stat b {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-variant-numeric: tabular-nums;
}
.q-stat span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.status-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.status-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.status-card:hover::before { opacity: 1; }

.status-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.sc-id { display: flex; align-items: center; gap: 9px; min-width: 0; }
.status-card-name { font-family: var(--font-grotesk); font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sc-state {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.sc-state.up { color: #6ee7b7; background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.25); }
.sc-state.degraded { color: #fcd34d; background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.25); }
.sc-state.down { color: #fca5a5; background: rgba(248, 113, 113, 0.1); border: 1px solid rgba(248, 113, 113, 0.25); }

.s-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.s-dot.up { background: var(--green); box-shadow: 0 0 10px rgba(52, 211, 153, 0.7); animation: corePulse 2.6s ease-in-out infinite; }
.s-dot.degraded { background: var(--amber); box-shadow: 0 0 10px rgba(251, 191, 36, 0.7); }
.s-dot.down { background: var(--red); box-shadow: 0 0 10px rgba(248, 113, 113, 0.7); }

.spark {
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: 12px;
}
.spark polyline {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.status-card.in .spark polyline { stroke-dashoffset: 0; }

.up-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.up-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.up-strip {
  display: flex;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.up-strip i {
  flex: 1;
  height: 15px;
  min-width: 1px;
  border-radius: 1px;
  background: var(--green);
  opacity: 0;
  transform: scaleY(0.3);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.15s ease;
  cursor: default;
}
.status-card.in .up-strip i { opacity: 0.75; transform: scaleY(1); }
.up-strip i:hover { opacity: 1 !important; transform: scaleY(1.25); filter: brightness(1.3); }
.up-strip i.warn { background: var(--amber); }

.stat-bar-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
}
.stat-bar-meta b { color: var(--text); font-weight: 600; }
.stat-bar-meta .ms b { color: var(--accent); }
.stat-bar-meta .ms b.tick { animation: msTick 0.5s ease; }
@keyframes msTick {
  0% { color: #6ee7b7; text-shadow: 0 0 10px rgba(52, 211, 153, 0.6); }
  100% { color: var(--accent); text-shadow: none; }
}

.status-history {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 26px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.status-h { font-family: var(--font-grotesk); font-size: 15px; font-weight: 600; margin-bottom: 18px; }

.inc-timeline {
  position: relative;
  padding-left: 22px;
}
.inc-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.4), rgba(255, 255, 255, 0.06));
}
.incident {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
  animation: incIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.incident:nth-child(1) { animation-delay: 0.35s; }
.incident:nth-child(2) { animation-delay: 0.48s; }
.incident:nth-child(3) { animation-delay: 0.61s; }
@keyframes incIn { to { opacity: 1; transform: translateX(0); } }
.incident strong { font-size: 13.5px; font-weight: 600; display: block; margin-bottom: 2px; }
.inc-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.inc-dot {
  position: absolute;
  left: -22px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--card);
}
.inc-dot.resolved { background: var(--green); box-shadow: 0 0 0 4px var(--card), 0 0 10px rgba(52, 211, 153, 0.5); }
.inc-dot.monitoring { background: var(--amber); box-shadow: 0 0 0 4px var(--card), 0 0 10px rgba(251, 191, 36, 0.5); }
.inc-dot.open { background: #f87171; box-shadow: 0 0 0 4px var(--card), 0 0 10px rgba(248, 113, 113, 0.5); animation: inc-pulse 2s ease-in-out infinite; }
@keyframes inc-pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--card), 0 0 10px rgba(248, 113, 113, 0.5); } 50% { box-shadow: 0 0 0 4px var(--card), 0 0 18px rgba(248, 113, 113, 0.7); } }

/* ---------- reviews ---------- */

.reviews-summary { display: flex; justify-content: center; margin-bottom: 34px; }

.rs-hero {
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: center;
  gap: 44px;
  background:
    radial-gradient(500px circle at 0% 0%, rgba(56, 189, 248, 0.07), transparent 55%),
    radial-gradient(420px circle at 100% 100%, rgba(251, 191, 36, 0.05), transparent 55%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 40px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.rs-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.rs-num {
  font-family: var(--font-grotesk);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stars { display: flex; gap: 3px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.stars .dim { color: rgba(255, 255, 255, 0.14); }
#rs-stars svg {
  animation: starPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes starPop {
  from { opacity: 0; transform: scale(0.3) rotate(-30deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.rs-count { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.rs-count span { color: var(--text); font-weight: 600; }

.rs-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.rbar {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: incIn 0.5s ease var(--d, 0.3s) forwards;
}
.rbar-star {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  width: 26px;
  flex-shrink: 0;
}
.rbar-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.rbar-track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), #f59e0b);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.rbar-pct {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text);
  width: 42px;
  text-align: right;
  flex-shrink: 0;
}

.rs-side {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-shrink: 0;
}
.rs-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 7px 12px;
  opacity: 0;
  animation: incIn 0.5s ease forwards;
}
.rs-chip:nth-child(1) { animation-delay: 0.5s; }
.rs-chip:nth-child(2) { animation-delay: 0.62s; }
.rs-chip:nth-child(3) { animation-delay: 0.74s; }
.rs-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.rs-chip.green i { background: var(--green); box-shadow: 0 0 8px rgba(52, 211, 153, 0.7); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.review-card:hover::before { opacity: 1; }
.review-card::after {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 700;
  color: #04121c;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.review-who { min-width: 0; }
.review-name {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.v-check {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}
.review-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); }
.review-stars { margin-left: auto; display: flex; gap: 2px; color: var(--amber); flex-shrink: 0; }
.review-stars svg { width: 13px; height: 13px; }

.review-text { color: var(--muted); font-size: 13.5px; line-height: 1.7; position: relative; }

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.06);
  padding: 4px 9px;
  border-radius: 100px;
}
.review-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px rgba(52, 211, 153, 0.7);
  flex-shrink: 0;
}

.review-card.hide { display: none; }

.review-card.featured {
  grid-column: span 2;
  border-color: rgba(56, 189, 248, 0.3);
  background:
    radial-gradient(420px circle at 100% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    var(--card);
}
.review-card.featured .review-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.rv-top-chip {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.08);
  border-radius: 4px;
  padding: 3px 8px;
  z-index: 1;
}

.trust-strip {
  max-width: 980px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  opacity: 0;
  animation: heroIn 0.6s ease 0.2s forwards;
}
.t-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 18px 10px;
  border-right: 1px solid var(--card-border);
  transition: background 0.2s ease;
}
.t-stat:last-child { border-right: none; }
.t-stat:hover { background: rgba(56, 189, 248, 0.04); }
.t-stat b {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: baseline;
}
.t-stat b i {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-left: 1px;
}
.t-stat span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.rv-toolbar {
  max-width: 980px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.6s ease 0.3s forwards;
}
.rv-filters { display: flex; gap: 7px; flex-wrap: wrap; }
.rv-f {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rv-f:hover {
  color: var(--text);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
}
.rv-f.on {
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.25);
}
.rv-showing {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
}
.rv-pager {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rv-page-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.rv-page-btn svg { width: 16px; height: 16px; }
.rv-page-btn:hover {
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}
.rv-page-btn:active { transform: scale(0.92); }
.rv-page-ind {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text);
  min-width: 64px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.reviews-grid.leaving {
  opacity: 0;
  transform: translateX(-22px);
}
.reviews-grid.entering {
  animation: rvSlideIn 0.3s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}
@keyframes rvSlideIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}
.reviews-grid {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.review-card.featured-flat {
  border-color: rgba(56, 189, 248, 0.3);
  background:
    radial-gradient(420px circle at 100% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    var(--card);
}

/* ---------- dashboard ---------- */

.dash-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(500px circle at 0% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    radial-gradient(420px circle at 100% 100%, rgba(124, 58, 237, 0.06), transparent 55%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 30px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}
.dash-user { display: flex; align-items: center; gap: 16px; }
.dash-avatar {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 700;
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.35);
  overflow: hidden;
}
.dash-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dash-avatar > img {
  border-radius: inherit;
}
.dash-welcome { font-family: var(--font-grotesk); font-size: 21px; font-weight: 700; }
.dash-welcome b { color: var(--accent); }
.dash-user-meta { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.dash-plan {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.07);
  border-radius: 4px;
  padding: 3px 8px;
}
.dash-since { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); }
.dash-hero-actions { display: flex; gap: 10px; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dash-stat {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.dash-stat:hover { transform: translateY(-3px); border-color: rgba(56, 189, 248, 0.35); }
.ds-num b {
  font-family: var(--font-grotesk);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
}
.ds-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ds-ico {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.07);
}
.ds-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  background: var(--accent);
  -webkit-mask: center/contain no-repeat;
  mask: center/contain no-repeat;
}
.ds-ico.up::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2L4 14h6l-1 8 9-12h-6l1-8z" fill="black"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2L4 14h6l-1 8 9-12h-6l1-8z" fill="black"/></svg>'); }
.ds-ico.key::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2l-2 2m-7.6 7.6a5.5 5.5 0 1 1-7.8 7.8 5.5 5.5 0 0 1 7.8-7.8zm0 0L15 8m-4 4l9-9m-4 4l3 3" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2l-2 2m-7.6 7.6a5.5 5.5 0 1 1-7.8 7.8 5.5 5.5 0 0 1 7.8-7.8zm0 0L15 8m-4 4l9-9m-4 4l3 3" stroke="black" stroke-width="2" fill="none"/></svg>'); }
.ds-ico.shield::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3l7 4v5c0 4.4-3 8.2-7 9-4-.8-7-4.6-7-9V7l7-4z" fill="black"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3l7 4v5c0 4.4-3 8.2-7 9-4-.8-7-4.6-7-9V7l7-4z" fill="black"/></svg>'); }
.ds-ico.dl::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v12m0 0l-4-4m4 4l4-4M4 21h16" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v12m0 0l-4-4m4 4l4-4M4 21h16" stroke="black" stroke-width="2" fill="none"/></svg>'); }

.dash-row {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 20px;
  align-items: start;
}
.dash-row.tickets-row {
  grid-template-columns: 1fr;
}
.dash-row.tickets-row .dash-ticket-chat.full-width {
  grid-column: 1;
}
.dash-row + .dash-row { margin-top: 20px; }

.dash-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.dc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.dc-head h3 { font-family: var(--font-grotesk); font-size: 15.5px; font-weight: 700; }
.dc-chip {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 3px 8px;
}
.dc-chip.green { color: #6ee7b7; border-color: rgba(52, 211, 153, 0.3); background: rgba(52, 211, 153, 0.07); }
.dc-link {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
}
.dc-link:hover { text-decoration: underline; }
.dc-link.danger { color: #fca5a5; }

.dash-licenses #lic-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.dash-licenses #lic-list::-webkit-scrollbar { width: 5px; }
.dash-licenses #lic-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 4px; }
.dash-licenses #lic-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.dash-licenses #lic-list::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }

.lic-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-10px);
  animation: incIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: border-color 0.2s ease;
}
.lic-row:last-child { margin-bottom: 0; }
.lic-row:hover { border-color: rgba(56, 189, 248, 0.3); }
.lic-img {
  width: 74px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lic-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lic-info { flex: 1; min-width: 0; }
.lic-top { display: flex; align-items: center; gap: 8px; }
.lic-top b { font-family: var(--font-grotesk); font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lic-status {
  font-family: var(--font-mono);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}
.lic-status.frozen {
  color: #fcd34d;
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
}
.lic-status.expired {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
}
.lic-prog.frozen i { background: linear-gradient(90deg, #d97706, #fbbf24); box-shadow: none; }
.lic-prog.expired i { background: linear-gradient(90deg, #7f1d1d, #b91c1c); box-shadow: none; }
.lic-row:has(.lic-status.expired) { opacity: 0.75; }
.key-delete {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.key-delete:hover {
  color: #fff;
  background: rgba(248, 113, 113, 0.16);
  border-color: rgba(248, 113, 113, 0.55);
}
.key-delete svg { width: 12px; height: 12px; flex-shrink: 0; }
.lic-plan { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 3px; }
.lic-prog {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin-top: 8px;
}
.lic-prog i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #0ea5e9);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.lic-row .lic-prog i { width: var(--w); }
.lic-key { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.key-masked {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.key-reveal {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.key-reveal:hover { color: var(--accent); border-color: rgba(56, 189, 248, 0.4); }
.key-reveal svg { width: 14px; height: 14px; }

.loader-meta { display: flex; gap: 18px; margin-bottom: 14px; }
.loader-meta span { display: flex; flex-direction: column; gap: 2px; }
.lm-k {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.loader-meta b { font-family: var(--font-grotesk); font-size: 13px; }
.loader-meta b.ok { color: #6ee7b7; }
.loader-steps {
  margin: 16px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.loader-steps li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.5;
}
.loader-steps li::marker { color: var(--accent); }

.act-list {
  display: flex;
  flex-direction: column;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.act-list::-webkit-scrollbar { width: 5px; }
.act-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 4px; }
.act-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.act-list::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }
.act-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateX(-10px);
  animation: incIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.act-row:last-child { border-bottom: none; }
.act-ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.06);
  flex-shrink: 0;
  position: relative;
}
.act-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  background: var(--accent);
  -webkit-mask: center/contain no-repeat;
  mask: center/contain no-repeat;
}
.act-ico.key::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2l-2 2m-7.6 7.6a5.5 5.5 0 1 1-7.8 7.8 5.5 5.5 0 0 1 7.8-7.8zm0 0L15 8m-4 4l9-9m-4 4l3 3" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2l-2 2m-7.6 7.6a5.5 5.5 0 1 1-7.8 7.8 5.5 5.5 0 0 1 7.8-7.8zm0 0L15 8m-4 4l9-9m-4 4l3 3" stroke="black" stroke-width="2" fill="none"/></svg>'); }
.act-ico.login::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4M10 17l5-5-5-5M15 12H3" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4M10 17l5-5-5-5M15 12H3" stroke="black" stroke-width="2" fill="none"/></svg>'); }
.act-ico.refresh::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12a9 9 0 1 1-2.6-6.4M21 3v6h-6" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12a9 9 0 1 1-2.6-6.4M21 3v6h-6" stroke="black" stroke-width="2" fill="none"/></svg>'); }
.act-ico.ticket::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7h16M4 12h16M4 17h10" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7h16M4 12h16M4 17h10" stroke="black" stroke-width="2" fill="none"/></svg>'); }
.act-ico.dl::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v12m0 0l-4-4m4 4l4-4M4 21h16" stroke="black" stroke-width="2" fill="none"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v12m0 0l-4-4m4 4l4-4M4 21h16" stroke="black" stroke-width="2" fill="none"/></svg>'); }
.act-ico.close::before { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6L6 18M6 6l12 12" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6L6 18M6 6l12 12" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>'); }

/* admin ticket chat */

.ad-ticket-subtabs,
.user-ticket-subtabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.ad-tst,
.utst {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ad-tst:hover,
.utst:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.ad-tst.on,
.utst.on {
  color: #04121c;
  background: var(--accent);
  border-color: transparent;
}
.ad-ticket-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 480px;
}
.act-body b { display: block; font-size: 13px; font-weight: 600; }
.act-body span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 120px;
  padding-top: 6px;
}
.bar-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--accent), rgba(56, 189, 248, 0.25));
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: opacity 0.4s ease var(--d), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) var(--d), filter 0.15s ease;
  cursor: default;
  min-width: 4px;
}
.dash-card.in .bar-chart i, .bar-chart.in i { opacity: 0.85; transform: scaleY(1); }
.bar-chart i:hover { filter: brightness(1.35); opacity: 1; }
.usage-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}
.usage-foot b { color: var(--text); }

.sec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}
.sec-row b { display: block; font-size: 13px; font-weight: 600; }
.sec-row span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.switch {
  width: 38px;
  height: 21px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.switch i {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease, background 0.2s ease;
}
.switch.on { background: linear-gradient(90deg, var(--accent), #0ea5e9); border-color: transparent; }
.switch.on i { transform: translateX(17px); background: #fff; }

.sess-head {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 4px;
}
.sess-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}
.sess-row:last-child { border-bottom: none; }
.sess-row b { display: block; font-size: 12.5px; font-weight: 600; }
.sess-row b .cur {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
}
.sess-row span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

.tick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateX(-10px);
  animation: incIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tick-row:last-child { border-bottom: none; }
.tick-row b { display: block; font-size: 13px; font-weight: 600; }
.tick-row span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.tick-status {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  flex-shrink: 0;
}
.tick-status.open { color: #fcd34d; border: 1px solid rgba(251, 191, 36, 0.3); background: rgba(251, 191, 36, 0.08); }
.tick-status.resolved { color: #6ee7b7; border: 1px solid rgba(52, 211, 153, 0.3); background: rgba(52, 211, 153, 0.08); }

@media (max-width: 1000px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-row { grid-template-columns: 1fr; }
  .dash-hero { flex-direction: column; align-items: flex-start; }
}

/* ---------- checkout ---------- */

.co-wrap { max-width: 880px; margin: 0 auto; }

.co-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.co-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.co-step i {
  font-style: normal;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}
.co-step.on { color: var(--text); }
.co-step.on i {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  border-color: transparent;
  color: #04121c;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}
.co-step.done { color: #6ee7b7; }
.co-step.done i {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
}
.co-steps em {
  width: 44px;
  height: 1px;
  background: var(--card-border);
}

.co-panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 30px;
  animation: heroIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.co-review {
  display: flex;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.co-review:hover { border-color: rgba(56, 189, 248, 0.3); }
.co-review-imgwrap {
  width: 190px;
  height: 108px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
}
.co-review-imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.co-review-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.co-review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.co-review-name { display: flex; flex-direction: column; gap: 2px; }
.co-review-name b { font-family: var(--font-grotesk); font-size: 15.5px; }
.co-review-name span { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); }
.co-review-price { font-family: var(--font-grotesk); font-size: 17px; color: var(--text); }
.co-review-desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}
.co-review-feats { display: flex; flex-wrap: wrap; gap: 6px; }
.co-review .co-key-feat { align-self: flex-start; margin-top: 2px; }
.co-review-feats span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
  padding: 4px 9px;
}
.co-review-feats svg { width: 10px; height: 10px; color: #6ee7b7; flex-shrink: 0; }

.co-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.co-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(2, 4, 8, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.co-modal-overlay[hidden] { display: none; }
.co-modal-overlay.show { opacity: 1; }
.co-modal {
  position: relative;
  width: min(520px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background:
    radial-gradient(400px circle at 50% 0%, rgba(52, 211, 153, 0.08), transparent 60%),
    var(--card);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 18px;
  padding: 38px 34px 30px;
  text-align: center;
  transform: scale(0.9) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.co-modal-overlay.show .co-modal { transform: scale(1) translateY(0); }
.co-modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.co-modal-x:hover { color: var(--text); background: rgba(255, 255, 255, 0.1); }
.co-modal-x svg { width: 14px; height: 14px; }
.co-vouches { width: 100%; margin-top: 16px; text-align: left; }
.co-vouch-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 10px;
}
.co-vouch-row { display: flex; flex-direction: column; gap: 8px; }
.co-vouch {
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 11px 14px;
}
.cv-head { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.cv-head .stars svg { width: 10px; height: 10px; }
.cv-head b { font-size: 12px; font-weight: 600; }
.co-vouch p { margin: 0 0 5px; font-size: 11.5px; line-height: 1.55; color: var(--muted); }
.co-vouch > span { font-family: var(--font-mono); font-size: 9px; color: rgba(255, 255, 255, 0.3); }
.co-modal-actions { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }

@media (max-width: 720px) {
  .co-review { flex-direction: column; }
  .co-review-imgwrap { width: 100%; height: 150px; }
  .co-actions { flex-direction: column-reverse; }
  .co-actions .btn { width: 100%; }
}
.co-h {
  font-family: var(--font-grotesk);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 16px;
}
.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 12px;
}
.co-total-row span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.co-total-row b { font-family: var(--font-grotesk); font-size: 26px; font-weight: 700; color: var(--text); }
.co-back { color: var(--muted); }
.co-back:hover { color: var(--accent); }

.co-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 16px; }
.co-m {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-grotesk);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 9px;
  padding: 11px 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.co-m:hover { color: var(--text); border-color: rgba(56, 189, 248, 0.35); background: rgba(56, 189, 248, 0.04); }
.co-m.on {
  color: var(--text);
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(56, 189, 248, 0.09);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.25), 0 6px 20px rgba(56, 189, 248, 0.12);
}
.co-m-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.co-m-logo.pp { background: #f5f5f5; color: #003087; font-style: italic; }
.co-m-logo.card-ic { background: rgba(56, 189, 248, 0.12); color: #7dd3fc; }
.co-m-logo.card-ic svg { width: 15px; height: 15px; }
.co-m-logo.psc { background: #0089cf; color: #fff; font-size: 8.5px; letter-spacing: 0.02em; }
.co-m-logo.ca { background: #00d632; color: #fff; }
.co-m-logo.cry { background: #f7931a; color: #fff; }
.co-m-logo.cry svg { width: 15px; height: 15px; }

.co-paybox {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
  animation: heroIn 0.25s ease;
}
.co-field { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.co-field-row { display: flex; gap: 10px; }
.co-field label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.co-input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.co-input::placeholder { color: rgba(255, 255, 255, 0.22); }
.co-input:focus {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}
.co-brand-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-grotesk);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.co-brand-btn:hover { filter: brightness(1.12); }
.co-brand-btn:active { transform: scale(0.985); }
.pp-btn { background: #0070ba; }
.card-btn { background: linear-gradient(135deg, #1a1d29, #2a2f42); border: 1px solid rgba(255, 255, 255, 0.14); }
.psc-btn { background: #0089cf; }
.ca-btn { background: #00d632; color: #04120a; }
.co-box-note {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}
.co-coins { display: flex; gap: 7px; }
.co-coin {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 7px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.co-coin:hover { color: var(--text); border-color: rgba(247, 147, 26, 0.4); }
.co-coin.on {
  color: #f7931a;
  border-color: rgba(247, 147, 26, 0.55);
  background: rgba(247, 147, 26, 0.08);
}
.co-qr {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 10px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.85) 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.85) 0 4px, transparent 4px 8px);
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-qr span {
  background: #fff;
  color: #111;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 4px;
}
.co-addr {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 8px 10px;
  word-break: break-all;
  text-align: center;
  line-height: 1.5;
}
.co-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
}
.co-secure svg { width: 13px; height: 13px; color: #6ee7b7; flex-shrink: 0; }
.co-empty { font-family: var(--font-mono); font-size: 11px; color: var(--muted); padding: 14px 0; }
.co-pay-error {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #f87171;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 7px;
  padding: 8px 12px;
  text-align: center;
  margin-top: 8px;
  animation: fadeSlideIn 0.25s ease;
}
.co-decline-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.co-decline-overlay[hidden] { display: none; }
.co-decline-overlay.show { opacity: 1; pointer-events: auto; }
.co-decline-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 360px;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.co-decline-overlay.show .co-decline-box { transform: scale(1); }
.co-decline-icon { color: #f87171; margin-bottom: 16px; }
.co-decline-icon svg { width: 48px; height: 48px; }
.co-decline-box h3 { font-size: 18px; margin: 0 0 8px; color: #f87171; }
.co-decline-box p {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  line-height: 1.6; margin: 0 0 20px;
}
.co-decline-btn {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  background: rgba(248, 113, 113, 0.12); color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 8px; padding: 10px 24px; cursor: pointer;
  transition: background 0.15s ease;
}
.co-decline-btn:hover { background: rgba(248, 113, 113, 0.22); }

.co-success {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: heroIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.co-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  margin-bottom: 6px;
  animation: starPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.co-check svg { width: 30px; height: 30px; }
.co-success-title { font-family: var(--font-grotesk); font-size: 24px; font-weight: 700; margin: 0; }
.co-success-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin: 0 0 10px; }
.co-key-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  margin-bottom: 8px;
  animation: incIn 0.4s ease both;
}
.co-key-row:nth-child(1) { animation-delay: 0.15s; }
.co-key-row:nth-child(2) { animation-delay: 0.25s; }
.co-key-row:nth-child(3) { animation-delay: 0.35s; }
.co-key-info { display: flex; flex-direction: column; gap: 2px; text-align: left; min-width: 0; }
.co-key-info b { font-family: var(--font-grotesk); font-size: 13px; }
.co-key-info span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.co-key-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.co-key-row code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #7dd3fc;
  letter-spacing: 0.04em;
}
.co-key-feat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 5px;
  padding: 4px 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.co-key-feat:hover {
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.55);
}
.co-key-feat svg { width: 11px; height: 11px; flex-shrink: 0; }

/* ---------- admin ---------- */

.admin-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background:
    radial-gradient(420px circle at 0% 0%, rgba(251, 191, 36, 0.08), transparent 55%),
    var(--card);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ab-shield {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fcd34d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-shield svg { width: 22px; height: 22px; }
.ab-text { flex: 1; min-width: 0; }
.ab-text b {
  display: block;
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  color: #fcd34d;
  margin-bottom: 3px;
}
.ab-text span { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); line-height: 1.5; }
.ab-operators {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  flex-wrap: wrap;
}
.ab-op-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 211, 77, 0.5);
  margin-right: 2px;
}
.ab-op {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.07);
  border-radius: 5px;
  padding: 3px 9px;
}
.ab-id {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 6px 11px;
  flex-shrink: 0;
}

.admin-tabs {
  display: flex;
  gap: 7px;
}
#admin-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#admin-panel::-webkit-scrollbar,
#admin-panel .ad-page::-webkit-scrollbar,
#admin-panel .dash-card::-webkit-scrollbar { width: 5px; }
#admin-panel::-webkit-scrollbar-track,
#admin-panel .ad-page::-webkit-scrollbar-track,
#admin-panel .dash-card::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 4px; }
#admin-panel::-webkit-scrollbar-thumb,
#admin-panel .ad-page::-webkit-scrollbar-thumb,
#admin-panel .dash-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
#admin-panel::-webkit-scrollbar-thumb:hover,
#admin-panel .ad-page::-webkit-scrollbar-thumb:hover,
#admin-panel .dash-card::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }
.ad-t {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ad-t:hover { color: var(--text); border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.05); }
.ad-t.on {
  color: #04120a;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(251, 191, 36, 0.25);
}

.ad-table-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 0.7fr 0.6fr;
  gap: 10px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ad-table-head .ta-r { text-align: right; }
.ad-order {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 0.7fr 0.6fr;
  gap: 10px;
  align-items: center;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease;
}
.ad-order:hover { background: rgba(255, 255, 255, 0.02); }
.ad-order:last-child { border-bottom: none; }
.ad-order-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ad-order-main b { font-family: var(--font-mono); font-size: 10.5px; color: #7dd3fc; }
.ad-order-main span { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ad-order-user { font-size: 12.5px; font-weight: 600; color: var(--text); }
.ad-order-meta { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.ad-order-total { font-family: var(--font-grotesk); font-size: 13.5px; color: #6ee7b7; text-align: right; }

.ad-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}
.ad-user:last-child { border-bottom: none; }
.ad-user div { min-width: 0; }
.ad-user b { display: block; font-size: 13px; font-weight: 600; }
.ad-user span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

.ad-gen { display: flex; flex-direction: column; gap: 10px; }
.ad-dd { position: relative; width: 100%; }
.ad-dd-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
  border-radius: 9px;
  padding: 12px 14px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ad-dd-btn:hover { border-color: rgba(251, 191, 36, 0.4); background: rgba(0, 0, 0, 0.45); }
.ad-dd-btn svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease;
}
.ad-dd-btn.open { border-color: rgba(251, 191, 36, 0.55); }
.ad-dd-btn.open svg { transform: rotate(180deg); color: #fcd34d; }
.ad-dd-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 5px;
  background: #14100a;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  max-height: 240px;
  overflow-y: auto;
  animation: menuDrop 0.18s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(251, 191, 36, 0.45) transparent;
}
.ad-dd-menu::-webkit-scrollbar { width: 6px; }
.ad-dd-menu::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.03); border-radius: 999px; margin: 4px 2px; }
.ad-dd-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fbbf24, #d97706);
  border-radius: 999px;
}
.ad-dd-menu::-webkit-scrollbar-thumb:hover { background: #fcd34d; }
.ad-dd-menu.open { display: flex; }
.ad-dd-opt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: none;
  text-align: left;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.ad-dd-opt:hover { background: rgba(251, 191, 36, 0.1); color: #fff; }
.ad-dd-opt.sel {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
  box-shadow: inset 2px 0 0 #fbbf24;
}
.ad-det-dd { width: 150px; }
.ad-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 16px;
}
.ad-gen-out {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #7dd3fc;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  letter-spacing: 0.06em;
  animation: heroIn 0.3s ease;
}
.ad-kc-row { display: flex; gap: 8px; }
.ad-kc-row .btn { flex: 1; }
.btn-ghost.danger { color: #fca5a5; border-color: rgba(248, 113, 113, 0.3); }
.btn-ghost.danger:hover { background: rgba(248, 113, 113, 0.08); border-color: rgba(248, 113, 113, 0.5); }
.ad-kc-note {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.ad-det-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}
.ad-det-row:last-child { border-bottom: none; }
.ad-det-row b { display: block; font-size: 12.5px; font-weight: 600; }
.ad-det-row span { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); }
.ad-det-select { width: 130px; padding: 7px 10px; flex-shrink: 0; }

.ad-notif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}
.ad-notif-row:last-child { border-bottom: none; }
.ad-notif-main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ad-notif-key {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  padding: 3px 8px;
  border-radius: 5px;
  word-break: break-all;
}
.ad-notif-time { font-family: var(--font-mono); font-size: 10px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }

/* ---------- dashboard tabs ---------- */

.dash-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}
.dash-tab {
  flex: 1;
  padding: 10px 20px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-grotesk);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.dash-tab:hover { color: var(--text); }
.dash-tab.on {
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.08);
}

/* ---------- ticket full list ---------- */

.ticket-full-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: background 0.2s ease;
}
.ticket-full-list-item:hover { background: rgba(255, 255, 255, 0.02); margin: 0 -16px; padding: 14px 16px; border-radius: 8px; }
.ticket-full-list-item:last-child { border-bottom: none; }
.ticket-full-left { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ticket-full-left b { font-size: 13px; font-weight: 600; color: var(--text); }
.ticket-full-left span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.ticket-full-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ticket-full-product { font-family: var(--font-mono); font-size: 10px; color: var(--muted); background: rgba(255,255,255,0.04); padding: 3px 8px; border-radius: 5px; }

/* ---------- ticket chat ---------- */

.tc-problem-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeUp 0.3s ease both;
}
.tc-problem-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.tc-problem-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tc-problem-tag {
  font-size: 11px;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.15);
  padding: 3px 8px;
  border-radius: 5px;
}
.tc-problem-desc {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}
.tc-problem-files {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}
.tc-problem-files svg { width: 14px; height: 14px; opacity: 0.5; }

.ticket-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticket-msg {
  display: flex;
  gap: 12px;
  padding: 6px 16px;
  animation: fadeUp 0.3s ease both;
}
.ticket-msg:hover { background: rgba(255,255,255,0.015); }
.ticket-msg.staff { flex-direction: row-reverse; }
.ticket-msg-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  overflow: hidden;
  margin-top: 2px;
}
.ticket-msg-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}
.ticket-msg-avatar.user { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
.ticket-msg-avatar.staff { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.ticket-msg-content { flex: 1; min-width: 0; }
.ticket-msg-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.ticket-msg-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.ticket-msg-name.staff-name { color: #a78bfa; }
.ticket-msg-name.user-name { color: #38bdf8; }
.ticket-msg-ts {
  font-size: 10px;
  color: var(--muted);
}
.ticket-msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  display: inline-block;
}
.ticket-msg:not(.staff) .ticket-msg-bubble {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.12);
  color: var(--text);
}
.ticket-msg.staff .ticket-msg-bubble {
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.12);
  color: var(--text);
}
.ticket-msg-time { font-size: 10px; color: var(--muted); margin-top: 4px; }

/* system message */

.tc-system-msg {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  margin: 4px 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  animation: fadeUp 0.3s ease both;
}
.tc-system-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}
.tc-system-icon svg { width: 16px; height: 16px; }
.tc-system-content { flex: 1; }
.tc-system-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.tc-system-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.tc-system-time {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.ticket-chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ticket-chat-input .co-input { flex: 1; }

/* ticket chat — profiles sidebar */

.tc-chat-area {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.tc-msg-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
}
.tc-layout {
  display: flex;
  flex: 1;
  min-height: 0;
}
.tc-profiles {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 16px;
  border-left: 1px solid rgba(255,255,255,0.06);
  margin-left: 16px;
}
.tc-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tc-profile-row:last-child { border-bottom: none; }
.tc-prof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-prof-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}
.tc-prof-avatar.staff-av { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.tc-prof-avatar.user-av { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
.tc-prof-info { flex: 1; min-width: 0; }
.tc-prof-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tc-prof-role {
  font-size: 10px;
  color: var(--muted);
}
.tc-prof-verified {
  width: 14px;
  height: 14px;
  color: #38bdf8;
  flex-shrink: 0;
}

/* ---------- ticket modal ---------- */

.ticket-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ticket-modal-overlay.show { opacity: 1; pointer-events: auto; }
.ticket-modal {
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.ticket-modal-overlay.show .ticket-modal { transform: translateY(0) scale(1); }
.ticket-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ticket-modal-head h3 { font-family: var(--font-grotesk); font-size: 16px; font-weight: 700; }
.ticket-modal-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ticket wizard steps */

.tw-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 24px;
}
.tw-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
}
.tw-step i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  transition: all 0.3s ease;
}
.tw-step.on { color: var(--text); }
.tw-step.on i { background: #38bdf8; color: #0d111a; }
.tw-step.done i { background: rgba(56, 189, 248, 0.2); color: #38bdf8; }
.tw-steps em { width: 32px; height: 1px; background: rgba(255,255,255,0.08); margin: 0 8px; }

/* wizard panels */

.tw-panel { padding: 8px 24px 16px; }
.tw-h { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 14px; }

/* product grid */

.tw-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.tw-product-grid::-webkit-scrollbar { width: 4px; }
.tw-product-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 4px; }
.tw-product-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.tw-product-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
  font-family: var(--font-body);
}
.tw-product-btn:hover { border-color: rgba(56, 189, 248, 0.3); background: rgba(56, 189, 248, 0.05); }
.tw-product-btn.selected { border-color: #38bdf8; background: rgba(56, 189, 248, 0.1); box-shadow: 0 0 16px rgba(56, 189, 248, 0.15); }
.tw-product-btn .tw-prod-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.tw-product-btn .tw-prod-name { font-size: 12px; font-weight: 600; }
.tw-product-btn .tw-prod-price { font-size: 11px; color: var(--muted); }

/* issue list */

.tw-issue-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tw-issue {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: left;
}
.tw-issue:hover { border-color: rgba(56, 189, 248, 0.3); background: rgba(56, 189, 248, 0.05); }
.tw-issue.selected { border-color: #38bdf8; background: rgba(56, 189, 248, 0.1); }
.tw-issue-ico { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }

/* custom description */

.tw-custom-desc {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeUp 0.25s ease both;
}
.tw-custom-desc label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tw-custom-desc textarea.co-input { resize: vertical; min-height: 72px; }

/* upload area */

.tw-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--muted);
}
.tw-upload-area:hover { border-color: rgba(56, 189, 248, 0.3); color: var(--text); }
.tw-upload-area svg { width: 28px; height: 28px; opacity: 0.5; }
.tw-upload-area span { font-size: 13px; }
.tw-upload-note { font-size: 11px !important; color: var(--muted) !important; }

.tw-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tw-file-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text);
}
.tw-file-chip .tw-file-remove {
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}
.tw-file-chip .tw-file-remove:hover { color: var(--red); }

.tw-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 16px 0;
}

/* freeze row */

.tw-freeze-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tw-freeze-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
}
.tw-freeze-label input[type="checkbox"] { accent-color: #38bdf8; width: 16px; height: 16px; }
.tw-freeze-hint { font-size: 11px; color: var(--muted); }
.tw-freeze-input { margin-top: 6px; }

.det-chip.warn {
  color: #fcd34d;
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.08);
}
.det-chip.warn i { background: var(--amber); box-shadow: 0 0 7px rgba(251, 191, 36, 0.7); }
.det-chip.down {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.08);
}
.det-chip.down i { background: var(--red); box-shadow: 0 0 7px rgba(248, 113, 113, 0.7); }

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

/* ---------- live sales ticker ---------- */

#sale-ticker {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  background:
    radial-gradient(300px circle at 0% 50%, rgba(52, 211, 153, 0.08), transparent 60%),
    rgba(13, 17, 26, 0.95);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 13px;
  padding: 13px 16px 13px 13px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
#sale-ticker.show { transform: translateX(0); }
#sale-ticker:hover { border-color: rgba(52, 211, 153, 0.5); }
.st-flag {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 1px;
}
.st-body { flex: 1; min-width: 0; }
.st-line { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-line b { color: var(--text); font-weight: 600; }
.st-line2 { font-size: 12px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-line2 b { color: #7dd3fc; font-weight: 600; }
.st-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.st-price { color: #6ee7b7; font-weight: 600; }
.st-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.st-check svg { width: 12px; height: 12px; }

@media (max-width: 640px) {
  #sale-ticker { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ---------- footer ---------- */

.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--card-border);
  padding: 26px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12.5px;
  font-family: var(--font-mono);
}
.footer-tag { display: inline-flex; align-items: center; gap: 8px; }
.foot-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(52, 211, 153, 0.8); animation: pulse 2s infinite; }

/* ---------- cart drawer ---------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  width: min(400px, 100vw);
  height: 100dvh;
  background: var(--bg-soft);
  border-left: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}
.cart.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--card-border);
}
.cart-head h3 { font-family: var(--font-grotesk); font-size: 18px; font-weight: 700; }

.cart-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 9px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-close:hover { color: var(--text); background: rgba(255, 255, 255, 0.09); }
.cart-close svg { width: 16px; height: 16px; }

.cart-body { flex: 1; overflow-y: auto; padding: 18px 24px; }

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.cart-empty svg { width: 44px; height: 44px; color: var(--muted); opacity: 0.5; }
.cart-empty p { color: var(--muted); font-size: 14px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(56, 48, 38, 0.28), rgba(40, 35, 28, 0.18));
  animation: cardIn 0.3s ease both;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cart-item:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(66, 57, 45, 0.34), rgba(48, 42, 33, 0.22));
}
.cart-item:last-child { margin-bottom: 0; }
.cart-item-icon {
  width: 76px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-item.premium .cart-item-icon { background: linear-gradient(135deg, var(--accent-2), #7c3aed); }
.cart-item-icon svg { width: 18px; height: 18px; }
.cart-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 7px;
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-item-remove:hover { color: var(--red); background: rgba(248, 113, 113, 0.08); }
.cart-item-remove svg { width: 15px; height: 15px; }

.cart-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-grotesk);
  font-size: 15px;
  font-weight: 600;
}
.cart-total-row span:last-child { font-size: 18px; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 80px);
  z-index: 200;
  background: rgba(13, 17, 26, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 17px; height: 17px; color: var(--green); }
.toast.error {
  border-color: rgba(248, 113, 113, 0.55);
  background: rgba(38, 14, 16, 0.95);
}
.toast.error svg { color: #fca5a5; }

/* ---------- home blocks ---------- */

.home-block {
  padding: 70px 0 20px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 40px;
}

/* ---------- categories ---------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  height: 250px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: rgba(56, 189, 248, 0.4); }
.category-card:hover::after { opacity: 1; }

.cat-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-grotesk);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 0.45s ease;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.category-card:hover .cat-label {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
}

/* ---------- about block ---------- */

.about-block {
  text-align: left;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-block .section-label { display: inline-block; }
.about-block .section-title { margin-bottom: 20px; }

.about-story {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 640px;
}
.about-story:last-child { margin-bottom: 0; }

.about-marquee {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}

/* ---------- marquee machinery ---------- */

.marquee-mask {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-mask:hover .marquee-row,
.marquee-mask:hover .reviews-marquee { animation-play-state: paused; }

.marquee-row {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollRight var(--speed, 36s) linear infinite;
}
.marquee-row > * { margin-right: 14px; }

.reviews-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollRight 64s linear infinite;
}
.reviews-marquee > * { margin-right: 16px; }

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---------- game cards ---------- */

.game-card {
  position: relative;
  width: 230px;
  height: 295px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.game-card:hover { border-color: rgba(255, 255, 255, 0.25); transform: translateY(-3px); }

.game-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.15) 0%, rgba(5, 6, 10, 0) 40%, rgba(5, 6, 10, 0.55) 72%, rgba(5, 6, 10, 0.95) 100%);
  pointer-events: none;
  z-index: 3;
}

.game-img {
  position: absolute;
  left: 0;
  bottom: -6%;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: grayscale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, filter 0.5s ease;
}
.game-img.hero { width: 118%; left: -9%; bottom: -20%; }
.game-img.r6 { width: 84%; left: 3%; bottom: -50%; }
.game-img.cod { width: 118%; left: -2%; bottom: -14%; }
.game-img.rust { width: 155%; left: -22%; bottom: -4%; }
.game-img.val { width: 142%; left: -9%; bottom: 6%; }
.game-img.cs2 { width: 128%; left: -6%; bottom: -42%; }
.game-card:hover .game-img { transform: scale(1.04); filter: grayscale(0); }

.linear-watermark {
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  font-family: var(--font-grotesk);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.08);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}
.game-card:hover .linear-watermark {
  opacity: 0.2;
  transform: scale(1);
}

.game-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.6;
  filter: grayscale(1);
  transition: filter 0.5s ease, opacity 0.3s ease;
}
.game-card:hover .game-art { filter: grayscale(0); opacity: 0.85; }
.game-art svg {
  width: 70%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.game-card .gw { stroke: var(--g-color); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.game-name {
  position: relative;
  z-index: 4;
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.game-name .game-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 3px;
  text-transform: none;
}

/* ---------- chips row ---------- */

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: rgba(13, 17, 26, 0.7);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.chip svg, .chip img, .chip-logo { width: 19px; height: 19px; object-fit: contain; display: inline-block; flex-shrink: 0; }

/* ---------- reviews marquee ---------- */

.reviews-block { padding-bottom: 40px; }

.marquee-mask.reviews-mask { padding: 6px 0; }

.reviews-marquee .review-card {
  width: min(330px, 82vw);
  flex-shrink: 0;
}

/* ---------- product modal ---------- */

.pmodal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.pmodal.open { opacity: 1; visibility: visible; }

.pm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pm-panel {
  position: relative;
  width: min(1020px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
}
.pmodal.open .pm-panel { transform: translateY(0) scale(1); }

.pm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: rgba(5, 6, 10, 0.6);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(8px);
}
.pm-close:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); }
.pm-close svg { width: 16px; height: 16px; }

.pm-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border-bottom: 1px solid var(--card-border);
}

.pm-media {
  position: relative;
  min-height: 380px;
  background:
    radial-gradient(600px circle at 30% 20%, rgba(56, 189, 248, 0.08), transparent 60%),
    var(--bg);
}

.pm-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.pm-img.fading { opacity: 0; transform: scale(1.02); }

.pm-icon-fallback {
  width: 84px;
  height: 84px;
}
.pm-icon-fallback svg { width: 100%; height: 100%; }

.pm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 6, 10, 0.55);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.pm-arrow:hover { background: rgba(56, 189, 248, 0.2); border-color: rgba(56, 189, 248, 0.5); }
.pm-arrow svg { width: 18px; height: 18px; }
.pm-arrow.prev { left: 14px; }
.pm-arrow.next { right: 14px; }
.pm-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.pm-arrow.next:hover { transform: translateY(-50%) translateX(2px); }

.pm-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 5;
}
.pm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.pm-dot.active { background: var(--accent); transform: scale(1.25); box-shadow: 0 0 10px rgba(56, 189, 248, 0.7); }

.pm-info {
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--card-border);
  background: rgba(10, 13, 20, 0.5);
  min-width: 0;
}

.pm-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.pm-name {
  font-family: var(--font-grotesk);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.pm-keys {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.pm-key {
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 12px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.2s ease;
}
.pm-key b { font-family: var(--font-grotesk); font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.pm-key span { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.06em; line-height: 1.35; color: var(--muted); white-space: normal; text-align: center; }
.pm-key:hover { border-color: rgba(255, 255, 255, 0.22); transform: translateY(-1px); }
.pm-key.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  box-shadow: 0 6px 22px rgba(56, 189, 248, 0.35);
}
.pm-key.active b { color: #04121c; }
.pm-key.active span { color: rgba(4, 18, 28, 0.75); }

#page-product.phobia-active .pm-key {
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.25);
}
#page-product.phobia-active .pm-key b { color: #e9d5ff; }
#page-product.phobia-active .pm-key span { color: rgba(196, 181, 253, 0.65); }
#page-product.phobia-active .pm-key:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.12);
}
#page-product.phobia-active .pm-key.active {
  border-color: transparent;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.4);
}
#page-product.phobia-active .pm-key.active b { color: #fff; }
#page-product.phobia-active .pm-key.active span { color: rgba(255, 255, 255, 0.8); }

.pv-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pv-qty-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.pv-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pv-qty-btn {
  all: unset;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  flex-shrink: 0;
  box-sizing: border-box;
  line-height: 1;
}
.pv-qty-btn:hover { background: rgba(139, 92, 246, 0.2); border-color: rgba(139, 92, 246, 0.4); color: #c4b5fd; }
.pv-qty-val {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 700;
  width: 36px;
  text-align: center;
  line-height: 1;
  user-select: none;
}

.pm-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pm-price { font-family: var(--font-grotesk); font-size: 34px; font-weight: 700; }
.pm-price-hint { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); }

.pm-checkout { justify-content: center; width: 100%; }

.pm-lifetime {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px dashed var(--card-border);
  padding-top: 14px;
}
.pm-life-btn {
  background: none;
  border: 1px solid rgba(167, 139, 250, 0.4);
  color: #c4b5fd;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-sans);
}
.pm-life-btn b { font-size: 13px; }
.pm-life-btn:hover { background: rgba(167, 139, 250, 0.14); border-color: rgba(167, 139, 250, 0.7); }

.pm-badges {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 2px;
}
.pm-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pm-badge svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.pm-bottom { padding: 28px 32px 34px; }

.pm-sec { margin-bottom: 30px; }
.pm-sec:last-child { margin-bottom: 0; }

.pm-desc-title,
.pm-feats-title,
.pm-reqs-title,
.pm-faq-title {
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.req-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 13px 15px;
  border: 1px solid var(--card-border);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.045), rgba(56, 189, 248, 0.015));
  min-width: 0;
}
.req-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}
.req-val {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  white-space: normal;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item { border: 1px solid var(--card-border); border-radius: 10px; background: rgba(255, 255, 255, 0.02); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item.open { border-color: rgba(56, 189, 248, 0.35); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 17px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: background 0.2s ease, color 0.25s ease;
}
.faq-q:hover { background: rgba(255, 255, 255, 0.03); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-chev {
  width: 15px;
  height: 15px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--accent); }
.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-body { height: var(--h, 0px); }
.faq-inner {
  padding: 0 17px 15px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.4s ease 0.1s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.faq-item.open .faq-inner { opacity: 1; transform: translateY(0); }

.pm-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
}

.pm-feats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  padding: 0;
}
.pm-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}
.pm-feats li.pm-cheat {
  display: block;
  grid-column: 1 / -1;
}
.pm-feats svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pm-cheat {
  border: 1px solid rgba(167, 139, 250, 0.32);
  border-radius: 14px;
  overflow: visible;
  background:
    radial-gradient(600px circle at 8% 0%, rgba(167, 139, 250, 0.12), transparent 60%),
    radial-gradient(500px circle at 95% 100%, rgba(56, 189, 248, 0.07), transparent 55%),
    rgba(8, 10, 17, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(167, 139, 250, 0.12);
}
.pm-cheat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(167, 139, 250, 0.18);
  background: rgba(167, 139, 250, 0.05);
  border-radius: 14px 14px 0 0;
}
.pm-cheat-dots {
  display: flex;
  gap: 5px;
}
.pm-cheat-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.pm-cheat-dots i:nth-child(1) { background: #f472b6; }
.pm-cheat-dots i:nth-child(2) { background: #fbbf24; }
.pm-cheat-dots i:nth-child(3) { background: #34d399; }
.pm-cheat-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8b4fe;
}
.pm-cheat-fw {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: rgba(216, 180, 254, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 4px;
  padding: 3px 7px;
  background: rgba(167, 139, 250, 0.07);
}
.pm-cheat-body {
  display: flex;
}

.pm-cheat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px 0;
}
.pm-cheat-tab {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 5px 14px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.pm-cheat-tab:hover {
  background: rgba(167, 139, 250, 0.1);
  color: rgba(255, 255, 255, 0.9);
}
.pm-cheat-tab.on {
  border-color: rgba(167, 139, 250, 0.5);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.35), rgba(167, 139, 250, 0.12));
  color: #e9d5ff;
}
.pm-cheat-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  padding: 14px 16px 18px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.pm-cheat-main.leaving-left { opacity: 0; transform: translateX(-28px); }
.pm-cheat-main.leaving-right { opacity: 0; transform: translateX(28px); }
.pm-cheat-main.entering-left { animation: slideInFromLeft 0.34s cubic-bezier(0.22, 0.9, 0.3, 1) both; }
.pm-cheat-main.entering-right { animation: slideInFromRight 0.34s cubic-bezier(0.22, 0.9, 0.3, 1) both; }
@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-34px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: translateX(0); }
}
.pm-cheat-main.entering-left > *,
.pm-cheat-main.entering-right > * {
  animation: rowFade 0.34s ease both;
  animation-delay: calc(var(--i, 0) * 0.025s);
}
@keyframes rowFade {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- linear menu skin ---------- */

.pm-cheat-linear {
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 2px;
  background:
    linear-gradient(rgba(2, 6, 12, 0.92), rgba(4, 9, 16, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(56, 189, 248, 0.02) 23px 24px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.pm-cheat-linear .pm-cheat-head {
  border-radius: 0;
  background: #0b131d;
  border-bottom: 1px solid rgba(56, 189, 248, 0.22);
}
.pm-cheat-linear .pm-cheat-dots i {
  border-radius: 0;
  width: 8px;
  height: 8px;
  background: #38bdf8;
}
.pm-cheat-linear .pm-cheat-dots i:nth-child(2) { background: #0ea5e9; }
.pm-cheat-linear .pm-cheat-dots i:nth-child(3) { background: #0369a1; }
.pm-cheat-linear .pm-cheat-title {
  color: #7dd3fc;
  letter-spacing: 0.22em;
}
.pm-cheat-linear .pm-cheat-fw {
  border-radius: 2px;
  border-color: rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.07);
}
.pm-cheat-linear .pm-cheat-tabs {
  border-bottom: 1px solid rgba(56, 189, 248, 0.14);
  padding-bottom: 10px;
}
.pm-cheat-linear .pm-cheat-tab {
  border-radius: 2px;
  border-color: rgba(56, 189, 248, 0.16);
  background: rgba(56, 189, 248, 0.03);
  color: rgba(125, 211, 252, 0.55);
}
.pm-cheat-linear .pm-cheat-tab:hover {
  background: rgba(56, 189, 248, 0.09);
  color: #bae6fd;
}
.pm-cheat-linear .pm-cheat-tab.on {
  border-color: rgba(56, 189, 248, 0.55);
  background: rgba(56, 189, 248, 0.2);
  color: #e0f2fe;
  box-shadow: inset 0 -2px 0 #38bdf8;
}
.pm-cheat-linear .cw-name { color: rgba(203, 213, 225, 0.85); }
.pm-cheat-linear .cw-head b { color: #7dd3fc; }
.pm-cheat-linear .cw:hover { background: rgba(56, 189, 248, 0.07); }
.pm-cheat-linear .cw-bar i {
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}
.pm-cheat-linear .cw-combo, .pm-cheat-linear .cw-key {
  border-radius: 2px;
  border-color: rgba(56, 189, 248, 0.4);
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.09);
}
.pm-cheat-linear .cw-menu {
  border-radius: 2px;
  background: #0b131d;
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}
.pm-cheat-linear .cw-opt { border-radius: 0; }
.pm-cheat-linear .cw-opt:hover { background: rgba(56, 189, 248, 0.18); color: #fff; }
.pm-cheat-linear .cw-opt.sel {
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.3);
  box-shadow: inset 2px 0 0 #38bdf8;
}
.pm-cheat-linear .cw-toggle {
  border-radius: 0;
  border-color: rgba(56, 189, 248, 0.25);
  background: rgba(56, 189, 248, 0.08);
}
.pm-cheat-linear .cw-toggle i { border-radius: 0; }
.pm-cheat-linear .cw-toggle.on {
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  border-color: rgba(56, 189, 248, 0.6);
}
.pm-cheat-card {
  border: 1px solid rgba(167, 139, 250, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  padding: 11px 12px 13px;
}
.pm-cheat-card h5 {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(216, 180, 254, 0.7);
}
.pm-cheat-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
}
.pm-cheat-card li:hover {
  background: rgba(167, 139, 250, 0.07);
  border-radius: 5px;
}
.cw {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.cw:hover {
  background: rgba(167, 139, 250, 0.08);
}
.cw-row { justify-content: space-between; }
.cw-col {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 8px 10px 7px;
  cursor: ew-resize;
}
.cw-name {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.cw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  pointer-events: none;
}
.cw-head b {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  color: #a78bfa;
}
.cw-bar {
  display: block;
  height: 4px;
  width: 100%;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  touch-action: none;
}
.cw-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #38bdf8);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.6);
  pointer-events: none;
}
.cw-combo, .cw-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(167, 139, 250, 0.1);
  border-radius: 4px;
  padding: 3px 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cw-combo::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(196, 181, 253, 0.8);
}
.cw-wrap {
  position: relative;
  display: inline-flex;
}
.cw-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  z-index: 40;
  min-width: 100%;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 5px;
  background: #161022;
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 20px rgba(124, 58, 237, 0.12);
}
.cw-menu.open {
  display: flex;
  animation: menuDrop 0.18s ease;
}
@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cw-opt {
  font-family: var(--mono);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: none;
  text-align: left;
  padding: 4px 11px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.cw-opt:hover { background: rgba(167, 139, 250, 0.16); color: #fff; }
.cw-opt.sel { color: #e9d5ff; background: rgba(124, 58, 237, 0.28); }
.cw-key {
  cursor: default;
  box-shadow: 0 2px 0 rgba(124, 58, 237, 0.4);
  pointer-events: none;
}
.cw-toggle {
  position: relative;
  width: 26px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
  cursor: pointer;
}
.cw-toggle i {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s, background 0.2s;
}
.cw-toggle.on {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-color: rgba(167, 139, 250, 0.55);
}
.cw-toggle.on i {
  transform: translateX(11px);
  background: #fff;
}
.cw-div {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(216, 180, 254, 0.45);
  padding: 7px 6px 2px;
}
.cw-empty {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  padding: 10px 6px;
}

@media (max-width: 820px) {
  .pm-cheat-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .pm-cheat-tab { white-space: nowrap; }
  .pm-cheat-main { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .pm-grid { grid-template-columns: 1fr; }
  .pm-media { min-height: 240px; }
  .pv-media { aspect-ratio: 16 / 10; }
  .pm-info { border-left: none; border-top: 1px solid var(--card-border); padding: 26px 22px; }
  .pm-bottom { padding: 24px 22px 28px; }
  .pm-feats { grid-template-columns: 1fr; }
  .pm-keys { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .req-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- product page view ---------- */

.pv-wrap {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

#page-product.phobia-active .pv-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#page-product.phobia-active .pv-back {
  align-self: flex-start;
}
#page-product.phobia-active .pm-grid {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-bottom: none;
  background:
    radial-gradient(700px circle at 15% 0%, rgba(167, 139, 250, 0.16), transparent 60%),
    radial-gradient(700px circle at 85% 0%, rgba(56, 189, 248, 0.1), transparent 60%),
    rgba(10, 13, 20, 0.45);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(167, 139, 250, 0.08);
}
#page-product.phobia-active .pv-media {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
#page-product.phobia-active .pm-info {
  border-radius: 0 10px 10px 0;
}
#page-product.phobia-active .pm-sec {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background:
    radial-gradient(500px circle at 10% 0%, rgba(167, 139, 250, 0.1), transparent 60%),
    rgba(10, 13, 20, 0.35);
}
#page-product.phobia-active .pm-sec .pm-desc-title,
#page-product.phobia-active .pm-sec .pm-feats-title,
#page-product.phobia-active .pm-sec .pm-reqs-title,
#page-product.phobia-active .pm-sec .pm-faq-title {
  color: #d8b4fe;
}
#page-product.phobia-active .pm-feat-group-title {
  color: #d8b4fe;
}
#page-product.phobia-active .pm-feat-chips span {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(167, 139, 250, 0.08);
}
#page-product.phobia-active .req-tile {
  border-color: rgba(167, 139, 250, 0.28);
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.09), rgba(167, 139, 250, 0.02));
}
#page-product.phobia-active .req-key { color: #c4b5fd; }
#page-product.phobia-active .faq-item {
  border-color: rgba(167, 139, 250, 0.22);
  background: rgba(167, 139, 250, 0.045);
}
#page-product.phobia-active .faq-item.open { border-color: rgba(167, 139, 250, 0.5); }
#page-product.phobia-active .faq-item.open .faq-q { color: #c4b5fd; }
#page-product.phobia-active .faq-q:hover { background: rgba(167, 139, 250, 0.07); }
#page-product.phobia-active .pm-name {
  background: linear-gradient(135deg, #e9d5ff, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#page-product.phobia-active .pv-cat {
  color: #d8b4fe;
  border-color: rgba(167, 139, 250, 0.4);
}

.pv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 6, 10, 0.55);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.pv-arrow:hover { background: rgba(56, 189, 248, 0.2); border-color: rgba(56, 189, 248, 0.5); }
.pv-arrow svg { width: 18px; height: 18px; }
.pv-prev { left: 14px; right: auto; }
.pv-next { right: 14px; left: auto; }
.pv-prev:hover { transform: translateY(-50%) translateX(-2px); }
.pv-next:hover { transform: translateY(-50%) translateX(2px); }

.pv-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid var(--card-border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.pv-back svg { width: 15px; height: 15px; }
.pv-back:hover { color: var(--text); border-color: rgba(56, 189, 248, 0.4); transform: translateX(-2px); }

.pv-media {
  aspect-ratio: auto;
  min-height: 100%;
}

.pv-bottom {
  border-top: 1px solid var(--card-border);
  margin-top: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .about-block { grid-template-columns: 1fr; gap: 36px; }
  .about-marquee { max-width: none; }
  .status-cols { grid-template-columns: 1fr; }
  .det-panel { position: static; }
  .online-panel { position: static; }
}

@media (max-width: 940px) {
  .nav { display: none; }
  .btn-dash span { display: none; }
  .btn-currency span { display: none; }
  .currency-chevron { display: none; }
  .category-grid, .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .category-grid, .features { grid-template-columns: 1fr; }
  .category-card, .feature-card { height: 210px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 12px 16px; gap: 14px; }
  .brand-tag { display: none; }
  .main { padding: 24px 16px 60px; }
  .hero { padding: 60px 0 40px; }
  .hero-stats { gap: 30px; }
  .btn-discord { padding: 9px 12px; }
  .status-hero { flex-direction: column; text-align: center; gap: 22px; }
  .status-hero-info { align-items: center; }
  .status-quick { margin-left: 0; gap: 34px; }
  .q-stat { text-align: center; }
  .status-grid { grid-template-columns: 1fr; }
  .rs-hero { flex-direction: column; gap: 26px; text-align: center; }
  .rs-breakdown { width: 100%; }
  .rs-side { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .t-stat:nth-child(2) { border-right: none; }
  .t-stat:nth-child(-n+2) { border-bottom: 1px solid var(--card-border); }
  .review-card.featured { grid-column: span 1; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 14px; }
  .btn-dash { display: none; }
}

/* ---------- down overlay ---------- */
#page-reviews.active {
  filter: blur(14px);
  pointer-events: none;
  user-select: none;
}
#reviews-down-overlay {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 1000;
  text-align: center;
  padding: 32px;
  pointer-events: auto;
  user-select: auto;
}
.down-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.down-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  animation: down-pulse 1.5s ease-in-out infinite;
}
@keyframes down-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.down-title {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.down-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}