/* ============================================================
   BOSS SERVICES — Design System
   All shared styles. Pages import this via <link>.
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:           #000000;
  --bg-card:      #111217;
  --bg-surface:   #16171e;
  --bg-elevated:  #1e1f28;
  --bg-input:     rgba(156,163,175,0.08);
  --border:       rgba(255,255,255,0.08);
  --border-mid:   rgba(255,255,255,0.12);
  --border-hover: rgba(255,255,255,0.2);

  --red:          #BD1E2D;
  --red-dark:     #9e1826;
  --red-glow:     rgba(189,30,45,0.25);
  --red-subtle:   rgba(189,30,45,0.12);
  --green:        #04DA8D;
  --green-subtle: rgba(4,218,141,0.12);
  --blue:         #1B84FF;
  --blue-subtle:  rgba(27,132,255,0.12);
  --yellow:       #E7B433;
  --yellow-subtle:rgba(231,180,51,0.12);

  --text:         #FAFAFA;
  --text-2:       #B5B7C8;
  --text-3:       #72737A;
  --text-4:       #4B5675;

  --font:         'Inter', system-ui, sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;

  --radius-sm:    6px;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --radius-full:  9999px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4);
  --shadow:       0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.6);

  --transition:   0.18s ease;
  --transition-slow: 0.32s ease;

  --nav-h:        72px;
  --sidebar-w:    260px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container--sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section--lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }

/* ── Typography ───────────────────────────────────────────── */
.h1 { font-size: clamp(36px,5vw,64px); font-weight: 800; letter-spacing: -0.02em; }
.h2 { font-size: clamp(28px,3.5vw,42px); font-weight: 700; }
.h3 { font-size: clamp(20px,2.5vw,28px); font-weight: 700; }
.h4 { font-size: 20px; font-weight: 600; }
.h5 { font-size: 16px; font-weight: 600; }
.body-lg { font-size: 17px; line-height: 1.7; }
.body { font-size: 15px; line-height: 1.7; }
.body-sm { font-size: 13px; line-height: 1.6; }
.label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.text-muted { color: var(--text-2); }
.text-dim { color: var(--text-3); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14px; border-radius: var(--radius);
  transition: all var(--transition); cursor: pointer; border: none;
  padding: 10px 20px; line-height: 1; white-space: nowrap; text-decoration: none;
}
.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 0 20px var(--red-glow); transform: translateY(-1px); }
.btn--secondary { background: var(--bg-elevated); color: var(--text); border: 1px solid var(--border); }
.btn--secondary:hover { border-color: var(--border-hover); background: var(--bg-surface); }
.btn--ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn--ghost:hover { color: var(--text); border-color: var(--border-hover); }
/* Keep button text colour on hover/focus — Blocksy's global a:hover turns links blue */
.btn--primary:hover, .btn--primary:focus { color: #fff; }
.btn--secondary:hover, .btn--secondary:focus { color: var(--text); }
.btn--ghost:focus { color: var(--text); }
a.btn:hover, a.btn:focus { text-decoration: none; }
.btn--green { background: var(--green); color: #000; font-weight: 700; }
.btn--green:hover { filter: brightness(1.1); }
.btn--lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--xs { padding: 5px 10px; font-size: 12px; border-radius: var(--radius-sm); }
.btn--pill { border-radius: var(--radius-full); }
.btn--full { width: 100%; }
.btn--icon { padding: 8px; width: 36px; height: 36px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.card--hover { transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.card--hover:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.card-body { padding: 20px; }
.card-body--lg { padding: 28px; }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: var(--radius-full); letter-spacing: 0.04em;
}
.badge--red { background: var(--red-subtle); color: var(--red); }
.badge--green { background: var(--green-subtle); color: var(--green); }
.badge--blue { background: var(--blue-subtle); color: var(--blue); }
.badge--yellow { background: var(--yellow-subtle); color: var(--yellow); }
.badge--gray { background: rgba(255,255,255,0.06); color: var(--text-2); }
.badge--dot::before {
  content:''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block; flex-shrink: 0;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.form-input {
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  padding: 10px 14px; font-size: 14px; transition: border-color var(--transition);
  outline: none; width: 100%;
}
select.form-input { background-color: #1e1f28; }
.form-input::placeholder { color: var(--text-3); }
.form-input:focus { border-color: var(--red); }
.form-input--lg { padding: 13px 16px; font-size: 15px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2372737A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-input { resize: vertical; min-height: 100px; }
/* ── Select / Option dark theme fix ──────────────────────────
   Native <option> lists ignore CSS variables and always render
   with an OS-default white background. We force a solid dark
   background on the <select> element itself AND on every <option>
   so the popup is readable on dark-themed pages. */
select.form-input,
select.form-input option,
select.form-input optgroup {
  background-color: #1e1f28;
  color: #FAFAFA;
}
select.form-input option:checked,
select.form-input option:hover {
  background-color: #2c2d3a;
  color: #FAFAFA;
}
/* Inline selects that don't use .form-input (e.g. table row status pickers) */
select:not(.form-input) {
  background-color: #1e1f28;
  color: #FAFAFA;
}
select:not(.form-input) option,
select:not(.form-input) optgroup {
  background-color: #1e1f28;
  color: #FAFAFA;
}

/* ── Nav ──────────────────────────────────────────────────── */
#main-nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 14px;
}
/* Every interactive surface in the nav uses this exact height */
.nav-inner .nav-game-select,
.nav-inner .nav-search,
.nav-inner .nav-lang-btn,
.nav-inner .nav-more-btn,
.nav-inner .btn--sm { height: 40px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 4px; }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-game-select {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); border: 1px solid var(--red);
  border-radius: var(--radius-full); padding: 0 18px; font-size: 13px; font-weight: 600;
  color: #fff; cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.nav-game-select:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 0 16px var(--red-glow); }
.nav-game-select svg { opacity: .9; }
.nav-search {
  flex: 1; max-width: 560px; min-width: 200px; margin: 0 auto;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0 16px;
  display: flex; align-items: center; gap: 10px; transition: border-color var(--transition);
}
.nav-search:focus-within { border-color: var(--red); }
.nav-search input { background: none; border: none; outline: none; color: var(--text); font-size: 14px; width: 100%; height: 100%; }
.nav-search input::placeholder { color: var(--text-3); }
.nav-search svg { flex-shrink: 0; color: var(--text-3); }
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-lang-btn {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  color: var(--text-2);
  padding: 0 12px; border-radius: var(--radius-full); border: 1px solid var(--border);
  background: var(--bg-input);
  transition: all var(--transition);
}
.nav-lang-btn:hover { color: var(--text); border-color: var(--border-hover); }
.nav-right .btn--sm { padding: 0 18px; border-radius: var(--radius-full); font-size: 13px; }

/* ── WP: nav elements not in prototype ── */
.nav-outer { /* matches #main-nav; just an alias class */ }
.nav-games-wrap { position: relative; }

/* Cart icon */
.nav-cart-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  color: var(--text-2); position: relative;
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-cart-btn:hover { color: var(--text); }
.nav-cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 800; line-height: 1;
  min-width: 14px; height: 14px;
  border-radius: 999px; padding: 0 3px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

/* Logged-in user button */
.nav-user-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 12px; height: 40px; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: var(--bg-input);
  color: var(--text); font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.nav-user-btn:hover { border-color: var(--red); }
/* Keep the name/text from ever turning link-blue on hover/focus. */
.nav-user-btn,
.nav-user-btn:hover,
.nav-user-btn:focus,
.nav-user-btn:hover .nav-user-name,
.nav-user-name { color: var(--text); text-decoration: none; }
.nav-user-avatar {
  position: relative; overflow: hidden;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-account-wrap { display: flex; align-items: center; }
/* Avatar image (uploaded or real Gravatar) layers over the red initial;
   a "blank" Gravatar is transparent, so no-avatar users keep the letter. */
.nav-user-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-user-name { white-space: nowrap; }

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--bg-input); border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer;
  transition: all var(--transition); flex-shrink: 0;
}
.nav-mobile-toggle:hover { color: var(--text); border-color: var(--border-hover); }

/* Mobile drawer */
.nav-drawer { display: none; }

.nav-plain-link {
  display: inline-flex; align-items: center;
  font-size: 13.5px; font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-plain-link:hover { color: var(--text); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 200px; z-index: 200;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: all var(--transition);
}
.dropdown-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-2);
  cursor: pointer; transition: all var(--transition);
}
.dropdown-item:hover { background: var(--bg-elevated); color: var(--text); }
.dropdown-item.active { color: var(--red); }

/* More dropdown */
.more-dropdown-menu { padding: 6px; }
.more-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 9px 12px !important;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-2);
  transition: all var(--transition);
}
.more-item svg { color: var(--text-3); flex-shrink: 0; transition: color var(--transition); }
.more-item:hover { background: var(--bg-elevated); color: var(--text); }
.more-item:hover svg { color: var(--red); }
.more-divider { height: 1px; background: var(--border); margin: 6px 0; }
.more-legal-label {
  padding: 4px 12px 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-4);
}
.more-item--legal {
  font-size: 13px;
  color: var(--text-3);
  padding: 7px 12px !important;
}
.more-item--legal:hover { color: var(--text-2); }

/* Mega dropdown for games — absolutely positioned under the Browse Games button */
.game-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 0;
  width: 780px; z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  overflow: hidden;
}
.game-dropdown.open { opacity: 1; transform: none; pointer-events: auto; }

/* Search bar inside dropdown */
.game-dropdown-search {
  padding: 14px 16px 0;
}
.game-dropdown-search-inner {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0 14px; height: 38px;
  transition: border-color var(--transition);
}
.game-dropdown-search-inner:focus-within { border-color: var(--red); }
.game-dropdown-search-inner svg { color: var(--text-3); flex-shrink: 0; }
.game-dropdown-search-inner input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 13px; height: 100%;
}
.game-dropdown-search-inner input::placeholder { color: var(--text-3); }

/* Category filter chips */
.game-dropdown-filters {
  display: flex; gap: 6px; padding: 10px 16px 0; flex-wrap: wrap;
}
.game-dropdown-filter {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: var(--radius-full); border: 1px solid var(--border);
  color: var(--text-3); cursor: pointer; background: none;
  transition: all var(--transition); white-space: nowrap;
}
.game-dropdown-filter:hover { border-color: var(--border-hover); color: var(--text-2); }
.game-dropdown-filter.active { background: var(--red-subtle); border-color: var(--red); color: var(--red); }

/* Scrollable grid area */
.game-dropdown-body {
  padding: 12px 16px 16px;
  max-height: 380px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.game-dropdown-body::-webkit-scrollbar { width: 4px; }
.game-dropdown-body::-webkit-scrollbar-track { background: transparent; }
.game-dropdown-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.game-dropdown-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
.game-dropdown-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 10px 6px; border-radius: var(--radius-lg); cursor: pointer;
  transition: all var(--transition); text-align: center;
  border: 1px solid transparent;
  text-decoration: none;
}
.game-dropdown-item:hover {
  background: var(--bg-elevated);
  border-color: var(--border);
}
.game-dropdown-item:hover span { color: var(--text); }

/* Icon wrapper — clips to rounded square cleanly */
.game-dropdown-item .gd-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px var(--border);
}
.game-dropdown-item img {
  width: 52px; height: 52px;
  border-radius: 0; /* clipped by wrapper */
  object-fit: cover; display: block;
}
.game-dropdown-item .game-icon {
  width: 52px; height: 52px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.3);
}
.game-dropdown-item span {
  font-size: 11px; font-weight: 600; color: var(--text-2);
  line-height: 1.25; word-break: break-word;
}

/* Footer bar */
.game-dropdown-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-top: 1px solid var(--border);
  background: var(--bg);
}
.game-dropdown-footer span { font-size: 12px; color: var(--text-3); }
.game-dropdown-footer a { font-size: 12px; color: var(--red); font-weight: 600; }
.game-dropdown-footer a:hover { text-decoration: underline; }

/* ── Mobile-only close button on games sheet (hidden on desktop) ── */
.game-dropdown-mobile-close { display: none; }

/* ── Mobile nav drawer + backdrop — hidden on desktop ── */
.nav-drawer, .nav-drawer-backdrop { display: none; }
#mobile-menu-btn { display: none; }

/* ── Footer ───────────────────────────────────────────────── */
#main-footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 0 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-2); font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-2); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text); }


.footer-bottom {
  padding-top: 24px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--bg-surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all var(--transition);
}
.footer-social a:hover { color: var(--text); border-color: var(--border-hover); background: rgba(189,30,45,0.12); }
/* Bottom-row social (smaller, in footer-bottom) */
.footer-social-bottom { display: flex; gap: 8px; }
.footer-social-bottom a {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: var(--bg-surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all var(--transition);
}
.footer-social-bottom a:hover { color: var(--text); border-color: var(--border-hover); background: rgba(189,30,45,0.12); }
.footer-copy { font-size: 13px; color: var(--text-3); }

/* ── New Footer Layout ─────────────────────────────────────── */

/* Payment methods strip */
.footer-pay-strip {
  border-bottom: 1px solid var(--border);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-pay-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.fp-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 56px;
}
.fp-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}
.fp-logo-img {
  height: 38px;
  width: auto;
  max-width: 96px;
  display: block;
  opacity: 0.80;
  transition: opacity var(--transition);
}
.fp-logo-img:hover { opacity: 1; }
/* Per-brand height tweaks so all read at the same visual weight */
.fp-logo-img[alt="Visa"]       { height: 30px; }
.fp-logo-img[alt="Mastercard"] { height: 40px; }
.fp-logo-img[alt="Apple Pay"]  { height: 36px; }
.fp-logo-img[alt="Google Pay"] { height: 30px; }
.fp-logo-img[alt="Cash App"]   { height: 38px; }
.fp-logo-img[alt="Crypto"]     { height: 36px; }
.fp-logo-img[alt="EPS"]        { height: 26px; }
.fp-logo-img[alt="iDEAL"]      { height: 36px; }
/* WP: payment logo text fallback (shown until owner uploads real logo PNGs) */
.fp-logo-text {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  white-space: nowrap; letter-spacing: .04em;
  opacity: 0.7;
}

/* Footer logo */
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .footer-pay-strip { padding: 16px 20px; }
  .fp-logo-wrap { padding: 0 16px; }
  .fp-logo { height: 16px; }
  .fp-logo[alt="Cash App"]  { height: 18px; }
  .fp-logo[alt="EPS"]       { height: 21px; }
  .fp-logo[alt="iDEAL"]     { height: 21px; }
}
@media (max-width: 480px) {
  .fp-logo-wrap { padding: 0 10px; }
  .fp-sep { height: 18px; }
}

/* Top section: brand, link cols, contact card */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 0 0 auto; }
.footer-contact-card { flex: 0 0 auto; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-cols {
  display: flex;
  gap: 56px;
  flex: 1 1 auto;
  justify-content: center;
  align-items: flex-start;
}
.footer-col { min-width: 110px; text-align: center; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; color: var(--text);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-2); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text); }

/* Contact card */
.footer-contact-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  min-width: 220px;
}
.fcc-link { font-size: 13px; color: var(--text-2); }
.fcc-link:hover { color: var(--text); }
.fcc-chat {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 6px;
  background: var(--red);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 9px 15px; border-radius: var(--radius-sm);
  align-self: flex-start;
  transition: background var(--transition);
}
.fcc-chat:hover { background: var(--red-hover, #d11e2c); color: #fff; }

/* Bottom bar */
.footer-bottom {
  padding-top: 16px;
  padding-bottom: 20px;
  display: flex; align-items: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-top { flex-direction: column; align-items: stretch; gap: 32px; }
  .footer-brand { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-cols { justify-content: flex-start; gap: 40px; flex-wrap: wrap; }
  .footer-contact-card { max-width: 100%; }
}
@media (max-width: 720px) {
  .footer-top { flex-direction: column; align-items: stretch; gap: 28px; }
  .footer-brand { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  /* 4 columns become a centered 2×2 grid that always fits */
  .footer-cols { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 24px 12px; justify-items: center; }
  .footer-col { min-width: 0; width: 100%; }
  .footer-contact-card { width: 100%; min-width: 0; }
  .footer-payments-inner { gap: 0; }
  .fp-item { padding: 8px 20px; }
}

/* ── Game Card ────────────────────────────────────────────── */
.game-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; display: flex; flex-direction: column;
  justify-content: flex-end; background: var(--bg-surface);
  border: 1px solid var(--border); transition: all var(--transition-slow);
}
.game-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1; transition: opacity var(--transition);
}
.game-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 8px 32px var(--red-glow); }
.game-card .game-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; transition: transform var(--transition-slow); }
.game-card:hover .game-bg { transform: scale(1.06); }
.game-card .game-info { position: relative; z-index: 2; padding: 16px; }
.game-card .game-info h4 { font-size: 15px; font-weight: 700; line-height: 1.2; }
.game-card .game-info .game-cats { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.game-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 800; color: rgba(255,255,255,0.06);
  text-transform: uppercase; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
}

/* ── Stats ────────────────────────────────────────────────── */
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; }
.stat-card .stat-label { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-card .stat-value { font-size: 28px; font-weight: 800; font-family: var(--font-display); margin-top: 6px; }
.stat-card .stat-change { font-size: 12px; font-weight: 600; margin-top: 4px; }

/* ── Table ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead th { background: var(--bg-elevated); padding: 12px 16px; font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; text-align: left; white-space: nowrap; }
tbody tr { border-top: 1px solid var(--border); transition: background var(--transition); }
tbody tr:hover { background: rgba(255,255,255,0.02); }
tbody td { padding: 14px 16px; font-size: 14px; color: var(--text-2); }
tbody td strong { color: var(--text); font-weight: 600; }

/* ── Sidebar (Admin/Dashboard) ────────────────────────────── */
.sidebar {
  width: var(--sidebar-w); height: 100vh; position: fixed; left: 0; top: 0;
  background: var(--bg-card); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; z-index: 100; overflow-y: auto;
}
.sidebar-logo { padding: 20px 20px 14px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.sidebar-logo img { height: 32px; }
.sidebar-nav { padding: 12px; flex: 1; }
.sidebar-section-title { font-size: 10px; font-weight: 700; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.1em; padding: 12px 10px 6px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--text-3);
  cursor: pointer; transition: all var(--transition); margin-bottom: 2px;
}
.sidebar-item svg { flex-shrink: 0; width: 18px; height: 18px; }
.sidebar-item:hover { background: var(--bg-elevated); color: var(--text-2); }
.sidebar-item.active { background: var(--red-subtle); color: var(--red); }
.sidebar-item.active svg { color: var(--red); }
.sidebar-bottom { padding: 12px; border-top: 1px solid var(--border); }
.main-content { margin-left: var(--sidebar-w); padding: 32px; min-height: 100vh; }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.page-title { font-size: 24px; font-weight: 800; }
.page-subtitle { font-size: 14px; color: var(--text-3); margin-top: 4px; }

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center; z-index: 2000;
  padding: 20px; backdrop-filter: blur(4px);
}
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; width: 100%; max-width: 520px;
  box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto;
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-size: 18px; font-weight: 700; }
.modal-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--text-3); transition: all var(--transition); }
.modal-close:hover { background: var(--bg-elevated); color: var(--text); }

/* ── Toast ────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; pointer-events: auto;
  animation: toastIn 0.3s ease; max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.toast--success { border-color: var(--green); }
.toast--error { border-color: var(--red); }
.toast--success .toast-icon { color: var(--green); }
.toast--error .toast-icon { color: var(--red); }
@keyframes toastIn { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform:none; } }

/* ── Misc ─────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--red); flex-shrink: 0;
}
.avatar--lg { width: 48px; height: 48px; font-size: 18px; }
.progress-bar { height: 6px; background: var(--bg-elevated); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { height: 100%; border-radius: var(--radius-full); background: var(--red); transition: width 0.4s ease; }
.progress-fill--green { background: var(--green); }
.stars { display: flex; gap: 2px; color: var(--yellow); }
.rating-star { font-size: 14px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-3); }
.empty-state svg { margin: 0 auto 16px; opacity: 0.3; }
.empty-state h4 { color: var(--text-2); margin-bottom: 8px; }
.spin { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container--sm { padding: 0 24px; }
  .grid-4 { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-search { max-width: 280px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  /* Safety net: prevent any phantom horizontal overflow on mobile */
  html, body { overflow-x: clip; }
  body { font-size: 14px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ===== Tighter typography on mobile ===== */
  .h1 { font-size: clamp(28px, 8vw, 36px); letter-spacing: -0.02em; }
  .h2 { font-size: clamp(22px, 6vw, 28px); }
  .h3 { font-size: 18px; }
  .h4 { font-size: 16px; }
  .h5 { font-size: 14px; }
  .body-lg { font-size: 15px; line-height: 1.6; }
  .body { font-size: 14px; line-height: 1.6; }
  .body-sm { font-size: 12.5px; }

  /* Smaller / tighter buttons but still touch-friendly */
  .btn { padding: 11px 18px; font-size: 14px; min-height: 44px; }
  .btn--lg { padding: 13px 22px; font-size: 15px; min-height: 48px; }
  .btn--sm { padding: 8px 14px; font-size: 13px; min-height: 36px; }
  .btn--xs { padding: 6px 10px; font-size: 12px; min-height: 0; }

  /* Card padding tightening */
  .card-body { padding: 16px; }
  .card-body--lg { padding: 18px; }

  /* ===== Mobile nav: logo + Browse Games pill (left) · cart + hamburger (right) ===== */
  .nav-inner { padding: 0 10px; gap: 8px; }
  .nav-logo { flex-shrink: 0; }
  .nav-logo img { height: 32px; }
  /* Hide the search bar on mobile (it's redundant with Browse Games) */
  .nav-inner .nav-search { display: none !important; }
  /* Browse Games pill — compact, sits right after the logo */
  .nav-inner .nav-games-wrap { display: block !important; flex-shrink: 0; }
  .nav-inner .nav-game-select {
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 12.5px !important;
    gap: 6px !important;
  }
  .nav-inner .nav-game-select svg:last-child { display: none; } /* drop the chevron to save width */
  /* Right cluster: cart + hamburger only */
  .nav-inner > .nav-right {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-right .nav-lang-btn,
  .nav-right .nav-more-wrap,
  .nav-right .js-auth-open { display: none !important; }
  .nav-right .nav-cart-btn { display: inline-flex !important; }
  /* Logged-in account button on mobile = avatar circle only (no name),
     so the cart + hamburger ("More") all fit on the row. Guests still use
     the drawer for Sign In / Register (hidden above). */
  .nav-right .nav-account-wrap { display: flex !important; }
  .nav-right .nav-user-btn {
    height: 36px; width: 36px; padding: 0; gap: 0;
    border-radius: 50%; justify-content: center;
  }
  .nav-right .nav-user-avatar { width: 30px; height: 30px; font-size: 12px; }
  .nav-right .nav-user-name { display: none; }
  /* Show hamburger */
  .nav-mobile-toggle { display: flex !important; }
  /* Show hamburger — prototype version */
  #mobile-menu-btn {
    display: flex !important;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    cursor: pointer;
    padding: 0 !important;
    flex-shrink: 0;
  }
  #mobile-menu-btn:hover { background: var(--bg-elevated); }

  /* ===== Mobile nav drawer (slides in from right) ===== */
  .nav-drawer {
    position: fixed;
    top: 0; bottom: 0;
    right: -100%;
    width: min(86%, 360px);
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1300;            /* above the site header (1000) + games sheet (1200) */
    transition: right 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex; flex-direction: column;
    box-shadow: -16px 0 40px rgba(0,0,0,0.4);
  }
  .nav-drawer.open { right: 0; }
  .nav-drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 290;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .nav-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

  .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 18px 14px;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0;
    background: var(--bg-card);
    z-index: 2;
    flex-shrink: 0;
  }
  .nav-drawer-head img { height: 36px; width: auto; }
  .nav-drawer-close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-2); cursor: pointer;
  }
  .nav-drawer-close:hover { color: var(--text); background: var(--bg-elevated); }

  .nav-drawer-body { padding: 14px 16px 24px; flex: 1; }

  /* Big Browse Games CTA at top of drawer */
  .nav-drawer-browse {
    display: flex; align-items: center; gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: var(--red); color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    margin-bottom: 14px;
  }
  .nav-drawer-browse:hover { background: var(--red-dark); }
  .nav-drawer-browse svg { flex-shrink: 0; }
  .nav-drawer-browse .nav-drawer-chev { margin-left: auto; opacity: 0.85; }

  /* Drawer search input */
  .nav-drawer-search {
    display: flex; align-items: center; gap: 10px;
    height: 46px;
    padding: 0 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 18px;
  }
  .nav-drawer-search svg { color: var(--text-3); flex-shrink: 0; }
  .nav-drawer-search input {
    flex: 1;
    background: none; border: none; outline: none;
    font-size: 15px; color: var(--text);
  }

  /* Auth buttons inside drawer */
  .nav-drawer-auth {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 22px;
  }
  .nav-drawer-auth .btn { height: 46px; font-size: 14px; border-radius: var(--radius); }
  .nav-drawer-user {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    margin-bottom: 18px;
  }
  .nav-drawer-user-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--red-subtle); color: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
  }
  .nav-drawer-user-name { font-size: 14px; font-weight: 600; }
  .nav-drawer-user-role { font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }

  /* Section labels */
  .nav-drawer-section-label {
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-3);
    padding: 14px 4px 8px;
  }

  /* Link list */
  .nav-drawer-link {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px; font-weight: 500;
    border-radius: var(--radius);
    transition: background var(--transition);
    min-height: 48px;
  }
  .nav-drawer-link:hover, .nav-drawer-link:active { background: var(--bg-elevated); }
  .nav-drawer-link svg { color: var(--text-3); flex-shrink: 0; }
  .nav-drawer-link.danger { color: var(--red); }
  .nav-drawer-link.danger svg { color: var(--red); }

  /* Currency segmented selector at bottom */
  .nav-drawer-currency {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    background: var(--bg-elevated);
    padding: 4px;
    border-radius: var(--radius);
    margin-top: 14px;
  }
  .nav-drawer-currency button {
    background: transparent; border: 0;
    padding: 10px 4px;
    border-radius: calc(var(--radius) - 2px);
    color: var(--text-2);
    font-size: 12.5px; font-weight: 600;
    cursor: pointer;
  }
  .nav-drawer-currency button.active { background: var(--red); color: #fff; }

  /* ── WP drawer: overlay + plain links section ── */
  .nav-drawer-overlay {
    position: fixed; inset: 0; z-index: -1;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(2px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .nav-drawer.open .nav-drawer-overlay { opacity: 1; pointer-events: auto; }
  .nav-drawer-inner { display: flex; flex-direction: column; height: 100%; overflow-y: auto; position: relative; z-index: 1; }
  .nav-drawer-section { padding: 14px 16px 8px; border-bottom: 1px solid var(--border); }
  .nav-drawer-label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }

  /* ── Rebuilt drawer: scroll area, browse CTA, games grid, links ── */
  .nav-drawer-scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 14px 16px 20px; display: flex; flex-direction: column; gap: 18px; }
  .nav-drawer-block { display: flex; flex-direction: column; gap: 4px; }
  .nav-drawer-block-label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); padding: 0 2px 6px; }

  .nav-drawer-games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .nav-drawer-game { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 6px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elevated); text-decoration: none; transition: border-color .15s ease, background .15s ease; }
  .nav-drawer-game:active, .nav-drawer-game:hover { border-color: rgba(189,30,45,0.45); background: var(--bg-card); }
  .nav-drawer-game-ic { width: 50px; height: 50px; border-radius: 12px; overflow: hidden; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-drawer-game-ic img { width: 100%; height: 100%; object-fit: cover; }
  .nav-drawer-game-ic span { font-size: 14px; font-weight: 800; color: var(--red); }
  .nav-drawer-game-name { font-size: 11.5px; font-weight: 600; color: var(--text-2); text-align: center; line-height: 1.25; }
  .nav-drawer-links { display: flex; flex-direction: column; padding: 12px 16px 8px; gap: 2px; }
  .nav-drawer-links a { display: flex; align-items: center; padding: 11px 12px; font-size: 15px; font-weight: 500; color: var(--text); border-radius: var(--radius); transition: background var(--transition); text-decoration: none; }
  .nav-drawer-links a:hover { background: var(--bg-elevated); }
  .nav-drawer-auth { padding: 14px 16px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
  .nav-drawer-auth .btn { height: 46px; font-size: 14px; border-radius: var(--radius); }
  /* When logged in, single full-width button */
  .nav-drawer-auth .nav-user-btn { grid-column: 1 / -1; width: 100%; justify-content: center; }

  .section { padding: 36px 0; }
  .section--lg { padding: 52px 0; }
  .stat-card { padding: 14px 16px; }
  .stat-card .stat-value { font-size: 22px; }
  .stat-card .stat-label { font-size: 11px; }
  /* Browse Games on mobile becomes a full-screen sheet ABOVE the header
     (header is z-index 1000) so its close button is never hidden behind it. */
  .game-dropdown {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: auto !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    background: #0a0a0e !important;   /* solid, opaque — never see the page behind */
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    z-index: 1300 !important;          /* above header (1000) */
    transform: translateY(16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    display: flex !important; flex-direction: column !important;
    overflow: hidden !important;
  }
  .game-dropdown.open { transform: translateY(0); }
  .game-dropdown-mobile-close {
    display: flex; align-items: center; gap: 6px;
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 14px); right: 14px;
    z-index: 4;
    font-size: 13px; font-weight: 600;
    padding: 8px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    cursor: pointer;
    min-height: 36px;
  }
  .game-dropdown-mobile-close:hover { background: var(--bg-card); }
  .game-dropdown::before { display: none; }
  .game-dropdown-search { padding: calc(env(safe-area-inset-top, 0px) + 64px) 18px 0; }
  .game-dropdown-search-inner { height: 48px; padding: 0 14px; }
  .game-dropdown-search-inner input { font-size: 15px; }
  .game-dropdown-filters { padding: 12px 18px 0; }
  .game-dropdown-filter { font-size: 13px; padding: 8px 14px; min-height: 36px; }
  .game-dropdown-body { max-height: none; flex: 1; padding: 16px 18px 28px; }
  .game-dropdown-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .game-dropdown-item { padding: 12px 8px; }
  .game-dropdown-item .gd-icon-wrap,
  .game-dropdown-item img { width: 64px; height: 64px; }
  .game-dropdown-item span { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .main-content { margin-left: 0; padding: 20px; }
  .sidebar { transform: translateX(-100%); transition: transform var(--transition-slow); }
  .sidebar.open { transform: none; }
}
@media (max-width: 480px) {
  .container, .container--sm { padding: 0 14px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 10px; gap: 6px; }
  .nav-search { display: none; }
  .section { padding: 28px 0; }
  .section--lg { padding: 40px 0; }
  /* Compact hero pages everywhere */
  .page-hero { padding: 40px 0 28px; }
  .page-hero-inner { padding: 0 16px; }
  .page-hero-title { font-size: clamp(26px, 8vw, 32px) !important; margin-bottom: 12px; }
  .page-hero-sub { font-size: 14px; margin-bottom: 14px; line-height: 1.55; }
  .page-hero-eyebrow { font-size: 10.5px; padding: 4px 10px; margin-bottom: 14px; }
  /* Smaller game-card text */
  .game-card .game-info { padding: 10px; }
  .game-card .game-info h4 { font-size: 13px; }
  /* Modal padding */
  .modal { padding: 20px 18px; border-radius: var(--radius-lg); }
  .modal-title { font-size: 16px; }
  /* Tighter Browse Games pill on very small screens */
  .nav-inner .nav-game-select {
    height: 36px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }
}

/* ── Footer Games Section ───────────────────────────────────── */
.footer-games-section {
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.footer-games-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 24px;
}
.footer-games-title {
  font-family: var(--font-display, 'Manrope', sans-serif);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0;
}
.footer-games-sub {
  font-size: 13px;
  color: var(--text-3);
}
.footer-games-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 8px 18px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s ease, border-color .15s ease;
}
.footer-games-cta:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
}
.footer-games-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.fg-tile {
  flex: 0 0 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px 8px;
  background: var(--bg-card, #111217);
  border: 1px solid var(--border, rgba(255,255,255,0.07));
  border-radius: 10px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  overflow: hidden;
  cursor: pointer;
}
.fg-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(189,30,45,0.5);
  background: #131521;
}
.fg-tile img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter .18s ease, transform .18s ease;
}
.fg-tile:hover img {
  filter: none;
  transform: scale(1.06);
}
.fg-tile-name {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-3, #72737A);
  text-align: center;
  line-height: 1.25;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .15s ease;
}
.fg-tile:hover .fg-tile-name { color: var(--text-2); }
.fg-tile-fallback {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: rgba(189,30,45,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display, sans-serif);
  font-size: 10px; font-weight: 800;
  color: var(--red, #BD1E2D);
  letter-spacing: -0.02em;
}
.fg-tile.fg-hidden { display: none; }
.footer-games-toggle {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.footer-games-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.footer-games-toggle-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
}
@media (max-width: 480px) { .fg-tile { flex: 0 0 76px; } }


/* ════════════════════════════════════════════════════════════
   PAGE HERO — shared across faq / contact / blog / reviews /
   terms / privacy / refund / cookies / account-safety / careers
   ════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(189,30,45,0.16) 0%, transparent 55%),
    #050508;
  padding: 88px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero--blue {
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(27,132,255,0.16) 0%, transparent 55%),
    #050508;
}
.page-hero--gold {
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(231,180,51,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(189,30,45,0.08) 0%, transparent 60%),
    #050508;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.016'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; padding: 0 40px;
  text-align: center;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red);
  padding: 5px 14px;
  background: var(--red-subtle);
  border: 1px solid rgba(189,30,45,0.3);
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0;
  text-transform: uppercase; margin-bottom: 18px;
}
.page-hero-title .accent { color: var(--red); }
.page-hero-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  max-width: 540px; margin: 0 auto 22px;
}
.page-hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--text-3);
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--bg-card); border: 1px solid var(--border);
}
.page-hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-4); }
.page-hero-meta strong { color: var(--text-2); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   LEGAL DOC — shared by terms / privacy / refund / cookies
   ════════════════════════════════════════════════════════════ */
.legal-body { background: #050508; padding: 56px 0 96px; }
.legal-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.doc-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 32px;
}
.doc-card {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit; font-family: inherit;
  cursor: pointer; text-align: left; width: 100%;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.doc-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.doc-card.active {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(189,30,45,0.10) 0%, var(--bg-card) 80%);
  box-shadow: 0 0 0 1px var(--red), 0 8px 24px rgba(189,30,45,0.18);
}
.doc-card.active .doc-icon { background: var(--red); color: #fff; }
.doc-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.doc-icon svg { width: 20px; height: 20px; }
.doc-body { flex: 1; min-width: 0; }
.doc-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; line-height: 1.2; }
.doc-sub { font-size: 12.5px; color: var(--text-3); }
.legal-shell {
  display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start;
}
.legal-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 44px;
}
.doc-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 24px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.doc-head .ico {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--red-subtle); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.doc-head .ico svg { width: 22px; height: 22px; }
.doc-head h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.01em; margin: 0;
}
.doc-head p { font-size: 13px; color: var(--text-3); margin-top: 2px; }
.legal-content > .lede {
  font-size: 16px; color: var(--text-2); line-height: 1.75;
  padding: 18px 20px; border-left: 3px solid var(--red);
  background: var(--bg-input); border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--text);
  margin: 36px 0 12px; scroll-margin-top: 96px;
  display: flex; align-items: baseline; gap: 12px;
  letter-spacing: -0.005em;
}
.legal-content h3 .num {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px; color: var(--text-4); font-weight: 500;
  letter-spacing: 0.04em;
}
.legal-content p {
  font-size: 14.5px; color: var(--text-2); line-height: 1.85;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin: 8px 0 12px;
}
.legal-content ul li {
  font-size: 14.5px; color: var(--text-2); line-height: 1.7;
  padding-left: 22px; position: relative;
}
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-4);
}
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a { color: var(--red); }
.legal-content a:hover { text-decoration: underline; }
.pill-list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 16px; }
.pill-list li {
  padding: 12px 14px 12px 38px !important;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
}
.pill-list li::before {
  content: ''; left: 14px !important; top: 14px !important;
  width: 14px !important; height: 14px !important;
  border-radius: 50% !important; background: transparent !important;
}
.pill-list.ok li::before   { background: var(--green) !important;  box-shadow: 0 0 0 4px var(--green-subtle); }
.pill-list.warn li::before { background: var(--yellow) !important; box-shadow: 0 0 0 4px var(--yellow-subtle); }
.pill-list.no li::before   { background: var(--red) !important;    box-shadow: 0 0 0 4px var(--red-subtle); }
.doc-foot {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.doc-foot-meta { font-size: 12px; color: var(--text-3); }
.doc-foot-meta strong { color: var(--text-2); font-weight: 600; }
.legal-aside {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: calc(var(--nav-h, 72px) + 24px);
}
.side-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 22px;
}
.side-card h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.toc { display: flex; flex-direction: column; }
.toc a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 13px; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color .2s ease, padding-left .2s ease;
  text-decoration: none;
}
.toc a:last-child { border-bottom: none; }
.toc a:hover { color: var(--text); padding-left: 4px; }
.toc a .num {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px; color: var(--text-4); flex-shrink: 0;
  width: 22px;
}
.toc a.active { color: var(--red); }
.toc a.active .num { color: var(--red); }
.hl-list { display: flex; flex-direction: column; }
.hl-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; font-size: 13px; color: var(--text-2);
  text-decoration: none; transition: color .2s ease, padding-left .2s ease;
  border-bottom: 1px solid var(--border);
}
.hl-item:last-child { border-bottom: none; }
.hl-item:hover { color: var(--text); padding-left: 4px; }
.hl-item .ico {
  width: 22px; height: 22px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; color: var(--text-3);
}
.hl-item:hover .ico { color: var(--text); }
.hl-item .arrow { margin-left: auto; color: var(--text-4); }
.contact-cta {
  padding: 22px;
  background: linear-gradient(180deg, rgba(189,30,45,0.10) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.contact-cta h5 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800; margin-bottom: 6px;
}
.contact-cta p { font-size: 12.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
@media (max-width: 1080px) { .doc-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
  .legal-shell { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
}
@media (max-width: 640px) {
  .doc-row { grid-template-columns: 1fr; }
  .legal-card { padding: 28px 22px; }
  .legal-wrap { padding: 0 20px; }
}

/* ── Skip-to-content (a11y) ───────────────────────────────── */
.skip-link {
  position: absolute; left: 0; top: 0;
  padding: 10px 16px; background: var(--red); color: #fff;
  font-weight: 600; font-size: 14px; z-index: 9999;
  transform: translateY(-100%); transition: transform .15s;
}
.skip-link:focus { transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   MOBILE OVERRIDES (rev3) — keep this last so it wins.
   Compacts inline page styles for index, game, product,
   dashboards, legal, blog and forms at ≤768px.
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Page hero (terms / privacy / faq / contact / reviews / careers / etc.) ── */
  .page-hero { padding: 48px 0 32px; }
  .page-hero-inner { padding: 0 18px; }
  .page-hero-title { font-size: clamp(28px, 7vw, 38px) !important; line-height: 1.05; margin-bottom: 14px; }
  .page-hero-sub { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
  .page-hero-eyebrow { font-size: 11px; padding: 4px 10px; margin-bottom: 16px; }

  /* ── Index hero ── */
  .hero-split { min-height: 0 !important; height: auto !important; padding: 28px 0 36px; }
  .hero-col-center { padding: 16px !important; gap: 14px; }
  .hero-title { font-size: clamp(34px, 9vw, 44px) !important; line-height: 1.0 !important; margin-bottom: 14px !important; letter-spacing: -0.03em; }
  .hero-sub { font-size: 14.5px !important; margin: 0 auto 18px !important; line-height: 1.55 !important; }
  .hero-actions { gap: 8px !important; margin-bottom: 16px !important; }
  .hero-actions .btn { flex: 1; min-width: 0; }
  .hero-games-header { padding: 0 16px 12px !important; }
  .hero-games-title { font-size: 18px !important; }
  .hero-games-search { padding: 0 16px !important; margin-bottom: 14px !important; }
  .hero-games-grid { padding: 0 16px 36px !important; gap: 6px !important; }
  .hg-tile { aspect-ratio: 1/1; }
  .hg-tile img { width: 44px !important; height: 44px !important; }
  .hg-tile-fallback { font-size: 11px !important; }

  /* ── Index "How it works" + browser mock ── */
  .hiw-step-item { padding: 12px 14px !important; }
  .hiw-step-title { font-size: 14px !important; }
  .hiw-step-desc { font-size: 12.5px !important; }
  .hiw-browser-tab span { max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  /* Hide decorative mobile-of-mobile fake browser frames on actual mobile */
  .m-nav, .m-hero-tiles, .m-hero-center { padding-left: 12px !important; padding-right: 12px !important; }
  .m-hero-h1 { font-size: 32px !important; }
  .m-gp-title { font-size: 22px !important; }
  .m-shell { grid-template-columns: 1fr !important; padding: 12px !important; gap: 12px !important; }

  /* ── Game page (game.html) ── */
  .gp-hero-title { font-size: 22px !important; }
  .gp-shell { padding: 16px 14px 32px !important; gap: 14px !important; }
  .gp-hero-inner { padding: 16px 14px !important; }
  .products-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .seo-inner { grid-template-columns: 1fr !important; gap: 24px !important; padding: 0 16px !important; }
  .seo-title { font-size: 18px !important; }

  /* ── Product configurator (product.html) ── */
  .pp-image-row { grid-template-columns: 1fr !important; }
  .product-shell, .pp-shell { grid-template-columns: 1fr !important; gap: 14px !important; padding: 12px 14px !important; }
  .pp-side, .pp-main { padding: 14px !important; }

  /* ── Legal pages ── */
  .legal-body { padding: 24px 0 48px; }
  .legal-wrap { padding: 0 14px !important; }
  .legal-card { padding: 20px 18px !important; }
  .legal-content h3 { font-size: 16px !important; margin: 24px 0 10px; }
  .legal-content p, .legal-content ul li { font-size: 14px !important; line-height: 1.7 !important; }
  .doc-head { gap: 10px; padding-bottom: 16px; margin-bottom: 18px; }
  .doc-head h2 { font-size: 20px !important; }
  .doc-head .ico { width: 36px; height: 36px; }
  .doc-head .ico svg { width: 18px; height: 18px; }

  /* ── Blog ── */
  .blog-card, .post-card, .article-card { padding: 16px !important; }
  .blog-card h3, .post-card h3, .article-card h3 { font-size: 16px !important; }
  .blog-post-body, .article-body { padding: 0 4px; }
  .blog-post-body h1, .article-body h1, .post-title { font-size: 26px !important; line-height: 1.15 !important; }
  .blog-post-body h2, .article-body h2 { font-size: 20px !important; }
  .blog-post-body p, .article-body p { font-size: 15px !important; line-height: 1.7 !important; }

  /* ── Reviews + FAQ ── */
  .review-card, .vouch-card, .faq-item { padding: 14px !important; }
  .faq-q { font-size: 14px !important; }
  .faq-a { font-size: 13.5px !important; }

  /* ── Forms (contact, game-request, careers) ── */
  .form-input { font-size: 16px; /* prevent iOS zoom */ }
  .form-input--lg { padding: 12px 14px; font-size: 16px; }
  textarea.form-input { min-height: 90px; }
  .contact-grid, .form-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* ── Dashboards (customer / booster / reseller / admin) ── */
  .main-content { margin-left: 0 !important; padding: 14px !important; }
  .admin-main { margin-left: 0 !important; }
  .admin-page { padding: 14px !important; }
  .admin-topbar { padding: 10px 14px !important; flex-wrap: wrap; gap: 8px; }
  .page-title { font-size: 20px !important; }
  .page-subtitle { font-size: 13px !important; }
  .page-header { flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
  .dashboard-grid, .grid-stats, .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  /* Sidebar collapses (already exists) — make the hamburger toggle visible */
  .sidebar { width: 240px; }
  /* Tables — let them scroll horizontally cleanly */
  .table-wrap { border-radius: var(--radius); }
  thead th, tbody td { padding: 10px 12px !important; font-size: 13px !important; }
  /* Booster / reseller top bars */
  .bd-topbar, .rd-topbar { padding: 10px 14px !important; flex-wrap: wrap; gap: 8px; }
  .bd-topbar .btn, .rd-topbar .btn { font-size: 12.5px; padding: 6px 10px; min-height: 36px; }
  /* Booster / reseller table cards */
  .bd-table-card, .rd-table-card { padding: 14px !important; }
  .bd-table-card table, .rd-table-card table { font-size: 12.5px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-top { flex-direction: column !important; align-items: stretch !important; padding-top: 24px; padding-bottom: 20px; gap: 24px; }
  .footer-brand { flex-direction: column !important; align-items: center !important; text-align: center; gap: 14px; }
  .footer-cols { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 24px 12px !important; justify-items: center !important; }
  .footer-col { min-width: 0 !important; width: 100%; text-align: center; }
  .footer-contact-card { width: 100%; min-width: 0 !important; }
  .footer-col h5 { font-size: 11px; margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; }
  .footer-logo-img { height: 36px; }
  .footer-games-section { padding: 28px 0 24px; }
  .footer-games-title { font-size: 16px; }
  .fg-tile { padding: 8px 4px 6px; }
  .fg-tile img { width: 30px; height: 30px; }
  .fg-tile-name { font-size: 9px; }

  /* ── Modals ── */
  .modal-overlay { padding: 14px; }
  .modal { padding: 22px 18px; max-height: 88vh; }

  /* ── Toast ── */
  .toast-container { bottom: 14px; right: 14px; left: 14px; }
  .toast { max-width: none; }
}

/* ── WordPress: hero with no games (empty catalog) ── */
.hero-split.hero-no-rails {
  grid-template-columns: 1fr;
}
.hero-split.hero-no-rails .hero-col-center {
  max-width: 680px;
  margin: 0 auto;
}

/* ── WordPress: hero games grid search/header use container padding ── */
.hero-games-header.container,
.hero-games-search.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ── Extra-small phones ── */
@media (max-width: 380px) {
  .nav-inner { gap: 4px; padding: 0 8px; }
  .nav-inner .nav-game-select { font-size: 11.5px !important; padding: 0 9px !important; }
  .nav-logo img { height: 32px; }
  .hero-actions .btn { font-size: 13px; padding: 10px 12px; }
}


/* ============================================================
   HOMEPAGE — styles extracted from index.html inline <style>
   These cover: hero, games grid, how-it-works, trust/bento,
   reviews, hire section, and HiW browser mockup (.m-*).
   ============================================================ */

    /* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero {
      position: relative;
      background: radial-gradient(ellipse 120% 80% at 50% -10%, rgba(189,30,45,0.18) 0%, transparent 55%),
                  radial-gradient(ellipse 80% 60% at 80% 50%, rgba(27,132,255,0.06) 0%, transparent 50%),
                  #050508;
      padding: 0;
      overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0; z-index: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    /* â”€â”€ Hero Interactive Canvas â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #hero-canvas {
      position: absolute; inset: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 0; opacity: 0.55;
    }
    .hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .hero-text { text-align: center; padding-bottom: 36px; }

    /* â”€â”€ Combined Hero Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero {
      position: relative;
    }
    .hero-split {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: calc(100vh - var(--nav-h));
      min-height: 600px;
      position: relative; z-index: 1;
      gap: 0;
    }
    .hero-col-center {
      padding: 48px;
      text-align: center;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0;
      position: relative; z-index: 2;
      height: 100%;
    }
    .hero-tiles-col {
      height: 100%;
      overflow: hidden;
      position: relative;
    }
    .hero-tiles-col::before,
    .hero-tiles-col::after {
      content: '';
      position: absolute; left: 0; right: 0; z-index: 2;
      pointer-events: none;
      height: 160px;
    }
    .hero-tiles-col::before { top: 0; background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%); }
    .hero-tiles-col::after  { bottom: 0; background: linear-gradient(to top, var(--bg) 0%, transparent 100%); }
    .hero-tiles-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      padding: 4px;
      animation: tileScroll 70s linear infinite;
    }
    .hero-tiles-inner.reverse {
      animation: tileScrollReverse 80s linear infinite;
    }
    .hero-tiles-col:hover .hero-tiles-inner {
      animation-play-state: paused;
    }
    @keyframes tileScroll {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }
    @keyframes tileScrollReverse {
      0%   { transform: translateY(-50%); }
      100% { transform: translateY(0); }
    }
    .hero-tiles-inner .hg-tile {
      aspect-ratio: 1/1;
      width: 100%;
    }
    @media (max-width: 900px) {
      .hero-split {
        grid-template-columns: 1fr;
        height: calc(100vh - var(--nav-h));
        min-height: 500px;
      }
      .hero-tiles-col { display: none; }
      .hero-col-center { padding: 40px 24px; }
    }

    .hero-title {
      font-size: clamp(48px, 7vw, 96px); font-weight: 900; line-height: 1.0;
      letter-spacing: -0.04em; font-family: var(--font-display);
      text-transform: uppercase; margin-bottom: 22px;
    }
    .hero-title .accent { color: var(--red); }
    .trustpilot {
      display: inline-flex; align-items: flex-end; gap: 10px;
      padding: 6px 0;
    }
    .trustpilot-label {
      font-size: 14px; font-weight: 700; color: var(--text);
    }
    .trustpilot-stars {
      display: inline-flex; gap: 2px; align-items: flex-end;
    }
    .trustpilot-stars .tp-star {
      width: 22px; height: 22px;
      background: #00B67A;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .trustpilot-stars .tp-star svg { width: 14px; height: 14px; fill: #fff; }
    .trustpilot-meta {
      font-size: 12.5px; color: var(--text-2);
    }
    .trustpilot-meta a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
    .trustpilot-meta .tp-logo {
      display: inline-flex; align-items: baseline; gap: 4px;
      color: #00B67A; font-weight: 700;
    }
    .trustpilot-meta .tp-logo svg { width: 14px; height: 14px; vertical-align: text-bottom; }

    .hero-title {
      font-size: clamp(38px, 5.5vw, 72px); font-weight: 900; line-height: 1.05;
      letter-spacing: -0.03em; font-family: var(--font-display);
      text-transform: uppercase; margin-bottom: 18px;
    }
    .hero-title .accent { color: var(--red); }
    .hero-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--text-2); max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
    .stars-inline { color: var(--yellow); letter-spacing: -2px; font-size: 14px; }

    /* â”€â”€ Hero Game Showcase (dense logo tiles) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero-games {
      position: relative; z-index: 1;
      background: #050508;
      padding-top: 0;
      padding: 8px 0 0;
    }
    .hero-games-header {
      max-width: 1280px; margin: 0 auto; padding: 0 40px 18px;
      display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    }
    .hero-games-title {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800; letter-spacing: -0.01em;
      color: var(--text);
    }
    .hero-games-title .accent { color: var(--red); }
    .hero-games-sub {
      font-size: 13px; color: var(--text-3);
    }
    .hero-games-search {
      max-width: 1280px; margin: 0 auto 20px; padding: 0 40px;
    }
    .hero-games-search-inner {
      display: flex; align-items: center; gap: 10px;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-full);
      padding: 0 18px; height: 44px;
      max-width: 480px; margin: 0 auto;
    }
    .hero-games-search-inner svg { color: var(--text-3); flex-shrink: 0; }
    .hero-games-search-inner input {
      flex: 1; background: none; border: none; outline: none;
      color: var(--text); font-size: 14px; height: 100%;
    }
    .hero-games-search-inner input::placeholder { color: var(--text-3); }

    .hero-games-grid {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 10px;
      padding: 0 40px 64px;
      max-width: 1280px; margin: 0 auto;
    }
    .hg-tile {
      position: relative; aspect-ratio: 1 / 1;
      background: #0d0e14;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; cursor: pointer; text-decoration: none;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .hg-tile::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(189,30,45,0.0) 0%, transparent 70%);
      transition: background .25s ease;
      pointer-events: none;
    }
    .hg-tile:hover {
      transform: translateY(-2px);
      border-color: rgba(189,30,45,0.6);
      background: #131521;
    }
    .hg-tile:hover::before {
      background: radial-gradient(circle at 50% 50%, rgba(189,30,45,0.18) 0%, transparent 70%);
    }
    .hg-tile img {
      width: 78%; height: 78%;
      object-fit: contain;
      filter: grayscale(15%) contrast(1.05);
      transition: filter .2s ease, transform .2s ease;
      position: relative; z-index: 1;
    }
    .hg-tile:hover img {
      filter: grayscale(0) contrast(1);
      transform: scale(1.04);
    }
    .hg-tile-fallback {
      position: relative; z-index: 1;
      font-family: var(--font-display);
      font-size: 13px; font-weight: 800;
      color: rgba(255,255,255,0.55);
      text-align: center; line-height: 1.05;
      letter-spacing: -0.01em;
      padding: 6px;
      text-transform: uppercase;
    }
    .hg-tile-fallback small { display: block; font-size: 9px; font-weight: 700; opacity: .55; letter-spacing: 0.06em; margin-top: 3px; }

    @media (max-width: 1024px) { .hero-games-grid { grid-template-columns: repeat(7, 1fr); } }
    @media (max-width: 720px)  { .hero-games-grid { grid-template-columns: repeat(5, 1fr); } }
    @media (max-width: 480px)  { .hero-games-grid { grid-template-columns: repeat(4, 1fr); } }

    /* â”€â”€ How It Works v2 â€” real pages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hiw-showcase {
      position: relative;
      background:
        radial-gradient(ellipse 60% 50% at 92% 8%, rgba(189,30,45,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 5% 90%, rgba(189,30,45,0.06) 0%, transparent 60%),
        var(--bg-card) !important;
      overflow: hidden;
    }
    .hiw-showcase::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 80%);
    }
    .hiw-head { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
    .hiw-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--red);
      padding: 6px 14px;
      background: var(--red-subtle);
      border: 1px solid rgba(189,30,45,0.25);
      border-radius: var(--radius-full);
      margin-bottom: 18px;
    }
    .hiw-eyebrow .dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--red);
      box-shadow: 0 0 0 0 rgba(189,30,45,0.5);
      animation: pulseDot 1.8s ease-out infinite;
    }
    .hiw-head h2 { max-width: 760px; margin: 0 auto; }
    .hiw-head p { margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }

    .hiw-interactive {
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(0, 1.6fr);
      gap: 56px;
      align-items: center;
      position: relative; z-index: 1;
    }

    /* â”€â”€ Steps list â”€â”€ */
    .hiw-steps-list { display: flex; flex-direction: column; gap: 8px; }
    .hiw-step-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 20px;
      border-radius: var(--radius-lg);
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      position: relative;
      transition: background .25s ease, border-color .25s ease;
    }
    .hiw-step-item:hover { background: rgba(255,255,255,0.02); }
    .hiw-step-item.active {
      background: linear-gradient(135deg, rgba(189,30,45,0.08) 0%, rgba(189,30,45,0.015) 100%);
      border-color: rgba(189,30,45,0.22);
    }
    .hiw-step-num {
      font-family: var(--font-display);
      flex-shrink: 0;
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text-3);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800;
      transition: all .25s ease;
    }
    .hiw-step-item.active .hiw-step-num {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      box-shadow: 0 0 0 4px rgba(189,30,45,0.18);
    }
    .hiw-step-content { flex: 1; min-width: 0; }
    .hiw-step-headline {
      display: flex; align-items: center; gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 4px;
    }
    .hiw-step-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
    }
    .hiw-step-page-tag {
      font-size: 9.5px; font-weight: 700;
      letter-spacing: .09em; text-transform: uppercase;
      color: var(--text-3);
      padding: 3px 8px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      font-family: ui-monospace, monospace;
    }
    .hiw-step-item.active .hiw-step-page-tag {
      color: var(--red);
      background: var(--red-subtle);
      border-color: rgba(189,30,45,0.3);
    }
    .hiw-step-desc {
      font-size: 13.5px;
      color: var(--text-2);
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
      margin-top: 0;
    }
    .hiw-step-item.active .hiw-step-desc {
      max-height: 200px;
      opacity: 1;
      margin-top: 6px;
    }
    .hiw-step-progress {
      position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
      background: rgba(189,30,45,0.10);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      transition: opacity .2s ease;
    }
    .hiw-step-item.active .hiw-step-progress { opacity: 1; }
    .hiw-step-progress::after {
      content: ''; display: block; height: 100%;
      background: var(--red); width: 0;
      border-radius: inherit;
    }
    .hiw-step-item.active .hiw-step-progress::after {
      animation: hiwBar 5s linear forwards;
    }
    @keyframes hiwBar { from { width: 0; } to { width: 100%; } }

    /* â”€â”€ Browser preview â”€â”€ */
    .hiw-preview {
      background: #0a0b10;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.04) inset,
        0 30px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(189,30,45,0.05);
      position: relative;
    }
    .hiw-browser-chrome {
      display: flex; align-items: center; gap: 14px;
      padding: 11px 14px 0;
      background: linear-gradient(180deg, #14151c, #0e0f15);
      border-bottom: 1px solid var(--border);
    }
    .hiw-browser-dots { display: inline-flex; gap: 6px; padding-bottom: 11px; }
    .hiw-bd { width: 10px; height: 10px; border-radius: 50%; }
    .hiw-bd.r { background: #ff5f57; }
    .hiw-bd.y { background: #febc2e; }
    .hiw-bd.g { background: #28c840; }
    .hiw-browser-tabs {
      display: flex; gap: 2px; flex: 1; align-items: flex-end;
      overflow: hidden;
    }
    .hiw-browser-tab {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11.5px; color: var(--text-3);
      padding: 7px 12px 8px;
      background: transparent;
      border: 1px solid transparent;
      border-bottom: none;
      border-radius: 7px 7px 0 0;
      white-space: nowrap;
      max-width: 180px;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all .2s ease;
    }
    .hiw-browser-tab.active {
      background: var(--bg);
      color: var(--text);
      border-color: var(--border);
      position: relative;
    }
    .hiw-browser-tab.active::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
      background: var(--bg);
    }
    .hiw-browser-tab .fav {
      width: 14px; height: 14px; border-radius: 3px;
      background: var(--red); flex-shrink: 0;
      display: inline-flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-size: 9px; font-weight: 900; color: #fff;
      letter-spacing: -0.04em;
    }
    .hiw-browser-tab .x {
      width: 14px; height: 14px; opacity: 0; color: var(--text-3);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 14px; line-height: 1;
    }
    .hiw-browser-tab.active .x { opacity: 1; }
    .hiw-browser-urlbar {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 14px 10px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .hiw-browser-nav {
      display: inline-flex; gap: 2px;
      color: var(--text-3);
    }
    .hiw-browser-nav button {
      width: 22px; height: 22px;
      border: none; background: transparent;
      color: inherit; cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center;
      border-radius: 4px;
    }
    .hiw-browser-nav button:hover { background: rgba(255,255,255,0.04); color: var(--text-2); }
    .hiw-browser-url {
      flex: 1; display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-family: ui-monospace, "SF Mono", monospace;
      color: var(--text-3);
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      padding: 6px 14px;
      min-width: 0;
      height: 28px;
    }
    .hiw-browser-url .lock { color: var(--green); flex-shrink: 0; }
    .hiw-browser-url .host { color: var(--text-2); }
    .hiw-browser-url .path { color: var(--text); }
    .hiw-browser-url .query { color: var(--text-3); }
    .hiw-browser-url .url-text {
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
      flex: 1; min-width: 0;
    }

    .hiw-viewport {
      position: relative;
      aspect-ratio: 1600 / 738;
      overflow: hidden;
      background: var(--bg);
    }
    .hiw-page {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      opacity: 0; pointer-events: none;
      transform: translateY(8px);
      transition: opacity .4s ease, transform .4s ease;
    }
    .hiw-page.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .hiw-page.active [data-action] { pointer-events: auto !important; }

    /* Real-screenshot panels (replaced the CSS mockups) */
    .hiw-shot {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      background: var(--bg);
    }

    /* â”€â”€ Mockup scaled canvas â”€â”€ */
    .m-canvas {
      width: 860px; display: flex; flex-direction: column;
      transform-origin: top left;
      transform: scale(var(--m-scale, 0.63));
      flex-shrink: 0; overflow: hidden;
    }
    /* â”€â”€ Shared mini-nav â”€â”€ */
    .m-nav {
      height: 56px; display: flex; align-items: center; gap: 12px;
      padding: 0 24px; background: rgba(0,0,0,0.92);
      border-bottom: 1px solid rgba(255,255,255,0.08); flex-shrink: 0;
    }
    .m-logo { display: flex; align-items: center; flex-shrink: 0; }
    .m-logo img { height: 36px; width: auto; display: block; }
    .m-games-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--red); border-radius: 999px;
      padding: 8px 16px; font-size: 13px; font-weight: 600; color: #fff;
      flex-shrink: 0;
    }
    .m-search {
      flex: 1; max-width: 360px; background: rgba(156,163,175,0.08);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 999px;
      display: flex; align-items: center; gap: 10px;
      padding: 0 16px; height: 40px; font-size: 13px; color: rgba(255,255,255,0.35);
    }
    .m-nav-r { margin-left: auto; display: flex; align-items: center; gap: 8px; }
    .m-nav-ghost {
      font-size: 13px; font-weight: 600; color: #B5B7C8;
      padding: 8px 18px; border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .m-nav-solid {
      font-size: 13px; font-weight: 700; color: #fff;
      padding: 8px 18px; border-radius: 999px;
      background: #1e1f28; border: 1px solid rgba(255,255,255,0.12);
    }
    /* â”€â”€ Home hero â”€â”€ */
    .m-hero {
      flex: 1; display: grid; grid-template-columns: 1fr auto 1fr;
      overflow: hidden; min-height: 420px;
      background: radial-gradient(ellipse 120% 80% at 50% -10%, rgba(189,30,45,0.18) 0%, transparent 55%), #050508;
    }
    .m-hero-tiles {
      height: 100%; display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 4px; padding: 4px; overflow: hidden; position: relative;
    }
    .m-hero-tiles::before, .m-hero-tiles::after {
      content: ''; position: absolute; left: 0; right: 0; z-index: 2; pointer-events: none; height: 90px;
    }
    .m-hero-tiles::before { top: 0; background: linear-gradient(to bottom, #050508, transparent); }
    .m-hero-tiles::after { bottom: 0; background: linear-gradient(to top, #050508, transparent); }
    .m-htile {
      aspect-ratio: 1; background: #0d0e14;
      border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 11px; font-weight: 800;
      color: rgba(255,255,255,0.35); text-transform: uppercase; overflow: hidden;
    }
    .m-htile img { width: 78%; height: 78%; object-fit: contain; filter: grayscale(15%) contrast(1.05); display: block; }
    .m-htile.hot img { filter: grayscale(0) contrast(1); }
    .m-htile.hot {
      border-color: rgba(189,30,45,0.5);
      background: linear-gradient(135deg, rgba(189,30,45,0.2), rgba(189,30,45,0.04)); color: #fff;
    }
    .m-hero-center {
      padding: 32px 40px; width: 420px;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
      text-align: center;
    }
    .m-hero-h1 {
      font-family: var(--font-display); font-size: 56px; font-weight: 900;
      line-height: 1.0; letter-spacing: -0.04em; text-transform: uppercase; color: #FAFAFA;
    }
    .m-hero-h1 .accent { color: var(--red); }
    .m-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .m-btn-primary {
      background: var(--red); color: #fff; font-size: 14px; font-weight: 700;
      padding: 13px 26px; border-radius: 999px;
      box-shadow: 0 0 20px rgba(189,30,45,0.3);
    }
    .m-btn-ghost-pill {
      background: transparent; color: #B5B7C8; font-size: 14px; font-weight: 600;
      padding: 13px 26px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.08);
    }
    .m-tp { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #B5B7C8; }
    .m-tp-stars { display: flex; gap: 2px; }
    .m-tp-star { width: 18px; height: 18px; background: #00B67A; display: flex; align-items: center; justify-content: center; }
    .m-tp-star svg { width: 11px; height: 11px; fill: #fff; }
    /* â”€â”€ Game page hero â”€â”€ */
    .m-gp-hero {
      background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(189,30,45,0.18) 0%, transparent 55%), #060408;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 16px 24px 18px; flex-shrink: 0;
    }
    .m-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #72737A; margin-bottom: 12px; }
    .m-breadcrumb .here { color: #B5B7C8; }
    .m-gp-hero-row { display: flex; align-items: center; gap: 16px; }
    .m-gp-icon {
      width: 64px; height: 64px; border-radius: 12px;
      border: 1.5px solid rgba(189,30,45,0.45);
      overflow: hidden; flex-shrink: 0; background: #1e1f28;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 15px; font-weight: 900; color: var(--red);
    }
    .m-gp-title {
      font-family: var(--font-display); font-size: 28px; font-weight: 900;
      letter-spacing: -0.02em; text-transform: uppercase; color: #FAFAFA; line-height: 1; margin-bottom: 8px;
    }
    .m-gp-title .accent { color: var(--red); }
    .m-gp-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #B5B7C8; flex-wrap: wrap; }
    .m-gp-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); display: inline-block; }
    .m-gp-meta strong { color: #FAFAFA; }
    .m-stars { color: #E7B433; }
    /* â”€â”€ Game shell â”€â”€ */
    .m-shell { display: grid; grid-template-columns: 200px 1fr; gap: 20px; padding: 18px 24px; align-items: start; }
    .m-side { background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 6px; }
    .m-side-label { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #72737A; padding: 10px 12px 8px; }
    .m-side-item {
      display: flex; align-items: center; gap: 11px; padding: 10px 12px;
      border-radius: 8px; font-size: 13px; font-weight: 600; color: #B5B7C8; position: relative;
    }
    .m-side-item.active { background: rgba(189,30,45,0.10); color: #FAFAFA; }
    .m-side-item.active::before { content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; background: var(--red); border-radius: 0 2px 2px 0; }
    .m-side-ico { width: 28px; height: 28px; border-radius: 6px; background: #1e1f28; display: flex; align-items: center; justify-content: center; color: #72737A; flex-shrink: 0; }
    .m-side-item.active .m-side-ico { background: rgba(189,30,45,0.20); color: var(--red); }
    .m-side-count { margin-left: auto; font-size: 11.5px; font-weight: 700; color: #72737A; background: #1e1f28; padding: 2px 8px; border-radius: 999px; min-width: 24px; text-align: center; }
    .m-side-item.active .m-side-count { background: var(--red); color: #fff; }
    .m-side-div { height: 1px; background: rgba(255,255,255,0.08); margin: 6px 12px; }
    .m-side-trust { padding: 10px 14px; display: flex; flex-direction: column; gap: 9px; }
    .m-side-tr { display: flex; align-items: center; gap: 9px; font-size: 12px; color: #B5B7C8; }
    .m-side-tr svg { color: #04DA8D; flex-shrink: 0; }
    .m-side-tr strong { color: #FAFAFA; }
    /* Catalog bar + product grid */
    .m-catalog-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 14px; }
    .m-catalog-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: #FAFAFA; }
    .m-catalog-title .m-muted { color: #72737A; font-weight: 700; }
    .m-gp-search { background: rgba(156,163,175,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; display: flex; align-items: center; gap: 8px; padding: 0 14px; height: 38px; font-size: 13px; color: rgba(255,255,255,0.35); min-width: 180px; }
    .m-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .m-product-card { position: relative; background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; }
    .m-product-img {
      width: 100%; height: 88px; flex-shrink: 0;
      background: #1e1f28;
      position: relative; overflow: hidden;
    }
    .m-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .m-product-img.empty {
      background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 16px), #1e1f28;
    }
    .m-popular-badge { position: absolute; top: 8px; right: 8px; font-size: 9px; font-weight: 800; color: #1a1000; background: #E7B433; padding: 2px 7px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
    .m-product-body { padding: 10px 12px; display: flex; flex-direction: column; flex: 1; gap: 5px; }
    .m-pcat { display: inline-flex; align-items: center; gap: 4px; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; background: rgba(189,30,45,0.12); color: var(--red); align-self: flex-start; }
    .m-product-name { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: -0.01em; color: #FAFAFA; line-height: 1.2; }
    .m-product-bullet { font-size: 11px; color: #72737A; line-height: 1.4; }
    .m-product-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
    .m-product-price-label { font-size: 11px; color: #72737A; }
    .m-product-price-val { font-family: var(--font-display); font-size: 16px; font-weight: 900; letter-spacing: -0.02em; color: #FAFAFA; }
    .m-product-cta { width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
    /* â”€â”€ Product page â”€â”€ */
    .m-pp-hero {
      background: radial-gradient(ellipse 100% 70% at 50% -30%, rgba(189,30,45,0.20) 0%, transparent 55%), #060408;
      border-bottom: 1px solid rgba(255,255,255,0.08); padding: 10px 32px 12px; flex-shrink: 0;
    }
    .m-pp-hero-row { display: flex; align-items: center; gap: 14px; }
    .m-pp-icon { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid rgba(189,30,45,0.35); background: #1e1f28; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 900; color: var(--red); flex-shrink: 0; }
    .m-pp-hero-text { flex: 1; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .m-pp-title { font-family: var(--font-display); font-size: 20px; font-weight: 900; letter-spacing: -0.02em; color: #FAFAFA; }
    .m-pp-tags { display: flex; gap: 5px; flex-wrap: wrap; }
    .m-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px; }
    .m-badge-red { background: rgba(189,30,45,0.12); color: var(--red); }
    .m-badge-yellow { background: rgba(231,180,51,0.12); color: #E7B433; }
    .m-badge-green { background: rgba(4,218,141,0.12); color: #04DA8D; }
    .m-badge-green::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #04DA8D; }
    .m-trustbar {
      background: #111217; border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 8px 32px; display: flex; align-items: center; gap: 20px; flex-shrink: 0;
    }
    .m-trustbar-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #72737A; white-space: nowrap; }
    .m-trustbar-items { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .m-incl { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #B5B7C8; font-weight: 600; }
    .m-incl svg { color: #04DA8D; flex-shrink: 0; }
    .m-pp-layout { display: grid; grid-template-columns: 1fr 300px; gap: 14px; padding: 12px 32px 20px; flex: 1; min-height: 0; overflow: hidden; }
    .m-pp-main { display: flex; flex-direction: column; gap: 8px; }
    .m-section { background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
    .m-section-head { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.015); }
    .m-section-num { width: 18px; height: 18px; border-radius: 5px; background: var(--red); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .m-section-num.done { background: #04DA8D; color: #000; }
    .m-section-title { font-family: var(--font-display); font-size: 12.5px; font-weight: 800; color: #FAFAFA; }
    .m-section-hint { font-size: 10.5px; color: #72737A; margin-left: auto; }
    .m-section-body { padding: 10px 12px; }
    .m-rank-row { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; align-items: center; margin-bottom: 6px; }
    .m-rank-row:last-child { margin-bottom: 0; }
    .m-rank-label { font-size: 10.5px; font-weight: 700; color: #72737A; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
    .m-pills { display: flex; flex-wrap: wrap; gap: 4px; }
    .m-pill { padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,0.08); color: #B5B7C8; background: #1e1f28; display: inline-flex; align-items: center; gap: 6px; }
    .m-pill .rdot { width: 9px; height: 9px; border-radius: 50%; background: var(--rank-color, #72737A); box-shadow: 0 0 0 1px rgba(0,0,0,0.4) inset; flex-shrink: 0; }
    .m-pill.active { background: rgba(189,30,45,0.12); border-color: var(--red); color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
    .m-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .m-tile { padding: 8px 9px; background: #1e1f28; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; font-size: 12px; font-weight: 700; color: #FAFAFA; line-height: 1.2; }
    .m-tile.active { border-color: var(--red); background: linear-gradient(180deg, rgba(189,30,45,0.10) 0%, #1e1f28 100%); box-shadow: inset 0 0 0 1px var(--red); }
    .m-tile-meta { font-size: 10.5px; color: #72737A; margin-top: 2px; }
    .m-addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .m-addon { display: flex; align-items: center; gap: 7px; padding: 6px 8px; background: #1e1f28; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; min-height: 36px; }
    .m-addon.on { border-color: var(--red); background: linear-gradient(90deg, rgba(189,30,45,0.10), #1e1f28 60%); }
    .m-addon-check { width: 14px; height: 14px; border-radius: 3px; border: 1.5px solid rgba(255,255,255,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #111217; }
    .m-addon.on .m-addon-check { background: var(--red); border-color: var(--red); }
    .m-addon-title { font-size: 11px; font-weight: 700; color: #FAFAFA; line-height: 1.2; flex: 1; }
    .m-addon-price { font-size: 11px; font-weight: 800; color: #FAFAFA; white-space: nowrap; }
    .m-addon-price-plus { color: var(--red); }
    /* Summary sidebar */
    .m-summary { background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
    .m-summary-head { padding: 10px 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.08); background: linear-gradient(180deg, rgba(189,30,45,0.06) 0%, transparent 100%); }
    .m-summary-label { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 2px; }
    .m-summary-name { font-family: var(--font-display); font-size: 13.5px; font-weight: 800; color: #FAFAFA; letter-spacing: -0.01em; line-height: 1.2; }
    .m-summary-body { padding: 10px 14px 0; }
    .m-summary-eta { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #B5B7C8; margin-bottom: 10px; }
    .m-summary-eta svg { color: #04DA8D; flex-shrink: 0; }
    .m-summary-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
    .m-summary-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 12px; color: #B5B7C8; gap: 8px; }
    .m-summary-row strong { color: #FAFAFA; font-weight: 700; }
    .m-price-block { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,0.08); }
    .m-price-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #72737A; margin-bottom: 4px; }
    .m-price-main { font-family: var(--font-display); font-size: 28px; font-weight: 900; letter-spacing: -0.03em; color: #FAFAFA; line-height: 1; }
    .m-cta { padding: 10px 14px; display: flex; flex-direction: column; gap: 10px; }
    .m-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--red); color: #fff; font-size: 15px; font-weight: 700; padding: 13px 20px; border-radius: 8px; box-shadow: 0 6px 16px rgba(189,30,45,0.35); letter-spacing: .01em; }
    .m-trust-rows { display: flex; flex-direction: column; gap: 6px; }
    .m-trust-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #B5B7C8; }
    .m-trust-row svg { flex-shrink: 0; }
    .m-trust-row strong { color: #FAFAFA; font-weight: 600; }
    .m-pay-label { font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #72737A; margin-bottom: 6px; }
    .m-pay-icons { display: flex; gap: 5px; flex-wrap: wrap; }
    .m-pay-badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,0.06); color: #B5B7C8; }
    /* â”€â”€ Dashboard â”€â”€ */
    .m-dp { flex: 1; display: flex; flex-direction: column; overflow: hidden; padding: 18px 24px; gap: 14px; }
    .m-dp-intro { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .m-dp-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #72737A; margin-bottom: 6px; }
    .m-dp-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #FAFAFA; letter-spacing: -0.01em; }
    .m-dp-sub { font-size: 13px; color: #72737A; margin-top: 4px; }
    .m-dp-hero { background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
    .m-dp-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
    .m-dp-cell { padding: 20px 22px; }
    .m-dp-cell + .m-dp-cell { border-left: 1px solid rgba(255,255,255,0.08); }
    .m-dp-cell-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #72737A; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
    .m-dp-cell-label::after { content: ''; height: 1px; background: rgba(255,255,255,0.08); flex: 1; }
    .m-dp-id { display: flex; gap: 14px; align-items: flex-start; }
    .m-dp-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #9e1826); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; box-shadow: 0 0 0 3px rgba(189,30,45,0.18); flex-shrink: 0; }
    .m-dp-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #FAFAFA; line-height: 1.15; }
    .m-dp-meta { font-size: 12.5px; color: #72737A; margin-top: 4px; line-height: 1.5; }
    .m-dp-meta b { color: #B5B7C8; font-weight: 700; }
    .m-dp-rank-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .m-dp-rank-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 11px; color: #fff; flex-shrink: 0; }
    .m-dp-rank-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #FAFAFA; line-height: 1.1; }
    .m-dp-rank-perk { font-size: 12px; color: #E7B433; font-weight: 700; margin-top: 2px; }
    .m-dp-bar-meta { display: flex; justify-content: space-between; font-size: 11.5px; color: #72737A; margin-top: 12px; margin-bottom: 5px; }
    .m-dp-bar-meta b { color: #B5B7C8; }
    .m-dp-bar { height: 5px; background: #1e1f28; border-radius: 999px; overflow: hidden; }
    .m-dp-bar-fill { height: 100%; border-radius: 999px; }
    .m-dp-coins-row { display: flex; align-items: center; gap: 12px; }
    .m-dp-coins-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(231,180,51,0.12); border: 1px solid rgba(231,180,51,0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
    .m-dp-coins-amount { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #FAFAFA; line-height: 1.1; }
    .m-dp-coins-suffix { font-size: 14px; font-weight: 700; color: #72737A; }
    .m-dp-coins-val { font-size: 12px; color: #72737A; margin-top: 2px; }
    .m-dp-coins-val b { color: #E7B433; }
    .m-tabs { display: inline-flex; gap: 4px; padding: 4px; background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; align-self: flex-start; }
    .m-tab { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #72737A; }
    .m-tab.active { background: #1e1f28; color: #FAFAFA; }
    .m-tab-badge { min-width: 18px; height: 18px; padding: 0 5px; display: inline-flex; align-items: center; justify-content: center; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; border-radius: 999px; }
    .m-tab:not(.active) .m-tab-badge { background: #1e1f28; color: #B5B7C8; }
    .m-orders { display: flex; flex-direction: column; gap: 10px; }
    .m-order { background: #111217; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
    .m-order.on { border-color: rgba(189,30,45,0.2); }
    .m-order-main { display: flex; align-items: flex-start; gap: 12px; }
    .m-order-icon { width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 900; color: rgba(255,255,255,0.7); overflow: hidden; }
    .m-order-icon img { width: 100%; height: 100%; object-fit: cover; }
    .m-order-body { flex: 1; min-width: 0; }
    .m-order-title { font-size: 14px; font-weight: 700; color: #FAFAFA; margin-bottom: 4px; }
    .m-order-game-name { font-size: 14px; color: #72737A; font-weight: 600; }
    .m-order-meta { font-size: 12px; color: #72737A; }
    .m-order-meta .sep { margin: 0 4px; }
    .m-order-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .m-status { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .02em; }
    .m-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
    .m-status-active { background: rgba(27,132,255,0.12); color: #1B84FF; }
    .m-status-queued { background: rgba(231,180,51,0.12); color: #E7B433; }
    .m-order-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #FAFAFA; padding: 6px 12px; border-radius: 8px; background: #1e1f28; border: 1px solid rgba(255,255,255,0.08); }
    .m-order-prog { display: flex; flex-direction: column; gap: 5px; }
    .m-order-prog-track { height: 5px; background: #1e1f28; border-radius: 999px; overflow: hidden; }
    .m-order-prog-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--red), #ff4555); }
    .m-order-prog-meta { display: flex; justify-content: space-between; font-size: 12px; color: #72737A; }
    .m-order-prog-meta b { color: #B5B7C8; }

    @media (max-width: 980px) {
      .hiw-interactive { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 640px) {
      .hiw-browser-tabs { display: none; }
      .hiw-step-page-tag { display: none; }
    }

    /* â”€â”€ Games Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 16px;
    }
    .game-card-inner { padding: 16px; }
    .game-card-name { font-size: 14px; font-weight: 700; }
    .game-card-cat { font-size: 11px; color: var(--text-3); margin-top: 2px; }
    .game-card-price { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 4px; }

    /* â”€â”€ How It Works â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hiw-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
    .hiw-steps::before {
      content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(to right, transparent, var(--red), transparent);
    }
    .hiw-step { text-align: center; position: relative; padding-top: 8px; }
    .hiw-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--red-subtle); border: 2px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 800; color: var(--red);
      margin: 0 auto 16px; position: relative; z-index: 1;
    }
    .hiw-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .hiw-step p { font-size: 14px; color: var(--text-2); }

    /* â”€â”€ Benefits (Trust section) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .trust-section { position: relative; }
    .trust-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--red); margin-bottom: 12px;
    }
    .trust-head {
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 48px; align-items: end; margin-bottom: 40px;
    }
    .trust-head h2 { max-width: 520px; }
    .trust-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--bg-card);
      overflow: hidden;
    }
    .trust-stat { padding: 18px 20px; border-right: 1px solid var(--border); }
    .trust-stat:last-child { border-right: none; }
    .trust-stat-num {
      font-family: var(--font-display);
      font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
      color: var(--text); line-height: 1;
    }
    .trust-stat-num .accent { color: var(--red); }
    .trust-stat-label {
      font-size: 11px; color: var(--text-3); margin-top: 6px;
      letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 220px;
      gap: 16px;
    }
    .bento {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      overflow: hidden;
      display: flex; flex-direction: column; justify-content: space-between;
      transition: border-color .25s ease, transform .25s ease, background .25s ease;
    }
    .bento:hover {
      border-color: rgba(189,30,45,0.45);
      transform: translateY(-2px);
    }
    .bento::after {
      content: ''; position: absolute; inset: 0;
      pointer-events: none;
      background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(189,30,45,0.08), transparent 40%);
      opacity: 0; transition: opacity .3s ease;
    }
    .bento:hover::after { opacity: 1; }

    .bento-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--red-subtle);
      color: var(--red);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(189,30,45,0.25);
    }
    .bento-icon svg { width: 22px; height: 22px; }
    .bento h4 {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 800; letter-spacing: -0.01em;
      margin: 18px 0 6px;
      color: var(--text);
    }
    .bento p {
      font-size: 13.5px; color: var(--text-2); line-height: 1.6;
      margin: 0;
    }

    /* Featured wide card */
    .bento--feature {
      grid-column: span 2;
      grid-row: span 2;
      background:
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(189,30,45,0.18) 0%, transparent 60%),
        linear-gradient(180deg, #0e0f15 0%, #0a0a0e 100%);
      border-color: rgba(189,30,45,0.28);
      padding: 28px 32px;
      justify-content: flex-start;
      gap: 22px;
    }
    .bento--feature::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(189,30,45,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(189,30,45,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 90% 80% at 70% 90%, #000 0%, transparent 70%);
      pointer-events: none;
    }
    .bento-feature-row {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      position: relative; z-index: 1;
    }
    .bento-feature-body {
      display: flex; flex-direction: column;
      gap: 14px;
      position: relative; z-index: 1;
      flex: 1;
    }
    .bento--feature h4 {
      font-size: 32px; line-height: 1.05;
      max-width: 420px; margin: 0;
    }
    .bento--feature p {
      font-size: 14.5px; max-width: 440px;
      margin: 0;
    }
    .bento-feature-meta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      font-size: 12px; color: var(--text-2); font-weight: 600;
      flex-shrink: 0;
    }
    .bento-feature-meta strong { color: var(--text); }
    .bento-feature-meta .pulse {
      width: 8px; height: 8px; border-radius: 50%; background: var(--green);
      box-shadow: 0 0 0 0 rgba(4,218,141,0.6);
      animation: pulseDot 1.8s ease-out infinite;
    }

    /* Price compare visual */
    .bento-price-compare {
      margin-top: 6px;
      display: flex; flex-direction: column;
      gap: 12px;
      padding: 18px 20px;
      background: rgba(0,0,0,0.35);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(8px);
    }
    .bento-price-row {
      display: grid;
      grid-template-columns: 130px 1fr auto;
      align-items: center;
      gap: 14px;
    }
    .bento-price-label {
      font-size: 12px; color: var(--text-3); font-weight: 600;
      letter-spacing: .03em;
    }
    .bento-price-bar {
      height: 8px; border-radius: 4px;
      background: rgba(255,255,255,0.04);
      overflow: hidden;
      display: block;
    }
    .bento-price-bar > span {
      display: block; height: 100%; border-radius: 4px;
      animation: barFill 1.2s cubic-bezier(.2,.8,.2,1) both;
      transform-origin: left;
    }
    @keyframes barFill {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }
    .bento-price-amt {
      font-family: var(--font-display);
      font-size: 16px; font-weight: 800; letter-spacing: -0.01em;
      color: var(--text);
      min-width: 70px; text-align: right;
    }
    .bento-price-amt--strike {
      color: var(--text-3);
      text-decoration: line-through;
      font-weight: 600;
    }
    .bento-price-amt--win {
      color: var(--red);
    }
    @keyframes pulseDot {
      0%   { box-shadow: 0 0 0 0 rgba(4,218,141,0.6); }
      70%  { box-shadow: 0 0 0 10px rgba(4,218,141,0); }
      100% { box-shadow: 0 0 0 0 rgba(4,218,141,0); }
    }

    /* Tall card */
    .bento--tall { grid-row: span 2; }

    @media (max-width: 1000px) {
      .trust-head { grid-template-columns: 1fr; gap: 24px; }
      /* Auto row height so cards (esp. the feature card) grow to fit content
         instead of being clipped by a fixed 200px row + overflow:hidden. */
      .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(190px, auto); }
      .bento--feature { grid-column: span 2; grid-row: auto; padding: 28px; }
      .bento--feature h4 { font-size: 26px; }
      .bento--tall { grid-row: auto; }
    }
    @media (max-width: 600px) {
      .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
      .bento { min-height: 0; }
      .bento--feature { grid-column: span 1; padding: 22px; }
      .bento--feature h4 { font-size: 23px; max-width: none; }
      .bento--feature p { max-width: none; }
      .bento-price-compare { padding: 14px 16px; }
      .bento-price-row { grid-template-columns: 92px 1fr auto; gap: 10px; }
      .bento-price-label { font-size: 11px; }
      .bento-price-amt { min-width: 54px; font-size: 14px; }
      .trust-stats { grid-template-columns: 1fr; }
      .trust-stat { border-right: none; border-bottom: 1px solid var(--border); }
      .trust-stat:last-child { border-bottom: none; }
    }

    /* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .reviews-marquee-wrap {
      position: relative;
      overflow: hidden;
      padding: 8px 0 16px;
    }
    .reviews-marquee-wrap::before,
    .reviews-marquee-wrap::after {
      content: '';
      position: absolute; top: 0; bottom: 0; z-index: 2;
      width: 120px; pointer-events: none;
    }
    .reviews-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-card), transparent); }
    .reviews-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-card), transparent); }

    .reviews-track {
      display: flex; gap: 16px;
      width: max-content;
      animation: reviewsScroll 40s linear infinite;
    }
    .reviews-track:hover { animation-play-state: paused; }

    @keyframes reviewsScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .review-card {
      flex-shrink: 0; width: 300px; padding: 20px;
      /* card styles inherited from .card */
    }
    .review-card .reviewer { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .review-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; font-style: italic; }

    /* â”€â”€ Hire Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hire-wrap {
      position: relative;
      background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(189,30,45,0.20) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 100% 100%, rgba(27,132,255,0.08) 0%, transparent 55%),
        linear-gradient(180deg, #0c0d12 0%, #08080c 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 0;
      overflow: hidden;
    }
    .hire-wrap::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, #000 0%, transparent 70%);
      pointer-events: none;
    }
    .hire-grid {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 0;
      align-items: stretch;
    }
    .hire-left { padding: 56px 48px 56px 56px; display: flex; flex-direction: column; justify-content: center; }
    .hire-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--red);
      margin-bottom: 18px;
      padding: 6px 12px;
      background: var(--red-subtle);
      border: 1px solid rgba(189,30,45,0.3);
      border-radius: var(--radius-full);
      align-self: flex-start;
    }
    .hire-eyebrow .live-dot {
      width: 7px; height: 7px; border-radius: 50%; background: var(--red);
      box-shadow: 0 0 0 0 rgba(189,30,45,0.6);
      animation: pulseDot 1.8s ease-out infinite;
    }
    .hire-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900; letter-spacing: -0.02em; line-height: 1.0;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hire-title .accent { color: var(--red); }
    .hire-sub {
      font-size: 15px; color: var(--text-2); line-height: 1.7;
      max-width: 460px;
      margin-bottom: 28px;
    }
    .hire-perks {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 10px 20px;
      margin-bottom: 32px;
      max-width: 460px;
    }
    .hire-perk {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; color: var(--text);
      font-weight: 500;
    }
    .hire-perk svg { color: var(--red); flex-shrink: 0; }
    .hire-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Right side: requirements card */
    .hire-right {
      padding: 40px;
      display: flex; align-items: center; justify-content: center;
      border-left: 1px solid var(--border);
      background: rgba(0,0,0,0.25);
    }
    .hire-card {
      width: 100%;
      max-width: 380px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    }
    .hire-card-head {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 16px;
    }
    .hire-card-title {
      font-size: 13px; font-weight: 700;
      letter-spacing: .04em; text-transform: uppercase;
      color: var(--text);
    }
    .hire-card-tag {
      font-size: 10.5px; font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-full);
      background: var(--green-subtle);
      color: var(--green);
      letter-spacing: .04em;
    }
    .hire-req-list { display: flex; flex-direction: column; gap: 12px; }
    .hire-req {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 13.5px; color: var(--text-2); line-height: 1.5;
    }
    .hire-req-check {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--red-subtle);
      border: 1px solid rgba(189,30,45,0.4);
      color: var(--red);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .hire-req-check svg { width: 11px; height: 11px; }
    .hire-req strong { color: var(--text); font-weight: 600; }
    .hire-card-foot {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12px;
    }
    .hire-card-foot-label { color: var(--text-3); }
    .hire-card-foot-val { color: var(--text); font-weight: 700; font-family: var(--font-display); }

    /* Payout block */
    .hire-payout {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 16px;
      margin-top: 18px;
      background: linear-gradient(135deg, rgba(189,30,45,0.14) 0%, rgba(189,30,45,0.04) 100%);
      border: 1px solid rgba(189,30,45,0.3);
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
    }
    .hire-payout::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 100% 50%, rgba(189,30,45,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .hire-payout-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--red);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(189,30,45,0.4);
      position: relative; z-index: 1;
    }
    .hire-payout-icon svg { width: 20px; height: 20px; }
    .hire-payout-text {
      display: flex; flex-direction: column; gap: 2px;
      position: relative; z-index: 1;
      flex: 1;
    }
    .hire-payout-label {
      font-size: 11px; color: var(--text-3);
      letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
    }
    .hire-payout-val {
      font-family: var(--font-display);
      font-size: 26px; font-weight: 900; letter-spacing: -0.02em;
      color: var(--text);
      line-height: 1;
      display: inline-flex; align-items: baseline;
    }
    .hire-payout-currency { color: var(--red); margin-right: 1px; }
    .hire-payout-plus { color: var(--red); margin-left: 2px; }

    @media(max-width:900px) { .hiw-steps { grid-template-columns: 1fr 1fr; } .hiw-steps::before { display:none; } }
    @media(max-width:860px) {
      .hire-grid { grid-template-columns: 1fr; }
      .hire-left { padding: 40px 28px 24px; }
      .hire-right { border-left: none; border-top: 1px solid var(--border); padding: 24px 28px 40px; }
    }
    @media(max-width:600px) {
      .hiw-steps { grid-template-columns: 1fr; }
      .hire-perks { grid-template-columns: 1fr; }
    }


/* ── Nav: More dropdown ─────────────────────────────────── */
.nav-more-wrap { position: relative; }
.nav-more-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  background: var(--bg-input); border: 1px solid var(--border);
  cursor: pointer; padding: 0 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-more-btn:hover { color: var(--text); border-color: var(--border-hover); }
.nav-more-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 230px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  z-index: 200;
}
.nav-more-menu.open { display: block; }
.nav-more-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3);
  padding: 8px 16px 4px;
}
.nav-more-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  font-size: 13.5px; font-weight: 500; color: var(--text-2);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.nav-more-item:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.nav-more-item svg { flex-shrink: 0; color: var(--text-3); }
.nav-more-divider { height: 1px; background: var(--border); margin: 4px 0; }
@media (max-width: 900px) { .nav-more-wrap { display: none; } }

/* ── GAME PAGE (game.html) ──────────────────────────────── */
.gp-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(189,30,45,0.18) 0%, transparent 55%),
    #060408;
  border-bottom: 1px solid var(--border);
}
.gp-hero-inner { position: relative; z-index: 1; max-width: 1440px; margin: 0 auto; padding: 18px 32px 20px; }
.gp-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-3); margin-bottom: 18px; }
.gp-breadcrumb a { color: var(--text-3); transition: color .15s; }
.gp-breadcrumb a:hover { color: var(--text-2); }
.gp-breadcrumb-sep { color: var(--border-hover); }
.gp-hero-row { display: flex; align-items: center; gap: 22px; }
.gp-icon-wrap {
  width: 96px; height: 96px; border-radius: var(--radius-lg);
  border: 1.5px solid rgba(189,30,45,0.45);
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(0,0,0,0.55);
  background: var(--bg-elevated);
  display: grid; place-items: center; font-size: 44px;
  position: relative;
}
.gp-icon-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Platform icon overlay (top-right) on the game hero icon */
.gp-icon-platforms { position: absolute; top: 6px; right: 6px; z-index: 3; pointer-events: none; }
.gp-icon-platforms .pp-pcard-platforms { position: static; gap: 3px; }
.gp-icon-platforms .pp-pcard-plat { width: 22px; height: 22px; border-radius: 5px; background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.18); }
.gp-icon-platforms .pp-pcard-plat img, .gp-icon-platforms .pp-pcard-plat svg { width: 13px; height: 13px; }
/* Platform icon overlay on product card image */
.product-img-platforms { position: absolute; top: 8px; right: 8px; z-index: 4; pointer-events: none; }
.product-img-platforms .pp-pcard-platforms { position: static; gap: 3px; }
.product-img-platforms .pp-pcard-plat { width: 24px; height: 24px; border-radius: 6px; background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.18); }
.product-img-platforms .pp-pcard-plat img, .product-img-platforms .pp-pcard-plat svg { width: 14px; height: 14px; }
.gp-hero-text { flex: 1; min-width: 0; }
.gp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1;
  text-transform: uppercase; margin-bottom: 10px;
}
.gp-hero-title .accent { color: var(--red); }
.gp-hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--text-2); }
.gp-hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.gp-hero-meta-item svg { color: var(--text-3); }
.gp-hero-stars { color: var(--yellow); letter-spacing: 1px; }
.gp-hero-meta strong { color: var(--text); font-weight: 700; }
.gp-hero-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border-hover); }
.gp-shell {
  max-width: 1440px; margin: 0 auto;
  padding: 28px 32px 60px;
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 28px;
  align-items: start;
}
.gp-side {
  position: sticky; top: 84px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
}
.side-label { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); padding: 10px 12px 8px; }
.side-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: var(--radius);
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all .15s;
  width: 100%; text-align: left; border: none; background: transparent;
  position: relative;
}
.side-item:hover { background: var(--bg-elevated); color: var(--text); }
.side-item.active { background: rgba(189,30,45,0.10); color: var(--text); }
.side-item.active::before { content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; background: var(--red); border-radius: 0 2px 2px 0; }
.side-item-ico {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg-elevated);
  display: grid; place-items: center;
  color: var(--text-3); flex-shrink: 0; font-size: 14px;
}
.side-item.active .side-item-ico { background: rgba(189,30,45,0.20); color: var(--red); }
.side-item-label { flex: 1; }
.side-item-count { font-size: 11.5px; font-weight: 700; color: var(--text-3); background: var(--bg-elevated); padding: 2px 8px; border-radius: var(--radius-full); min-width: 24px; text-align: center; }
.side-item.active .side-item-count { background: var(--red); color: #fff; }
.side-divider { height: 1px; background: var(--border); margin: 6px 12px; }
.side-trust { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.side-trust-row { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--text-2); }
.side-trust-row svg { color: var(--green); flex-shrink: 0; }
.side-trust-row strong { color: var(--text); font-weight: 700; }
.gp-main { min-width: 0; }
.gp-catalog-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 16px; flex-wrap: wrap; }
.gp-catalog-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.gp-catalog-title .muted { color: var(--text-3); font-weight: 700; }
.gp-search { position: relative; min-width: 240px; }
.gp-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; }
.gp-search input {
  width: 100%; padding: 9px 14px 9px 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 13px; color: var(--text);
  transition: border-color .15s;
}
.gp-search input:focus { outline: none; border-color: var(--red); }
.gp-search input::placeholder { color: var(--text-3); }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.product-card {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .15s, transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
  text-decoration: none; overflow: hidden;
}
.product-card:hover {
  border-color: rgba(189,30,45,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.product-img { width: 100%; height: 150px; position: relative; overflow: hidden; background: var(--bg-elevated); flex-shrink: 0; }
.product-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.product-img-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,4,8,0.82) 0%, rgba(6,4,8,0.38) 50%, rgba(6,4,8,0.10) 100%);
}
.product-img-float {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 0; box-sizing: border-box;
  z-index: 1;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
  /* Source PNGs have transparent built-in padding around the subject;
     scaling visually pushes the content out to the card edges. */
  transform: scale(1.22);
  transform-origin: center 45%;
  transition: transform .3s;
}
.product-card:hover .product-img-float { transform: scale(1.28) translateY(-2px); }
.product-img-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.025) 8px, rgba(255,255,255,0.025) 16px), var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
}
.product-img-placeholder span { font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.18); font-family: monospace; }
.ppopular-badge { position: absolute; bottom: 8px; right: 8px; font-size: 9px; font-weight: 800; color: #1a1000; background: var(--yellow); padding: 2px 7px; border-radius: var(--radius-full); letter-spacing: .05em; text-transform: uppercase; z-index: 1; }
.product-body { padding: 12px 14px; display: flex; flex-direction: column; flex: 1; }
.product-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 6px; }
.pcat { display: inline-flex; align-items: center; gap: 4px; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 7px; border-radius: var(--radius-full); background: rgba(189,30,45,0.12); color: var(--red); }
.pcat-img { position: absolute; bottom: 8px; left: 8px; z-index: 2; background: rgba(6,4,8,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(189,30,45,0.35); }
.product-name { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.product-bullets { display: flex; flex-direction: column; gap: 6px; margin: 0 0 12px; padding: 0; list-style: none; flex: 1; align-items: stretch; }
.product-bullet { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2); line-height: 1.3; min-width: 0; justify-content: flex-start; text-align: left; }
.product-bullet span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex: 1; }
.product-bullet-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; opacity: 0.85; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 6px; padding-top: 10px; border-top: 1px solid var(--border); }
.product-from { font-size: 9.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.product-price-val { font-family: var(--font-display); font-size: 17px; font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.product-cta { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border-radius: var(--radius-full); background: var(--red); color: #fff; flex-shrink: 0; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; transition: all .15s; }
.product-card:hover .product-cta { background: var(--red-dark); transform: translateX(2px); }
.empty-state { grid-column: 1 / -1; padding: 60px 20px; text-align: center; color: var(--text-3); font-size: 14px; }
.gp-how { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.gp-how-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; gap: 14px; flex-wrap: wrap; }
.gp-how-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.gp-how-sub { font-size: 13px; color: var(--text-3); }
.gp-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gp-how-card {
  padding: 16px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; gap: 14px; align-items: center;
}
.gp-how-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800; color: #fff;
  background: var(--red);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.gp-how-card-text { flex: 1; min-width: 0; }
.gp-how-card-title {
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 800;
  color: var(--text); letter-spacing: -0.01em;
  line-height: 1.2;
}
.gp-how-card-desc { display: none; }   /* simplified — titles only */
.seo-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.seo-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.seo-inner:has(.seo-fullbody) {
  grid-template-columns: 1fr;
  max-width: 880px;
  text-align: left;
}
.seo-eyebrow--centered { text-align: center; margin-bottom: 12px; }
.seo-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.1;
  text-align: center;
  color: var(--text);
  margin: 0 0 36px;
}

.seo-fullbody { font-size: 15.5px; line-height: 1.7; color: var(--text-2); }
.seo-fullbody > *:first-child { margin-top: 0; }
.seo-fullbody > *:last-child { margin-bottom: 0; }

/* H2 sub-sections inside the SEO body get an underline-style heading */
.seo-fullbody h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--text); line-height: 1.2;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.seo-fullbody h2::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 44px; height: 3px; background: var(--red);
  border-radius: 2px;
}
.seo-fullbody h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--text);
  margin: 24px 0 10px; line-height: 1.3;
}
.seo-fullbody p { margin: 0 0 14px; }
.seo-fullbody strong { color: var(--text); font-weight: 700; }
.seo-fullbody a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.seo-fullbody a:hover { color: var(--red-light, #ff5566); }

/* Bulleted lists — red dot bullets like the product page */
.seo-fullbody ul {
  margin: 14px 0 22px; padding-left: 22px; list-style: none;
}
.seo-fullbody ul li {
  position: relative; padding-left: 0; margin-bottom: 10px;
}
.seo-fullbody ul li::before {
  content: ""; position: absolute; left: -18px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
/* Numbered lists — red numerals */
.seo-fullbody ol {
  margin: 14px 0 22px; padding-left: 26px;
}
.seo-fullbody ol li { margin-bottom: 10px; }
.seo-fullbody ol li::marker { color: var(--red); font-weight: 700; }

/* Service rows: when an H3 immediately follows another H3+p pair, treat
   as a card list (used for "Services we offer for ACNH" type lists). */
.seo-fullbody .seo-card {
  display: block; padding: 16px 18px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 0 0 12px;
}
.seo-fullbody .seo-card strong { display: block; color: var(--text); margin-bottom: 4px; font-size: 15px; }
.seo-fullbody .seo-card p, .seo-fullbody .seo-card span { margin: 0; font-size: 14px; color: var(--text-2); }

@media (max-width: 720px) {
  .seo-section-title { font-size: 24px; margin-bottom: 24px; }
  .seo-fullbody { font-size: 14.5px; }
  .seo-fullbody h2 { font-size: 19px; margin-top: 28px; }
}
.seo-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.seo-title { font-family: var(--font-display); font-size: clamp(20px,2.4vw,28px); font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 14px; line-height: 1.15; white-space: pre-line; }
.seo-body { font-size: 13.5px; color: var(--text-2); line-height: 1.75; }
.seo-body p { margin-bottom: 12px; }
.seo-body strong { color: var(--text); }
.seo-checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.seo-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.seo-check-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); color: var(--red); display: grid; place-items: center; margin-top: 1px; }
.seo-check strong { color: var(--text); }
.faq-section { padding: 56px 0; }
.faq-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-head-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: start; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .15s; }
.faq-item.open { border-color: rgba(189,30,45,0.35); }
.faq-q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 14px 16px; text-align: left; background: none; border: none; cursor: pointer; }
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q-text { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.35; flex: 1; }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; color: var(--text-3); transition: all .2s; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; padding: 0 16px; }
.faq-item.open .faq-ans { max-height: 600px; padding: 0 16px 14px; }
.faq-ans-inner { padding-top: 12px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-2); line-height: 1.7; }
.faq-ans-inner strong { color: var(--text); }
.reviews-section { background: var(--bg-card); border-top: 1px solid var(--border); padding: 56px 0; }
.reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.reviews-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.reviews-score { text-align: right; }
.reviews-score-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.reviews-stars { display: flex; gap: 2px; justify-content: flex-end; margin: 4px 0; }
.rstar { color: var(--yellow); font-size: 14px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-card { background: #050508; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: border-color .15s, transform .15s; }
.review-card:hover { border-color: rgba(189,30,45,0.28); transform: translateY(-2px); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-av { width: 32px; height: 32px; border-radius: 50%; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--red); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-date { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.review-text { font-size: 12.5px; color: var(--text-2); line-height: 1.65; font-style: italic; }
.review-service { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.review-svc-label { font-size: 9.5px; color: var(--text-3); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.review-svc-val { font-size: 11.5px; color: var(--text-2); font-weight: 600; }
.other-games { border-top: 1px solid var(--border); padding: 44px 0; }
.other-games-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) {
  .gp-shell { grid-template-columns: 200px 1fr; gap: 20px; padding: 22px 24px 50px; }
  .gp-hero-inner { padding: 22px 24px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .seo-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gp-how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .gp-shell { grid-template-columns: 1fr; }
  .gp-side { position: static; }
  .side-trust { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gp-hero-inner { padding: 18px 18px; }
  .gp-hero-row { gap: 12px; }
  .gp-icon-wrap { width: 64px; height: 64px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gp-how-grid { grid-template-columns: 1fr; }
  .faq-inner, .reviews-inner, .other-games-inner, .seo-inner { padding: 0 18px; }
  .gp-shell { padding: 20px 18px 44px; }
}

/* ── PRODUCT PAGE (product.html) ────────────────────────── */
.pp-image-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 16px;
  align-items: center; padding: 12px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px;
}
.pp-image-row img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.pp-image-placeholder {
  width: 100%; height: 140px; border-radius: var(--radius-sm);
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.025) 8px, rgba(255,255,255,0.025) 16px), var(--bg-elevated);
  display: grid; place-items: center; color: rgba(255,255,255,0.18);
}
.pp-desc-body { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.pp-desc-body strong { color: var(--text); }
@media (max-width: 720px) {
  .pp-image-row { grid-template-columns: 1fr; }
  .pp-image-row img, .pp-image-placeholder { height: 180px; }
}

/* ── MY ACCOUNT PAGE (account.html) ────────────────────── */
.ac { padding-top: var(--nav-h); min-height: 100vh; }
.ac-shell { max-width: 1180px; margin: 0 auto; padding: 0 32px; width: 100%; }
.ac-intro { padding: 36px 0 24px; }
.ac-intro-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.ac-intro h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; line-height: 1.1; }
.ac-intro-sub { font-size: 14px; color: var(--text-3); margin-top: 6px; }
.ac-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; padding-bottom: 96px; }
.ac-side { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 8px; position: sticky; top: calc(var(--nav-h) + 24px); }
.ac-side-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--radius);
  color: var(--text-2); font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; border: none;
  background: transparent; width: 100%; text-align: left;
  transition: background var(--transition), color var(--transition);
}
.ac-side-link:hover { color: var(--text); background: var(--bg-elevated); }
.ac-side-link.active { background: var(--bg-elevated); color: var(--text); }
.ac-side-link.active svg { color: var(--red); }
.ac-side-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-3); }
.ac-side-link.active svg, .ac-side-link:hover svg { color: var(--text); }
.ac-side-divider { height: 1px; background: var(--border); margin: 6px 4px; }
.ac-side-link.danger { color: var(--text-3); }
.ac-side-link.danger:hover { color: var(--red); }
.ac-panel { display: none; }
.ac-panel.active { display: block; }
.ac-panel-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.ac-panel-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.005em; }
.ac-panel-sub { font-size: 13.5px; color: var(--text-3); margin-top: 4px; }
.ac-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.ac-card + .ac-card { margin-top: 16px; }
.ac-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.ac-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; }
.ac-tile-lbl { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ac-tile-lbl svg { width: 14px; height: 14px; }
.ac-tile-val { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--text); line-height: 1; }
.ac-tile-val .accent { color: var(--red); }
.ac-tile-meta { font-size: 12.5px; color: var(--text-3); margin-top: 6px; }
.ac-tile-meta b { color: var(--text-2); font-weight: 700; }
.ac-orders { display: flex; flex-direction: column; gap: 10px; }
.ac-order { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; transition: border var(--transition); }
.ac-order:hover { border-color: var(--border-strong, color-mix(in oklch, var(--border) 60%, white)); }
.ac-order.expanded { border-color: rgba(189,30,45,0.35); }
.ac-order-row { display: grid; grid-template-columns: 44px 1.5fr 1fr auto auto; gap: 16px; align-items: center; }
.ac-order-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.ac-order-icon img { width: 100%; height: 100%; object-fit: cover; }
.ac-order-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--text); line-height: 1.2; }
.ac-order-sub { font-size: 12.5px; color: var(--text-3); margin-top: 3px; }
.ac-order-id { font-family: var(--font-mono, monospace); font-size: 12px; color: var(--text-3); }
.ac-order-id b { color: var(--text-2); font-weight: 600; }
.ac-order-price { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text); text-align: right; }
.ac-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: var(--radius-full); font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
.ac-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.ac-status.in-progress { background: rgba(231,180,51,0.12); color: #e7b433; }
.ac-status.in-progress .dot { background: #e7b433; box-shadow: 0 0 6px #e7b433; animation: pulse-dot 1.6s ease infinite; }
.ac-status.delivered { background: rgba(4,218,141,0.12); color: #04da8d; }
.ac-status.delivered .dot { background: #04da8d; }
.ac-status.completed { background: rgba(166,166,173,0.12); color: var(--text-2); }
.ac-status.completed .dot { background: var(--text-2); }
.ac-status.cancelled { background: rgba(189,30,45,0.12); color: var(--red); }
.ac-status.cancelled .dot { background: var(--red); }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.ac-order-toggle { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-2); transition: background var(--transition); }
.ac-order-toggle:hover { background: var(--border); color: var(--text); }
.ac-order-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
.ac-order.expanded .ac-order-toggle svg { transform: rotate(180deg); }
.ac-order-detail { display: none; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.ac-order.expanded .ac-order-detail { display: block; }
.ac-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.ac-detail-cell { background: var(--bg-elevated); border-radius: var(--radius); padding: 12px 14px; }
.ac-detail-lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.ac-detail-val { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--text); }
.ac-detail-val.muted { color: var(--text-2); font-weight: 600; }
.ac-chat { background: var(--bg-base, #050508); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.ac-chat-head { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--bg-card); }
.ac-chat-head-title { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 10px; }
.ac-chat-head-title svg { width: 16px; height: 16px; color: var(--red); }
.ac-chat-head-meta { font-size: 12px; color: var(--text-3); }
.ac-chat-head-meta .dot { display: inline-block; width: 6px; height: 6px; background: #04da8d; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.ac-chat-body { padding: 22px; display: flex; flex-direction: column; gap: 16px; max-height: 480px; overflow-y: auto; }
.ac-msg { display: flex; gap: 12px; max-width: 80%; }
.ac-msg.outbound { align-self: flex-end; flex-direction: row-reverse; }
.ac-msg-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff; }
.ac-msg-avatar.customer { background: linear-gradient(135deg, var(--red), #8e1521); }
.ac-msg-avatar.support { background: linear-gradient(135deg, #4b6bff, #2e3eb8); }
.ac-msg-avatar.booster { background: linear-gradient(135deg, #04da8d, #027a52); color: #001b0f; }
.ac-msg-avatar.system { background: var(--bg-elevated); color: var(--text-3); border: 1px dashed var(--border); }
.ac-msg-bubble { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ac-msg-meta { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.ac-msg-meta b { color: var(--text-2); font-weight: 700; }
.ac-msg.outbound .ac-msg-meta { justify-content: flex-end; }
.ac-msg-body { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 14px; font-size: 14px; line-height: 1.5; color: var(--text); }
.ac-msg.outbound .ac-msg-body { background: rgba(189,30,45,0.12); border-color: rgba(189,30,45,0.3); }
.ac-msg.system .ac-msg-body { background: transparent; border: 1px dashed var(--border); color: var(--text-3); font-size: 12.5px; font-style: italic; }
.ac-chat-compose { border-top: 1px solid var(--border); padding: 14px 18px; background: var(--bg-card); display: flex; gap: 10px; align-items: flex-end; }
.ac-chat-compose textarea { flex: 1; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 12px; color: var(--text); font-family: inherit; font-size: 14px; line-height: 1.5; resize: none; min-height: 44px; max-height: 140px; outline: none; transition: border var(--transition); }
.ac-chat-compose textarea:focus { border-color: rgba(189,30,45,0.5); }
.ac-chat-attach { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-3); }
.ac-chat-attach:hover { color: var(--text); background: var(--border); }
.ac-ticket { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; cursor: pointer; transition: border var(--transition); }
.ac-ticket + .ac-ticket { margin-top: 10px; }
.ac-ticket:hover { border-color: rgba(189,30,45,0.35); }
.ac-ticket-subject { font-family: var(--font-display); font-size: 14.5px; font-weight: 800; color: var(--text); }
.ac-ticket-sub { font-size: 12.5px; color: var(--text-3); margin-top: 3px; }
.ac-ticket-time { font-size: 12px; color: var(--text-3); }
.ac-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ac-form-grid .ac-field--full { grid-column: 1 / -1; }
.ac-field-lbl { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.ac-input, .ac-textarea { width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; color: var(--text); font-family: inherit; font-size: 14px; outline: none; transition: border var(--transition); }
.ac-input:focus { border-color: rgba(189,30,45,0.5); }
.ac-form-actions { margin-top: 18px; display: flex; gap: 10px; justify-content: flex-end; }
.ac-empty { text-align: center; padding: 56px 24px; color: var(--text-3); }
.ac-empty-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-3); }
.ac-empty h4 { color: var(--text); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.ac-empty p { font-size: 13.5px; max-width: 320px; margin: 0 auto; }
@media (max-width: 880px) {
  .ac-layout { grid-template-columns: 1fr; gap: 18px; }
  .ac-side { position: static; display: flex; gap: 4px; overflow-x: auto; padding: 6px; }
  .ac-side-link { white-space: nowrap; }
  .ac-side-divider { display: none; }
  .ac-tiles { grid-template-columns: 1fr; }
  .ac-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-order-row { grid-template-columns: 44px 1fr auto; row-gap: 8px; }
  .ac-order-price, .ac-order-sub { grid-column: 2 / -1; }
  .ac-form-grid { grid-template-columns: 1fr; }
  .ac-shell { padding: 0 20px; }
  .ac-msg { max-width: 92%; }
}

/* ── FAQ PAGE (faq.html) ────────────────────────────────── */
.faq-hero { position: relative; background: radial-gradient(ellipse 100% 70% at 50% -10%, rgba(189,30,45,0.16) 0%, transparent 55%), #050508; padding: 88px 0 48px; overflow: hidden; border-bottom: 1px solid var(--border); }
.faq-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.016'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.faq-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 40px; text-align: center; }
.faq-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); padding: 5px 14px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); border-radius: var(--radius-full); margin-bottom: 22px; }
.faq-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; letter-spacing: -0.03em; line-height: 0.98; text-transform: uppercase; margin-bottom: 18px; }
.faq-hero-title .accent { color: var(--red); }
.faq-hero-sub { font-size: 16px; color: var(--text-2); line-height: 1.7; max-width: 520px; margin: 0 auto 28px; }
.faq-search-wrap { position: relative; max-width: 640px; margin: 0 auto; }
.faq-page input.faq-search-input { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-full); color: var(--text); font-size: 16px; padding: 18px 60px 18px 56px; outline: none; transition: all .2s ease; box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.faq-page input.faq-search-input::placeholder { color: var(--text-3); }
.faq-page input.faq-search-input:focus { border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 4px rgba(189,30,45,0.12), 0 6px 24px rgba(0,0,0,0.4); }
.faq-search-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; }
.faq-search-clear { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); display: none; align-items: center; justify-content: center; cursor: pointer; color: var(--text-2); transition: all .15s ease; }
.faq-search-clear:hover { background: var(--red-subtle); color: var(--red); border-color: rgba(189,30,45,0.4); }
.faq-search-clear.show { display: flex; }
.faq-search-hint { margin-top: 14px; font-size: 12.5px; color: var(--text-3); letter-spacing: .02em; }
.faq-search-hint kbd { display: inline-block; padding: 1px 7px; border-radius: 5px; background: var(--bg-card); border: 1px solid var(--border); font-family: var(--font-mono, monospace); font-size: 11px; color: var(--text-2); }
.faq-filter-section { padding: 36px 0 0; background: #050508; }
.faq-filter-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.faq-filter-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.faq-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.faq-filter-wrap > .faq-filter-label + .faq-chips + .faq-filter-label { margin-top: 4px; }
.faq-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; line-height: 1; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-2); cursor: pointer; transition: all .15s ease; white-space: nowrap; }
.faq-chip:hover { border-color: var(--border-hover); color: var(--text); }
.faq-chip.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(189,30,45,0.35); }
.faq-chip-count { font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-full); background: var(--bg-elevated); color: var(--text-3); }
.faq-chip.active .faq-chip-count { background: rgba(255,255,255,0.18); color: #fff; }
/* Icon-only game tiles (replaces the old text chips) */
.faq-game-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 4px; }
.faq-game-tile {
  position: relative;
  width: 52px; height: 52px;
  padding: 0; border: 2px solid var(--border); border-radius: 12px;
  background: var(--bg-card); cursor: pointer; overflow: visible;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.faq-game-tile:hover {
  border-color: rgba(189,30,45,0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.faq-game-tile.active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(189,30,45,0.22), 0 6px 18px rgba(189,30,45,0.35);
}
.faq-game-tile img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 9px; display: block;
}
.faq-game-tile-fallback {
  font-family: var(--font-display, inherit);
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  color: var(--text-2);
}
.faq-game-tile-all-glyph { display: inline-flex; color: var(--red); }
.faq-game-tile--all { background: var(--bg-elevated); }
.faq-game-tile-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  padding: 0 6px; border-radius: 999px;
  background: #18191f; border: 1.5px solid var(--bg-outer, #0a0a0e);
  font-size: 10.5px; font-weight: 800; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  line-height: 1; pointer-events: none;
}
.faq-game-tile.active .faq-game-tile-count {
  background: var(--red); color: #fff;
  border-color: rgba(189,30,45,0.6);
}
@media (max-width: 600px) {
  .faq-game-tile { width: 46px; height: 46px; border-radius: 11px; }
  .faq-game-grid { gap: 8px; }
}
.faq-game-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; line-height: 1; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-2); cursor: pointer; flex-shrink: 0; transition: all .15s ease; white-space: nowrap; }
.faq-game-chip:hover { border-color: var(--border-hover); color: var(--text); transform: translateY(-1px); }
.faq-game-chip.active { background: var(--red-subtle); border-color: rgba(189,30,45,0.5); color: var(--red); }
.faq-game-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: var(--text-2); flex-shrink: 0; }
.faq-game-chip.active .faq-game-icon { background: var(--red); color: #fff; }
.faq-list-section { padding: 32px 0 80px; background: #050508; }
.faq-list-wrap { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.faq-results-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 14px 18px; margin-bottom: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.faq-results-count { font-size: 13.5px; color: var(--text-2); }
.faq-results-count strong { color: var(--text); font-weight: 700; }
.faq-results-active { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--text-3); }
.faq-results-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--radius-full); background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-2); font-size: 12px; }
.faq-results-pill button { background: none; border: none; color: var(--text-3); cursor: pointer; padding: 0; line-height: 0; display: flex; }
.faq-results-pill button:hover { color: var(--red); }
.faq-group { margin-bottom: 28px; }
.faq-group-head { display: flex; align-items: center; gap: 12px; padding: 0 6px 12px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.faq-group-head-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.faq-group-head-title { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--text); }
.faq-group-head-count { margin-left: auto; font-size: 11.5px; color: var(--text-3); letter-spacing: .04em; }
.faq-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 8px; overflow: hidden; transition: border-color .18s ease; }
.faq-card.open { border-color: rgba(189,30,45,0.35); }
.faq-card-q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 20px; text-align: left; background: none; border: none; cursor: pointer; transition: background .15s ease; }
.faq-card-q:hover { background: rgba(255,255,255,0.02); }
.faq-card-q-text { flex: 1; font-family: var(--font-display); font-size: 15.5px; font-weight: 700; line-height: 1.4; color: var(--text); letter-spacing: -0.005em; }
.faq-card-q-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.faq-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-full); background: var(--bg-elevated); color: var(--text-3); border: 1px solid var(--border); }
.faq-tag.tag-game { background: var(--red-subtle); color: var(--red); border-color: rgba(189,30,45,0.3); }
.faq-card-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-3); transition: all .25s ease; }
.faq-card-icon svg { width: 12px; height: 12px; }
.faq-card.open .faq-card-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-card-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 20px; }
.faq-card.open .faq-card-a { max-height: 800px; padding: 0 20px 20px; }
.faq-card-a-inner { font-size: 14.5px; color: var(--text-2); line-height: 1.75; padding-top: 4px; border-top: 1px solid var(--border); padding: 16px 0 0; }
.faq-card-a-inner strong { color: var(--text); font-weight: 600; }
.faq-card-a-inner a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
mark.faq-mark { background: rgba(189,30,45,0.25); color: var(--text); padding: 0 2px; border-radius: 3px; }
.faq-empty { text-align: center; padding: 64px 24px; background: var(--bg-card); border: 1px dashed var(--border); border-radius: var(--radius-xl); }
.faq-empty-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.25); color: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.faq-empty-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); margin-bottom: 10px; }
.faq-empty-text { font-size: 14.5px; color: var(--text-2); max-width: 440px; margin: 0 auto 22px; line-height: 1.65; }
.faq-help-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.faq-help-head { max-width: 1100px; margin: 0 auto; padding: 64px 40px 0; text-align: center; }
.faq-help-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.faq-help-head h2 { margin-bottom: 8px; }
.faq-help-head p { color: var(--text-2); font-size: 15px; }
.faq-help-inner { max-width: 1100px; margin: 0 auto; padding: 28px 40px 64px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 860px) { .faq-help-inner { grid-template-columns: 1fr; } }
.faq-help-card { background: #050508; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; transition: all .2s ease; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 14px; }
.faq-help-card:hover { transform: translateY(-2px); border-color: rgba(189,30,45,0.35); }
.faq-help-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.25); display: flex; align-items: center; justify-content: center; color: var(--red); }
.faq-help-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); }
.faq-help-card-text { font-size: 13.5px; color: var(--text-2); line-height: 1.6; flex: 1; }
.faq-help-card-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }

/* ── ABOUT PAGE (about.html) ────────────────────────────── */
.ab-hero { position: relative; padding: 88px 0 64px; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 90% 0%, rgba(189,30,45,0.22) 0%, transparent 55%), radial-gradient(ellipse 50% 40% at 0% 100%, rgba(27,132,255,0.08) 0%, transparent 60%); }
.ab-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 0%, transparent 70%); pointer-events: none; }
.ab-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; }
.ab-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); border-radius: var(--radius-full); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 22px; }
.ab-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(189,30,45,0.5); animation: abPulse 1.8s ease-out infinite; }
@keyframes abPulse { 0% { box-shadow: 0 0 0 0 rgba(189,30,45,0.6); } 70% { box-shadow: 0 0 0 10px rgba(189,30,45,0); } 100% { box-shadow: 0 0 0 0 rgba(189,30,45,0); } }
.ab-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px); font-weight: 900; letter-spacing: -0.03em; line-height: 0.98; text-transform: uppercase; margin-bottom: 22px; }
.ab-hero h1 .accent { color: var(--red); }
.ab-hero p.lede { font-size: clamp(16px, 1.5vw, 18px); color: var(--text-2); line-height: 1.7; max-width: 540px; margin-bottom: 28px; }
.ab-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-hero-card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: 0 32px 64px rgba(0,0,0,0.4); }
.ab-hero-card-tag { position: absolute; top: -10px; left: 24px; font-family: monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-full); color: var(--text-3); }
.ab-hero-card-quote { font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; line-height: 1.4; letter-spacing: -0.01em; color: var(--text); margin-bottom: 22px; }
.ab-hero-card-quote::before { content: '"'; color: var(--red); font-size: 48px; line-height: 0; vertical-align: -22px; margin-right: 4px; }
.ab-hero-card-meta { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px dashed var(--border); }
.ab-hero-card-dot { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0; }
.ab-hero-card-meta-name { font-size: 13px; font-weight: 700; color: var(--text); }
.ab-hero-card-meta-role { font-family: monospace; font-size: 11px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 880px) { .ab-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.ab-stat-strip { max-width: 1280px; margin: 56px auto 0; padding: 0 40px; position: relative; z-index: 1; }
.ab-stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; background: linear-gradient(135deg, rgba(189,30,45,0.10) 0%, transparent 60%), var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.ab-stat-cell { padding: 28px 20px; border-right: 1px solid var(--border); text-align: center; }
.ab-stat-cell:last-child { border-right: none; }
.ab-stat-num { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.ab-stat-num .accent { color: var(--red); }
.ab-stat-label { font-size: 11.5px; font-weight: 600; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; margin-top: 10px; }
@media (max-width: 900px) { .ab-stat-grid { grid-template-columns: repeat(2, 1fr); } .ab-stat-cell { border-bottom: 1px solid var(--border); } .ab-stat-cell:nth-child(odd) { border-right: 1px solid var(--border); } .ab-stat-cell:nth-child(even) { border-right: none; } .ab-stat-cell:nth-child(5) { grid-column: 1 / 3; border-right: none; border-bottom: none; } }
.ab-section { padding: 72px 0; }
.ab-section + .ab-section { padding-top: 0; }
.ab-section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.ab-section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.ab-section h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.ab-section .lead { font-size: 16px; color: var(--text-2); line-height: 1.7; }
.ab-origin { display: grid; grid-template-columns: 1fr; gap: 40px; }
.ab-origin-timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 20px; margin-top: 4px; }
.ab-origin-timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: var(--border); }
.ab-tl-item { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 10px; row-gap: 2px; padding: 10px 0; position: relative; }
.ab-tl-dot { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: 2px solid var(--bg-card); outline: 1px solid var(--border); margin-left: -22px; margin-top: 4px; flex-shrink: 0; }
.ab-tl-item--now .ab-tl-dot { background: var(--red); outline-color: var(--red); }
.ab-tl-year { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: 0.02em; }
.ab-tl-item--now .ab-tl-year { color: var(--red); }
.ab-tl-desc { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }
.ab-origin-mileposts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 24px; border-top: 1px dashed var(--border); }
.ab-mile-num { font-family: var(--font-display); font-size: 26px; font-weight: 900; letter-spacing: -0.02em; color: var(--text); }
.ab-mile-num .accent { color: var(--red); }
.ab-mile-label { font-size: 11.5px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.ab-origin-text { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.ab-origin-text h2 { font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 22px; }
.ab-origin-text p { font-size: 15.5px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.ab-origin-text p strong { color: var(--text); font-weight: 700; }
.ab-origin-quote { margin: 20px 0; padding: 16px 20px; background: var(--bg); border-left: 3px solid var(--red); border-radius: var(--radius-sm); font-size: 15px; line-height: 1.6; color: var(--text); font-weight: 600; font-style: italic; }
@media (max-width: 880px) { .ab-origin { grid-template-columns: 1fr; } .ab-origin-text { padding: 28px; } }
.ab-mission { position: relative; padding: 64px 48px; text-align: center; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(189,30,45,0.14) 0%, transparent 60%), var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.ab-mission::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 70%); pointer-events: none; }
.ab-mission-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.ab-mission-tag { display: inline-block; font-family: monospace; font-size: 11.5px; color: var(--text-3); letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border: 1px dashed var(--border); border-radius: var(--radius-full); margin-bottom: 24px; }
.ab-mission h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.ab-mission h2 .accent { color: var(--red); }
.ab-mission p { font-size: clamp(15px, 1.5vw, 17px); color: var(--text-2); line-height: 1.75; max-width: 600px; margin: 0 auto; }
.ab-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ab-value-card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; transition: border-color .25s ease, transform .25s ease; }
.ab-value-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.ab-value-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ab-value-icon svg { width: 20px; height: 20px; }
.ab-value-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.ab-value-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.ab-value-tag { display: block; margin-top: 16px; font-family: monospace; font-size: 11px; color: var(--text-3); padding-top: 12px; border-top: 1px dashed var(--border); letter-spacing: .04em; }
@media (max-width: 900px) { .ab-value-grid { grid-template-columns: 1fr; } }
.ab-vet { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; }
.ab-vet-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.ab-vet-head h3 { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.ab-vet-head p { font-size: 14px; color: var(--text-2); line-height: 1.65; max-width: 540px; }
.ab-vet-funnel { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-3); white-space: nowrap; text-align: right; }
.ab-vet-funnel .pct { display: block; font-size: 36px; color: var(--red); letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.ab-vet-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ab-vet-item { display: flex; gap: 16px; padding: 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.ab-vet-num { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: var(--red); flex-shrink: 0; min-width: 32px; }
.ab-vet-text h5 { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: -0.005em; margin-bottom: 4px; }
.ab-vet-text p { font-size: 13px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 720px) { .ab-vet-list { grid-template-columns: 1fr; } .ab-vet { padding: 24px; } .ab-vet-head { flex-direction: column; align-items: flex-start; } .ab-vet-funnel { text-align: left; } }
.ab-reach { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; }
.ab-reach-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; }
.ab-reach-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.ab-reach-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 22px; }
.ab-reach-bignum { font-family: var(--font-display); font-size: clamp(56px, 7vw, 84px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--text); margin-bottom: 24px; }
.ab-reach-bignum .of { font-size: 24px; color: var(--text-3); margin-left: 4px; font-weight: 700; }
.ab-reach-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 20px; border-top: 1px dashed var(--border); }
.ab-reach-mini-num { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.ab-reach-mini-num.green { color: var(--green); }
.ab-reach-mini-num.blue  { color: var(--blue); }
.ab-reach-mini-label { font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; margin-top: 4px; }
.ab-reach-list { display: flex; flex-direction: column; gap: 8px; }
.ab-reach-row { display: grid; grid-template-columns: 1.2fr 1fr 60px; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.ab-reach-row:last-child { border-bottom: none; }
.ab-reach-region { font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 10px; }
.ab-reach-flag { width: 24px; height: 24px; border-radius: 4px; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 800; color: var(--text-2); flex-shrink: 0; }
.ab-reach-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.05); overflow: hidden; }
.ab-reach-bar > span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--red), var(--red-dark)); transform-origin: left; animation: reachFill 1.3s cubic-bezier(.2,.8,.2,1) both; }
@keyframes reachFill { from { transform: scaleX(0); } to { transform: scaleX(var(--w, 1)); } }
.ab-reach-pct { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--text); text-align: right; }
@media (max-width: 880px) { .ab-reach { grid-template-columns: 1fr; } }
.ab-community { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.ab-community-text { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.ab-community-text h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.ab-community-text h3 .accent { color: var(--red); }
.ab-community-text p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 22px; }
.ab-community-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ab-community-stat { padding: 14px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.ab-community-stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: var(--text); }
.ab-community-stat-num.green { color: var(--green); }
.ab-community-stat-num.blue  { color: var(--blue); }
.ab-community-stat-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; margin-top: 4px; }
.ab-community-visual { position: relative; border-left: 1px solid var(--border); background: radial-gradient(ellipse 70% 70% at 70% 30%, rgba(88,101,242,0.15) 0%, transparent 60%), repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px), var(--bg); padding: 32px; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.ab-community-feed { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 10px; }
.ab-feed-card { background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 14px; display: flex; align-items: center; gap: 12px; font-size: 12.5px; }
.ab-feed-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 11px; color: var(--text); flex-shrink: 0; }
.ab-feed-text { color: var(--text-2); line-height: 1.5; min-width: 0; }
.ab-feed-text strong { color: var(--text); font-weight: 700; }
.ab-feed-time { color: var(--text-4); font-family: monospace; font-size: 10px; margin-top: 2px; display: block; letter-spacing: .04em; }
@media (max-width: 880px) { .ab-community { grid-template-columns: 1fr; } .ab-community-visual { border-left: none; border-top: 1px solid var(--border); min-height: 280px; } .ab-community-text { padding: 28px; } }
.ab-cta { position: relative; padding: 64px 48px; text-align: center; background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(189,30,45,0.18) 0%, transparent 60%), var(--bg-card); border: 1px solid rgba(189,30,45,0.2); border-radius: var(--radius-xl); overflow: hidden; }
.ab-cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(189,30,45,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(189,30,45,0.06) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 70%); pointer-events: none; }
.ab-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.ab-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 12px; }
.ab-cta p { color: var(--text-2); margin-bottom: 24px; }

/* ── CONTACT PAGE (contact.html) ────────────────────────── */
.contact-hero { position: relative; background: radial-gradient(ellipse 100% 70% at 50% -10%, rgba(189,30,45,0.16) 0%, transparent 55%), #050508; padding: 88px 0 64px; overflow: hidden; border-bottom: 1px solid var(--border); }
.contact-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.016'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.contact-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 40px; text-align: center; }
.contact-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); padding: 5px 14px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); border-radius: var(--radius-full); margin-bottom: 22px; }
.contact-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; text-transform: uppercase; margin-bottom: 18px; }
.contact-hero-title .accent { color: var(--red); }
.contact-hero-sub { font-size: 16px; color: var(--text-2); line-height: 1.7; max-width: 540px; margin: 0 auto 8px; }
.contact-hero-sub strong { color: var(--green); font-weight: 700; }
.contact-body { background: #050508; padding: 56px 0 96px; }
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.ch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.ch-card { display: flex; gap: 14px; align-items: center; padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); text-decoration: none; color: inherit; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.ch-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.ch-icon { width: 42px; height: 42px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ch-body { flex: 1; min-width: 0; }
.ch-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; line-height: 1.2; }
.ch-sub { font-size: 12.5px; color: var(--text-3); }
.ch-arrow { color: var(--text-4); transition: transform .2s ease, color .2s ease; flex-shrink: 0; }
.ch-card:hover .ch-arrow { color: var(--text); transform: translateX(2px); }
.contact-shell { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.form-card h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; }
.form-card .lede { color: var(--text-2); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Blocksy injects a clearfix (::before/::after, display:table) on content
   elements; inside a CSS grid those become phantom cells and push the fields
   into the wrong columns. Remove them so the 2-up form rows align. */
.form-row::before, .form-row::after { content: none !important; display: none !important; }
.form-stack { display: flex; flex-direction: column; gap: 18px; }
.form-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-3); margin-top: 4px; }
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.side-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; }
.side-card h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-label { color: var(--text-2); }
.hours-val { color: var(--text); font-weight: 600; }
.hours-val .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 6px; vertical-align: middle; }
.hl-list { display: flex; flex-direction: column; }
.hl-item { display: flex; align-items: center; gap: 10px; padding: 11px 0; font-size: 13px; color: var(--text-2); text-decoration: none; transition: color .2s ease, padding-left .2s ease; border-bottom: 1px solid var(--border); }
.hl-item:last-child { border-bottom: none; }
.hl-item:hover { color: var(--text); padding-left: 4px; }
.hl-item .ico { width: 22px; height: 22px; border-radius: var(--radius-sm); background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; color: var(--text-3); }
.hl-item:hover .ico { color: var(--text); }
.hl-item .arrow { margin-left: auto; color: var(--text-4); }
.success-state { text-align: center; padding: 32px 16px 16px; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-subtle); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.ticket-id-box { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: var(--radius); background: var(--bg-input); border: 1px solid var(--border); font-family: ui-monospace, 'SF Mono', monospace; font-size: 13px; margin: 14px 0 22px; }
.ticket-id-box .lbl { color: var(--text-3); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.ticket-id-box .id { color: var(--text); font-weight: 600; }
@media (max-width: 960px) { .contact-shell { grid-template-columns: 1fr; } .ch-row { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 24px 20px; } .contact-wrap { padding: 0 20px; } .contact-hero-inner { padding: 0 20px; } }

/* ── REVIEWS PAGE (reviews.html) ────────────────────────── */
.rev-hero { position: relative; padding: 88px 0 48px; overflow: hidden; background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(189,30,45,0.18) 0%, transparent 55%), radial-gradient(ellipse 50% 40% at 100% 100%, rgba(4,218,141,0.08) 0%, transparent 60%); }
.rev-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 70%); pointer-events: none; }
.rev-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.rev-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--green-subtle); border: 1px solid rgba(4,218,141,0.3); border-radius: var(--radius-full); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.rev-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(4,218,141,0.5); animation: revPulse 1.8s ease-out infinite; }
@keyframes revPulse { 0% { box-shadow: 0 0 0 0 rgba(4,218,141,0.6); } 70% { box-shadow: 0 0 0 10px rgba(4,218,141,0); } 100% { box-shadow: 0 0 0 0 rgba(4,218,141,0); } }
.rev-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; text-transform: uppercase; margin-bottom: 18px; }
.rev-hero h1 .accent { color: var(--red); }
.rev-hero p { font-size: clamp(16px, 1.6vw, 18px); color: var(--text-2); line-height: 1.7; max-width: 620px; margin: 0 auto 28px; }
.rev-rating { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 18px 24px; padding: 20px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.rev-rating-left { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.rev-rating-num { font-family: var(--font-display); font-size: 56px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.rev-rating-num .of { font-size: 22px; color: var(--text-3); margin-left: 4px; }
.rev-rating-stars { display: flex; gap: 4px; }
.rev-rating-stars .tp-star { width: 26px; height: 26px; background: #00B67A; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; }
.rev-rating-stars svg { width: 16px; height: 16px; fill: #fff; }
.rev-rating-divider { width: 1px; align-self: stretch; background: var(--border); }
.rev-rating-right { display: flex; flex-direction: column; gap: 6px; text-align: left; max-width: 220px; }
.rev-rating-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text); }
.rev-rating-label .tp-mini { width: 16px; height: 16px; background: #00B67A; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; }
.rev-rating-label .tp-mini svg { width: 10px; height: 10px; fill: #fff; }
.rev-rating-sub { font-size: 12px; color: var(--text-3); line-height: 1.5; }
@media (max-width: 520px) { .rev-rating { padding: 18px 20px; } .rev-rating-divider { display: none; } .rev-rating-right { text-align: center; align-items: center; } .rev-rating-left { align-items: center; } }
.trust-bar { max-width: 1280px; margin: 56px auto 0; padding: 0 40px; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.trust-pill { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color .25s ease, transform .25s ease; }
.trust-pill:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.trust-pill-logo { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-pill-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-pill-source { font-size: 11px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.trust-pill-score { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text); line-height: 1.1; }
.trust-pill-score .small { font-size: 12px; color: var(--text-3); font-weight: 600; margin-left: 4px; }
@media (max-width: 900px) { .trust-bar-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-bar-inner { grid-template-columns: 1fr; } }
.rev-section { padding: 72px 0; }
.rev-section + .rev-section { padding-top: 0; }
.rev-section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.rev-section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.rev-section h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.rev-section .lead { font-size: 16px; color: var(--text-2); line-height: 1.7; }
.verdict-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.verdict-card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.verdict-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.verdict-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 12px; }
.verdict-source { display: flex; align-items: center; gap: 12px; }
.verdict-logo { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.verdict-name { font-size: 15px; font-weight: 700; color: var(--text); }
.verdict-url { font-size: 11px; color: var(--text-3); font-family: monospace; margin-top: 2px; }
.verdict-tag { font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-full); letter-spacing: .04em; text-transform: uppercase; }
.verdict-tag--green { background: var(--green-subtle); color: var(--green); }
.verdict-tag--blue  { background: var(--blue-subtle);  color: var(--blue); }
.verdict-score-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.verdict-big-num { font-family: var(--font-display); font-size: 56px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.verdict-big-num .of { font-size: 22px; color: var(--text-3); font-weight: 700; margin-left: 4px; }
.verdict-meta-list { display: flex; flex-direction: column; gap: 6px; text-align: right; font-size: 12px; color: var(--text-3); }
.verdict-meta-list strong { color: var(--text); font-weight: 700; }
.verdict-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.05); overflow: hidden; margin-bottom: 14px; }
.verdict-bar > span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green), #00d97e); transform-origin: left; animation: barFillR 1.3s cubic-bezier(.2,.8,.2,1) both; }
.verdict-bar.warn > span { background: linear-gradient(90deg, var(--yellow), #f0c14b); }
@keyframes barFillR { from { transform: scaleX(0); } to { transform: scaleX(var(--w, 1)); } }
.verdict-quote { font-size: 14px; line-height: 1.6; color: var(--text-2); padding: 14px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); border-left: 3px solid var(--red); margin-bottom: 16px; }
.verdict-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.verdict-link:hover { color: var(--red); }
.verdict-link svg { width: 12px; height: 12px; }
@media (max-width: 760px) { .verdict-grid { grid-template-columns: 1fr; } .verdict-big-num { font-size: 44px; } }
.counter-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: linear-gradient(135deg, rgba(189,30,45,0.10) 0%, transparent 60%), var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.counter-cell { padding: 28px 24px; border-right: 1px solid var(--border); text-align: center; }
.counter-cell:last-child { border-right: none; }
.counter-num { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.counter-num .accent { color: var(--red); }
.counter-label { font-size: 12px; font-weight: 600; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; margin-top: 10px; }
@media (max-width: 760px) { .counter-strip { grid-template-columns: repeat(2, 1fr); } .counter-cell:nth-child(2) { border-right: none; } .counter-cell:nth-child(1), .counter-cell:nth-child(2) { border-bottom: 1px solid var(--border); } }
.review-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.review-tab { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; color: var(--text-2); cursor: pointer; transition: all .2s; }
.review-tab:hover { border-color: var(--border-hover); color: var(--text); }
.review-tab.active { background: var(--red-subtle); border-color: var(--red); color: var(--red); }
.review-tab .count { font-size: 11px; padding: 2px 7px; background: rgba(255,255,255,0.06); border-radius: var(--radius-full); font-weight: 700; }
.review-tab.active .count { background: rgba(189,30,45,0.2); color: var(--red); }
.reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.reviews-masonry .review-card-r { padding: 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.review-card-r-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--text); flex-shrink: 0; }
.review-card-r-name { font-size: 14px; font-weight: 700; color: var(--text); }
.review-card-r-meta { font-size: 11px; color: var(--text-3); margin-top: 2px; display: flex; gap: 8px; align-items: center; }
.review-card-r-source { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-full); letter-spacing: .04em; }
.review-card-r-source--tp { background: rgba(0,182,122,0.15); color: #00B67A; }
.review-card-r-source--dc { background: rgba(88,101,242,0.15); color: #5865F2; }
.review-card-r-source--gt { background: rgba(231,180,51,0.15); color: var(--yellow); }
.review-card-r-source--ws { background: rgba(189,30,45,0.15); color: var(--red); }
.review-card-r-stars { color: var(--yellow); font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.review-card-r-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.review-card-r-body { font-size: 13.5px; line-height: 1.65; color: var(--text-2); }
.review-card-r-game { margin-top: 10px; font-size: 11px; color: var(--text-3); padding-top: 10px; border-top: 1px solid var(--border); }
@media (max-width: 1000px) { .reviews-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .reviews-masonry { grid-template-columns: 1fr; } }
.dist-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center; }
.dist-summary { text-align: center; }
.dist-big { font-family: var(--font-display); font-size: 80px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.dist-big .of { font-size: 28px; color: var(--text-3); font-weight: 700; margin-left: 4px; }
.dist-stars { display: flex; gap: 4px; justify-content: center; margin: 14px 0 8px; color: var(--yellow); font-size: 22px; letter-spacing: 1px; }
.dist-summary-meta { font-size: 13px; color: var(--text-3); }
.dist-summary-meta strong { color: var(--text); font-weight: 700; }
.dist-rows { display: flex; flex-direction: column; gap: 8px; }
.dist-row { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 16px; }
.dist-row-label { font-size: 13px; color: var(--text-2); font-weight: 600; white-space: nowrap; }
.dist-row-bar { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.05); overflow: hidden; }
.dist-row-bar > span { display: block; height: 100%; border-radius: 5px; background: var(--green); transform-origin: left; animation: barFillR 1.5s cubic-bezier(.2,.8,.2,1) both; }
.dist-row-bar.y > span { background: var(--yellow); }
.dist-row-bar.r > span { background: var(--red); }
.dist-row-pct { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 12px; color: var(--text-3); font-weight: 600; white-space: nowrap; }
.dist-row-pct .pct { color: var(--text); font-weight: 800; font-size: 13.5px; line-height: 1.1; }
.dist-row-pct .cnt { color: var(--text-3); font-size: 11.5px; line-height: 1.1; }
@media (max-width: 760px) { .dist-card { grid-template-columns: 1fr; padding: 28px; gap: 28px; } }
.compare-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: rgba(255,255,255,0.02); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); padding: 14px 24px; }
.compare-cell-feature { font-weight: 600; color: var(--text); }
.compare-cell { display: flex; align-items: center; gap: 8px; justify-content: center; color: var(--text-2); }
.compare-cell.us { color: var(--text); font-weight: 700; }
.compare-icon-yes { width: 20px; height: 20px; border-radius: 50%; background: var(--green-subtle); color: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.compare-icon-no { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.04); color: var(--text-3); display: inline-flex; align-items: center; justify-content: center; }
.compare-row.us-row { background: linear-gradient(90deg, rgba(189,30,45,0.06), transparent 60%); }
@media (max-width: 720px) { .compare-row { grid-template-columns: 1.3fr 1fr; padding: 12px 16px; } .compare-row .hide-mobile { display: none; } }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.rev-cta { position: relative; padding: 64px 48px; text-align: center; background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(189,30,45,0.18) 0%, transparent 60%), var(--bg-card); border: 1px solid rgba(189,30,45,0.2); border-radius: var(--radius-xl); overflow: hidden; }
.rev-cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(189,30,45,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(189,30,45,0.06) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 70%); pointer-events: none; }
.rev-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.rev-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 12px; }
.rev-cta p { color: var(--text-2); margin-bottom: 24px; }

/* ── CAREERS PAGE (careers.html) ────────────────────────── */
.careers-hero { position: relative; background: radial-gradient(ellipse 100% 70% at 50% -10%, rgba(189,30,45,0.16) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 90% 60%, rgba(27,132,255,0.06) 0%, transparent 50%), #050508; padding: 96px 0 56px; overflow: hidden; border-bottom: 1px solid var(--border); }
.careers-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.016'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.careers-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 40px; text-align: center; }
.careers-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); padding: 5px 14px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); border-radius: var(--radius-full); margin-bottom: 22px; }
.careers-hero-eyebrow .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(189,30,45,0.6); animation: pulseDot 1.8s ease-out infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(189,30,45,0.6); } 70% { box-shadow: 0 0 0 8px rgba(189,30,45,0); } 100% { box-shadow: 0 0 0 0 rgba(189,30,45,0); } }
.careers-hero-title { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.03em; line-height: 0.98; text-transform: uppercase; margin-bottom: 22px; }
.careers-hero-title .accent { color: var(--red); }
.careers-hero-sub { font-size: 17px; color: var(--text-2); line-height: 1.7; max-width: 540px; margin: 0 auto 32px; }
.careers-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 720px; margin: 0 auto; border: 1px solid var(--border); background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; }
.careers-stat { padding: 18px 16px; border-right: 1px solid var(--border); }
.careers-stat:last-child { border-right: none; }
.careers-stat-val { font-family: var(--font-display); font-size: 24px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.careers-stat-val .accent { color: var(--red); }
.careers-stat-label { font-size: 10.5px; color: var(--text-3); margin-top: 6px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 600px) { .careers-stats { grid-template-columns: repeat(2, 1fr); } .careers-stat:nth-child(2) { border-right: none; } .careers-stat:nth-child(1), .careers-stat:nth-child(2) { border-bottom: 1px solid var(--border); } }
.role-section { padding: 64px 0 80px; }
.role-tabs-wrap { max-width: 1100px; margin: 0 auto 40px; padding: 0 40px; }
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 860px) { .role-tabs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .role-tabs { grid-template-columns: 1fr; } }
.role-tab { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 22px 20px; cursor: pointer; text-align: left; transition: all .25s ease; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.role-tab::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(189,30,45,0.12) 0%, transparent 60%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.role-tab:hover { transform: translateY(-2px); border-color: rgba(189,30,45,0.3); }
.role-tab.active { border-color: rgba(189,30,45,0.5); background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(189,30,45,0.16) 0%, transparent 60%), var(--bg-card); }
.role-tab.active::before { opacity: 1; }
.role-tab-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.25); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.role-tab-icon svg { width: 20px; height: 20px; }
.role-tab-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); position: relative; z-index: 1; }
.role-tab-pay { font-size: 12px; color: var(--text-3); position: relative; z-index: 1; }
.role-tab-pay strong { color: var(--text-2); font-weight: 600; }
.role-tab-arrow { position: absolute; top: 18px; right: 18px; width: 22px; height: 22px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .2s ease; color: var(--text-3); z-index: 1; }
.role-tab.active .role-tab-arrow { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(90deg); }
.role-tab-arrow svg { width: 11px; height: 11px; }
.role-panel { display: none; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.role-panel.active { display: block; }
.role-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .role-panel-grid { grid-template-columns: 1fr; } }
.role-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 900px) { .role-info { position: static; } }
.role-info-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.role-info-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; text-transform: uppercase; margin-bottom: 14px; }
.role-info-desc { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.role-payout { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: linear-gradient(135deg, rgba(189,30,45,0.14) 0%, rgba(189,30,45,0.04) 100%); border: 1px solid rgba(189,30,45,0.3); border-radius: var(--radius-lg); margin-bottom: 24px; }
.role-payout-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(189,30,45,0.4); }
.role-payout-text-label { font-size: 11px; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.role-payout-text-val { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
.role-payout-text-val .accent { color: var(--red); }
.role-perks-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.role-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.role-perk { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-2); line-height: 1.55; }
.role-perk-check { width: 22px; height: 22px; border-radius: 50%; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.35); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.role-perk-check svg { width: 11px; height: 11px; }
.role-perk strong { color: var(--text); font-weight: 600; }
.role-reqs { padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.role-req { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-3); line-height: 1.5; }
.role-req::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); flex-shrink: 0; }
.role-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; }
.role-form-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.role-form-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); }
.role-form-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; padding: 4px 10px; border-radius: var(--radius-full); background: var(--red-subtle); color: var(--red); text-transform: uppercase; }
.role-form-card .form-input { background: var(--bg-elevated); border: 1px solid var(--border); }
.role-form-card .form-input:focus { border-color: var(--red); }
.role-form-card .form-label { font-size: 12.5px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (max-width: 480px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-pill { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-elevated); font-size: 13px; color: var(--text-2); cursor: pointer; transition: all .15s ease; user-select: none; }
.checkbox-pill:hover { border-color: var(--border-hover); color: var(--text); }
.checkbox-pill input { display: none; }
.checkbox-pill .cb-mark { width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--text-3); background: transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .15s ease; }
.checkbox-pill .cb-mark svg { width: 10px; height: 10px; color: #fff; opacity: 0; transition: opacity .15s ease; }
.checkbox-pill.checked { background: var(--red-subtle); border-color: rgba(189,30,45,0.5); color: var(--red); }
.checkbox-pill.checked .cb-mark { background: var(--red); border-color: var(--red); }
.checkbox-pill.checked .cb-mark svg { opacity: 1; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--red); }
.form-success-icon svg { width: 28px; height: 28px; }
.form-success-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); margin-bottom: 10px; }
.form-success-text { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 360px; margin: 0 auto; }
.careers-faq-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.careers-cta { max-width: 1100px; margin: 64px auto 0; position: relative; background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(189,30,45,0.2) 0%, transparent 55%), var(--bg-card); border: 1px solid rgba(189,30,45,0.25); border-radius: var(--radius-xl); padding: 44px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; overflow: hidden; }
.careers-cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(189,30,45,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(189,30,45,0.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000 0%, transparent 70%); pointer-events: none; }
.careers-cta-text { position: relative; z-index: 1; }
.careers-cta-title { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.careers-cta-sub { font-size: 14.5px; color: var(--text-2); max-width: 480px; line-height: 1.65; }
.careers-cta-action { position: relative; z-index: 1; flex-shrink: 0; }
@media (max-width: 768px) { .careers-cta { flex-direction: column; padding: 32px 24px; margin: 48px 24px 0; } }

/* ── WP page layout: full-bleed heroes flush under header ─────────────────────
   Blocksy wraps page content in .ct-container-full with 60px top/bottom padding
   and constrains it to ~1290px centered, so the full-bleed hero designs showed
   a gap under the header and black bars on the sides. Remove that wrapping for
   our custom content pages (not WooCommerce cart/checkout/account, not home —
   those keep their own layout). Inner .container elements still constrain text. */
body.page:not(.woocommerce-page):not(.home) .ct-container-full {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.page:not(.woocommerce-page):not(.home) .ct-container-full > article {
  max-width: none !important;
  width: 100% !important;
}
body.page:not(.woocommerce-page):not(.home) .entry-content > * {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Homepage reviews stat pills ─────────────────────────────────────────── */
.hp-rev-stats {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 20px;
}
.hp-rev-stat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-2);
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 7px 14px;
}
.hp-rev-stat strong { color: var(--text); font-weight: 700; }
.hp-rev-stat .hp-rev-stars { color: var(--yellow); letter-spacing: 1px; font-size: 12px; }

/* ── Fluent Forms — match the dark Boss Services theme ───────────────────── */
.fluentform .ff-el-input--label label { color: var(--text-2); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.fluentform .ff-el-input--content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.fluentform .ff-el-input--content textarea,
.fluentform .ff-el-input--content select,
.fluentform input.ff-el-form-control,
.fluentform textarea.ff-el-form-control,
.fluentform select.ff-el-form-control {
  background: var(--bg-input) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  box-shadow: none !important;
}
.fluentform input.ff-el-form-control:focus,
.fluentform textarea.ff-el-form-control:focus,
.fluentform select.ff-el-form-control:focus { border-color: var(--red) !important; }
.fluentform ::placeholder { color: var(--text-3) !important; }
.fluentform select.ff-el-form-control option { background: #1e1f28; color: #FAFAFA; }
.fluentform .ff-el-group { margin-bottom: 18px; }
.fluentform .ff-t-cell { padding: 0 6px; }
.fluentform .ff-el-input--label { padding-right: 0; }
.fluentform .ff-btn-submit,
.fluentform button.ff-btn-submit {
  background: var(--red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  padding: 13px 30px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  cursor: pointer;
  transition: background .18s ease;
}
.fluentform .ff-btn-submit:hover { background: var(--red-dark) !important; }
.ff-message-success {
  background: var(--green-subtle) !important;
  border: 1px solid rgba(4,218,141,0.3) !important;
  color: var(--text) !important;
  border-radius: var(--radius-lg) !important;
  padding: 20px !important;
}
.fluentform .ff-el-is-error .ff-el-form-control { border-color: var(--red) !important; }
.fluentform .text-danger, .fluentform .error { color: #ff6b6b !important; }

/* Legal page TOC anchors clear the sticky header */
.legal-content h3[id] { scroll-margin-top: 96px; }

/* ── 404 page ────────────────────────────────────────────────────────────── */
.boss-404 {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(189,30,45,0.16) 0%, transparent 55%), var(--bg);
}
.boss-404-inner { max-width: 600px; text-align: center; }
.boss-404-code {
  font-family: var(--font-display); font-weight: 900; line-height: 1;
  font-size: clamp(96px, 16vw, 180px); color: var(--red);
  letter-spacing: -0.04em; margin-bottom: 8px;
}
.boss-404-title { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 14px; }
.boss-404-title .accent { color: var(--red); }
.boss-404-sub { font-size: 16px; color: var(--text-2); line-height: 1.7; max-width: 460px; margin: 0 auto 28px; }
.boss-404-search {
  display: flex; align-items: center; gap: 10px; max-width: 440px; margin: 0 auto 28px;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0 18px; height: 48px;
}
.boss-404-search:focus-within { border-color: var(--red); }
.boss-404-search svg { color: var(--text-3); flex-shrink: 0; }
.boss-404-search input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 15px; height: 100%; }
.boss-404-search input::placeholder { color: var(--text-3); }
.boss-404-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Single Product page (pp-*) — styling was missing from the build ──────── */
.pp-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(189,30,45,0.18) 0%, transparent 55%),
    #060408;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.pp-hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 10px 32px 12px; }
.pp-breadcrumb { font-size: 12.5px; color: var(--text-3); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pp-breadcrumb a { color: var(--text-3); } .pp-breadcrumb a:hover { color: var(--text-2); }
.pp-breadcrumb-sep { color: var(--text-4); }
.pp-hero-row { display: flex; align-items: center; gap: 18px; }
.pp-hero-icon {
  width: 64px; height: 64px; border-radius: var(--radius-lg);
  overflow: hidden; flex-shrink: 0;
  background: var(--bg-card);
  border: 1.5px solid rgba(189,30,45,0.40);
  box-shadow: 0 4px 14px rgba(0,0,0,0.50);
  display: flex; align-items: center; justify-content: center;
}
.pp-hero-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-hero-icon .game-icon { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 38px; }
.pp-hero-text { flex: 1; min-width: 0; }
.pp-hero-titleRow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 6px;
}
.pp-hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(24px,3.3vw,36px);
  font-weight: 900; letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  line-height: 1;
}
.pp-hero-eyebrow:hover { color: var(--red-light, #ff5566); }
.pp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(24px,3.3vw,36px);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1;
  text-transform: uppercase; margin: 0;
}
.pp-hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--text-2); }
.pp-hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.pp-hero-meta-item svg { color: var(--text-3); }
.pp-hero-stars { color: var(--yellow); letter-spacing: 1px; }
.pp-hero-meta strong { color: var(--text); font-weight: 700; }
.pp-hero-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border-hover); }
.pp-hero-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }

.pp-trustbar { border-bottom: 1px solid var(--border); background: var(--bg-card); }
.pp-trustbar-inner { max-width: 1280px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pp-trustbar-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.pp-trustbar-includes { display: flex; gap: 18px; flex-wrap: wrap; }
.pp-trust-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-2); }
.pp-trust-item svg { color: var(--green); }

.pp-layout { max-width: 1280px; margin: 0 auto; padding: 32px; display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
@media (max-width: 960px) { .pp-layout { grid-template-columns: 1fr; } }
.pp-main-grid { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.pp-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.pp-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pp-section-num { width: 28px; height: 28px; border-radius: 50%; background: var(--red-subtle); color: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; font-family: var(--font-display); }
.pp-section-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; }

.pp-summary { position: sticky; top: 96px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pp-summary-head { padding: 18px 20px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, rgba(189,30,45,0.10), transparent); }
.pp-summary-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.pp-summary-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-top: 4px; }
.pp-summary-body { padding: 18px 20px; }
.pp-summary-eta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); margin-bottom: 16px; }
.pp-summary-eta svg { color: var(--yellow); }
.pp-summary .quantity { margin-bottom: 12px; }
.pp-summary .quantity input.qty { width: 72px; height: 44px; background: var(--bg-input); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); text-align: center; font-size: 15px; }
.pp-summary .single_add_to_cart_button, .pp-summary button.single_add_to_cart_button {
  display: block; width: 100%; background: var(--red) !important; color: #fff !important; border: none !important;
  border-radius: var(--radius-full) !important; padding: 14px 24px !important; font-weight: 700 !important; font-size: 15px !important; cursor: pointer; transition: background .18s ease; margin-top: 4px;
}
.pp-summary .single_add_to_cart_button:hover { background: var(--red-dark) !important; }
.pp-price-block { border-top: 1px dashed var(--border); padding-top: 12px; display: flex; align-items: baseline; justify-content: space-between; }
.pp-price-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.pp-price-main { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--text); }
.pp-trust { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.pp-trust-row { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--text-2); }
.pp-trust-row svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.pp-trust-row strong { color: var(--text); }
.pp-payments { padding: 16px 20px; border-top: 1px solid var(--border); }
.pp-payments-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.pp-pay-icons { display: flex; gap: 6px; flex-wrap: wrap; }

.pp-related { max-width: 1280px; margin: 0 auto; padding: 0 32px 64px; }
.pp-related-inner { border-top: 1px solid var(--border); padding-top: 36px; }
.pp-related-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.pp-related-head p { font-size: 13px; color: var(--text-3); margin-top: 2px; }
.pp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .pp-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pp-related-grid { grid-template-columns: 1fr; } }

.pp-faq-section { max-width: 860px; margin: 0 auto; padding: 0 32px 72px; }
.pp-faq-head { text-align: center; margin-bottom: 24px; }
.pp-faq-head h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,32px); font-weight: 800; }
.pp-faq-head p { color: var(--text-3); margin-top: 6px; font-size: 14px; }
.pp-faq-list { display: flex; flex-direction: column; gap: 10px; }

/* pp image row (from product.html) */
.pp-image-row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: center; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; }
.pp-image-row img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.pp-image-placeholder { width: 100%; height: 140px; border-radius: var(--radius-sm); background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.025) 8px, rgba(255,255,255,0.025) 16px), var(--bg-elevated); display: grid; place-items: center; color: rgba(255,255,255,0.18); }
.pp-desc-body { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.pp-desc-body strong { color: var(--text); }
@media (max-width: 720px) { .pp-image-row { grid-template-columns: 1fr; } .pp-image-row img, .pp-image-placeholder { height: 180px; } }

/* ── Sign In / Register modal (boss-auth-*) ───────────────────────────────── */
.boss-auth-overlay { position: fixed; inset: 0; z-index: 100000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(3,3,6,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.boss-auth-overlay.open { display: flex; animation: bossAuthFade .18s ease; }
@keyframes bossAuthFade { from { opacity: 0; } to { opacity: 1; } }
.boss-auth-box { position: relative; width: 100%; max-width: 420px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 34px 30px 30px; box-shadow: 0 24px 70px rgba(0,0,0,0.6); animation: bossAuthRise .22s cubic-bezier(.2,.8,.2,1); }
@keyframes bossAuthRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.boss-auth-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s ease; }
.boss-auth-x:hover { background: var(--red-subtle); color: var(--red); border-color: rgba(189,30,45,0.4); }
.boss-auth-head { text-align: center; margin-bottom: 22px; }
.boss-auth-title { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.boss-auth-title .accent { color: var(--red); }
.boss-auth-sub { font-size: 13.5px; color: var(--text-3); margin-top: 6px; line-height: 1.5; }
.boss-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-full); margin-bottom: 22px; }
.boss-auth-tab { padding: 10px 12px; border: none; background: none; border-radius: var(--radius-full); font-size: 13.5px; font-weight: 700; color: var(--text-3); cursor: pointer; transition: all .15s ease; }
.boss-auth-tab.active { background: var(--red); color: #fff; box-shadow: 0 4px 12px rgba(189,30,45,0.35); }
.boss-auth-panel { display: none; flex-direction: column; gap: 14px; }
.boss-auth-panel.active { display: flex; }
.boss-auth-field { display: flex; flex-direction: column; gap: 6px; }
.boss-auth-field span { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); }
.boss-auth-overlay input[type="text"], .boss-auth-overlay input[type="email"], .boss-auth-overlay input[type="password"] { width: 100%; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 15px; padding: 13px 15px; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.boss-auth-overlay input:focus { border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.boss-auth-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; }
.boss-auth-check { display: inline-flex; align-items: center; gap: 7px; color: var(--text-2); cursor: pointer; }
.boss-auth-check input { width: 15px; height: 15px; accent-color: var(--red); }
.boss-auth-link { color: var(--text-3); }
.boss-auth-link:hover { color: var(--red); }
.boss-auth-submit { width: 100%; justify-content: center; margin-top: 4px; }
.boss-auth-fine { font-size: 11.5px; color: var(--text-3); line-height: 1.55; text-align: center; margin-top: 2px; }
.boss-auth-fine a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.boss-auth-fine a:hover { color: var(--red); }

/* ── WooCommerce My Account — dark + brand (nav, forms, tables, addresses) ── */
/* Navigation sidebar */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0; border: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 11px 14px; border-radius: var(--radius); color: var(--text-2); font-weight: 600; font-size: 14px; border: 1px solid transparent; text-decoration: none; transition: all .15s ease; }
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: var(--bg-card); color: var(--text); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--red-subtle); color: var(--red); border-color: rgba(189,30,45,0.3); }
/* Form fields */
.woocommerce-account .woocommerce-MyAccount-content input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea,
.woocommerce-account form.woocommerce-form-login input.input-text,
.woocommerce-account form.woocommerce-form-register input.input-text { width: 100%; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 15px; padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease; }
.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus,
.woocommerce-account form.woocommerce-form-login input.input-text:focus,
.woocommerce-account form.woocommerce-form-register input.input-text:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.woocommerce-account .woocommerce-MyAccount-content label,
.woocommerce-account form.woocommerce-form-login label,
.woocommerce-account form.woocommerce-form-register label { color: var(--text-2); font-size: 13.5px; font-weight: 600; }
.woocommerce-account fieldset { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; margin-top: 22px; }
.woocommerce-account fieldset legend { font-family: var(--font-display); font-weight: 800; color: var(--text); padding: 0 8px; font-size: 15px; }
.woocommerce-account .woocommerce-form-row span em, .woocommerce-account .woocommerce-EditAccountForm em { color: var(--text-3); font-style: normal; font-size: 12px; }
/* Buttons → brand red */
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-account form.woocommerce-form-login .button,
.woocommerce-account form.woocommerce-form-register .button { background: var(--red); color: #fff; border: none; border-radius: var(--radius-full); padding: 13px 28px; font-weight: 700; font-size: 14px; cursor: pointer; transition: background .15s ease; display: inline-block; }
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-account form.woocommerce-form-login .button:hover,
.woocommerce-account form.woocommerce-form-register .button:hover { background: var(--red-dark, #9c1825); }
/* Tables (orders, downloads) */
.woocommerce-account table.shop_table, .woocommerce-account table.woocommerce-orders-table, .woocommerce-account table.woocommerce-table--order-details { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); border-collapse: separate; border-spacing: 0; overflow: hidden; }
.woocommerce-account table.shop_table th { background: var(--bg-elevated); color: var(--text-3); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 12px 14px; text-align: left; border: none; }
.woocommerce-account table.shop_table td { padding: 14px; border-top: 1px solid var(--border); color: var(--text-2); }
.woocommerce-account table.shop_table a { color: var(--text); font-weight: 600; }
.woocommerce-account table.shop_table a:hover { color: var(--red); }
.woocommerce-account .woocommerce-orders-table__cell-order-actions .button { padding: 7px 14px; font-size: 12.5px; }
/* Addresses */
.woocommerce-account .woocommerce-Addresses, .woocommerce-account .u-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .woocommerce-account .woocommerce-Addresses, .woocommerce-account .u-columns { grid-template-columns: 1fr; } }
.woocommerce-account .woocommerce-Address { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.woocommerce-account .woocommerce-Address-title h3 { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text); margin: 0 0 12px; }
.woocommerce-account .woocommerce-Address-title a.edit { font-size: 12.5px; color: var(--red); font-weight: 700; }
.woocommerce-account address { color: var(--text-2); font-style: normal; line-height: 1.7; border: none; }
/* Notices */
.woocommerce-account .woocommerce-message, .woocommerce-account .woocommerce-info, .woocommerce-account .woocommerce-error, .woocommerce-account .woocommerce-notice { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--red); color: var(--text-2); border-radius: var(--radius); padding: 14px 16px; list-style: none; }
.woocommerce-account .woocommerce-message a, .woocommerce-account .woocommerce-info a { color: var(--red); font-weight: 600; }
/* Misc */
.woocommerce-account .woocommerce-MyAccount-content p { color: var(--text-2); }
.woocommerce-account .woocommerce-MyAccount-content mark { background: var(--red-subtle); color: var(--text); }

/* ── Product configurator (boss-cfg) ──────────────────────────────────────── */
.boss-cfg { display: flex; flex-direction: column; gap: 18px; }
.boss-cfg-opt { display: flex; flex-direction: column; gap: 8px; }
.boss-cfg-label { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: .01em; }
.boss-cfg-req { color: var(--red); }
.boss-cfg-delta { color: var(--text-3); font-weight: 600; font-size: 12px; }
.boss-cfg select.boss-cfg-input, .boss-cfg input.boss-cfg-input[type="number"], .boss-cfg input.boss-cfg-input[type="text"] { width: 100%; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14.5px; padding: 11px 13px; transition: border-color .15s ease, box-shadow .15s ease; }
.boss-cfg select.boss-cfg-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.boss-cfg input.boss-cfg-input[type="number"] { width: 120px; }
.boss-cfg .boss-cfg-input:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.boss-cfg .boss-cfg-err { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(189,30,45,0.18) !important; }
.boss-cfg-radios { display: flex; gap: 8px; flex-wrap: wrap; }
.boss-cfg-radios.boss-cfg-err { outline: 2px solid var(--red); outline-offset: 4px; border-radius: var(--radius); }
.boss-cfg-radio { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: var(--radius-full); background: var(--bg-card); border: 1px solid var(--border); color: var(--text-2); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .15s ease; }
.boss-cfg-radio:hover { border-color: var(--border-hover); color: var(--text); }
.boss-cfg-radio.active { background: var(--red-subtle); border-color: rgba(189,30,45,0.5); color: var(--red); }
.boss-cfg-toggle { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.boss-cfg-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.boss-cfg-switch { position: relative; width: 42px; height: 24px; border-radius: 999px; background: var(--bg-elevated); border: 1px solid var(--border); transition: all .18s ease; flex-shrink: 0; }
.boss-cfg-switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--text-3); transition: all .18s ease; }
.boss-cfg-toggle input:checked + .boss-cfg-switch { background: var(--red); border-color: var(--red); }
.boss-cfg-toggle input:checked + .boss-cfg-switch::after { left: 20px; background: #fff; }
.boss-cfg-toggle-txt { font-size: 13.5px; color: var(--text-2); }
.boss-cfg-hint { font-size: 12px; color: var(--text-3); }

/* Sidebar qty + buy now */
.boss-qty-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 14px 0 6px; }
.boss-qty-row label { font-size: 13px; font-weight: 700; color: var(--text-2); }
.boss-qty-row input { width: 72px; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 15px; padding: 10px 12px; text-align: center; }
.boss-buynow { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Buy Now checkout popup (boss-co) ─────────────────────────────────────── */
.boss-co-overlay { position: fixed; inset: 0; z-index: 100000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(3,3,6,0.8); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.boss-co-overlay.open { display: flex; animation: bossAuthFade .18s ease; }
.boss-co-box { position: relative; width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 30px 28px 26px; box-shadow: 0 24px 70px rgba(0,0,0,0.6); animation: bossAuthRise .22s cubic-bezier(.2,.8,.2,1); }
.boss-co-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s ease; }
.boss-co-x:hover { background: var(--red-subtle); color: var(--red); border-color: rgba(189,30,45,0.4); }
.boss-co-head { margin-bottom: 18px; padding-right: 30px; }
.boss-co-title { font-family: var(--font-display); font-size: 20px; font-weight: 900; letter-spacing: -0.02em; }
.boss-co-sub { font-size: 13px; color: var(--text-3); margin-top: 4px; }
.boss-co-summary { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px; }
.boss-co-item-name { font-weight: 700; font-size: 14.5px; color: var(--text); }
.boss-co-item-opts { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.boss-co-item-opts span { font-size: 12.5px; color: var(--text-2); }
.boss-co-item-opts b { color: var(--text-3); font-weight: 600; }
.boss-co-total-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 2px 16px; font-size: 14px; color: var(--text-2); border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.boss-co-total { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--text); }
.boss-co-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.boss-co-field span { font-size: 12px; font-weight: 700; color: var(--text-3); }
.boss-co-overlay input[type="email"] { width: 100%; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 15px; padding: 13px 15px; }
.boss-co-overlay input[type="email"]:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.boss-co-methods { margin-bottom: 16px; }
.boss-co-methods-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.boss-co-method-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.boss-co-pay { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); font-size: 11px; font-weight: 800; letter-spacing: .02em; color: var(--text-2); }
.boss-co-error { background: rgba(189,30,45,0.1); border: 1px solid rgba(189,30,45,0.4); color: #ff8a8a; border-radius: var(--radius); padding: 11px 14px; font-size: 13px; margin-bottom: 14px; }
.boss-co-pay-btn { width: 100%; justify-content: center; }
.boss-co-pay-btn.is-busy { opacity: .8; cursor: progress; }
.boss-co-fine { font-size: 11.5px; color: var(--text-3); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ── Payment confirmed page (boss-pc) ─────────────────────────────────────── */
.boss-pc { min-height: 60vh; display: flex; align-items: flex-start; justify-content: center; padding: 56px 20px 80px; }
.boss-pc-card { width: 100%; max-width: 560px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; text-align: center; }
.boss-pc-icon { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.boss-pc--paid .boss-pc-icon { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); color: var(--green, #22c55e); }
.boss-pc--pending .boss-pc-icon { background: var(--red-subtle); border: 1px solid rgba(189,30,45,0.3); color: var(--red); }
.boss-pc-title { font-family: var(--font-display); font-size: clamp(26px,4vw,34px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px; }
.boss-pc-lead { color: var(--text-2); font-size: 15px; margin-bottom: 20px; }
.boss-pc-meta-row, .boss-pc-total { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-2); }
.boss-pc-total { font-size: 16px; }
.boss-pc-total strong, .boss-pc-meta-row strong { color: var(--text); }
.boss-pc-items { text-align: left; margin: 8px 0; }
.boss-pc-item { padding: 14px 0; border-top: 1px solid var(--border); }
.boss-pc-item-name { font-weight: 700; color: var(--text); font-size: 14.5px; }
.boss-pc-item-meta { display: flex; flex-direction: column; gap: 3px; margin-top: 6px; }
.boss-pc-item-meta span { font-size: 12.5px; color: var(--text-3); }
.boss-pc-next { text-align: left; margin-top: 24px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.boss-pc-next h3 { font-family: var(--font-display); font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.boss-pc-next ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.boss-pc-next li { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.boss-pc-next a { color: var(--red); font-weight: 600; }
.boss-pc-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
/* Hide the theme's page title on the confirmation page (we render our own). */
.boss-pc-page .entry-header, .boss-pc-page .page-title, .boss-pc-page h1.entry-title,
.boss-pc-page .ct-page-title-default, .boss-pc-page .page-header, .boss-pc-page .ct-banner { display: none !important; }

/* ── Redesigned checkout popup (Secure Checkout) ──────────────────────────── */
.boss-co-title { display: flex; align-items: center; gap: 9px; }
.boss-co-trustline { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-3); margin-top: 6px; }
.boss-co-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green, #22c55e); box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.boss-co-product { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 10px; }
.boss-co-prod-icon { width: 46px; height: 46px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.boss-co-prod-icon img { width: 100%; height: 100%; object-fit: cover; }
.boss-co-prod-icon span { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 15px; }
.boss-co-prod-meta { flex: 1; min-width: 0; }
.boss-co-prod-game { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.boss-co-prod-name { font-weight: 700; font-size: 15px; color: var(--text); line-height: 1.3; }
.boss-co-prod-price { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--text); white-space: nowrap; }
/* The .boss-co-summary card holds the chosen configurator options. Its base
 * box styles (background, border, radius, padding 16px) come from the earlier
 * rule at the top of the popup block — only override the layout here. */
.boss-co-summary { display: flex; flex-direction: column; gap: 6px; }
.boss-co-summary span { font-size: 12.5px; color: var(--text-2); }
.boss-co-summary b { color: var(--text-3); font-weight: 600; }

/* Checkout popup checkboxes (ToS + marketing) */
.boss-co-checks { display: flex; flex-direction: column; gap: 10px; margin: 10px 0 14px; }
.boss-co-check { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 13px; color: var(--text-2); line-height: 1.45; }
.boss-co-check input[type="checkbox"] { flex-shrink: 0; appearance: none; width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--border-strong, var(--border)); background: var(--bg-elevated); cursor: pointer; position: relative; margin-top: 2px; transition: border-color .15s, background .15s; }
.boss-co-check input[type="checkbox"]:checked { background: var(--red); border-color: var(--red); }
.boss-co-check input[type="checkbox"]:checked::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.boss-co-check input[type="checkbox"]:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.boss-co-check a { color: var(--text); text-decoration: underline; text-decoration-color: var(--text-3); text-underline-offset: 2px; }
.boss-co-check a:hover { color: var(--red); text-decoration-color: var(--red); }

/* Password field hint */
.boss-co-field-hint { display: block; margin-top: 6px; font-size: 11.5px; color: var(--text-3); line-height: 1.4; }
.boss-co-methods { margin-bottom: 14px; }
.boss-co-methods-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.boss-co-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.boss-co-method { display: flex; align-items: center; gap: 10px; text-align: left; padding: 12px; border-radius: var(--radius); background: var(--bg-elevated); border: 1.5px solid var(--border); cursor: pointer; transition: all .15s ease; position: relative; }
.boss-co-method:hover { border-color: var(--border-hover); }
.boss-co-method.active { border-color: var(--red); background: var(--red-subtle); }
.boss-co-method-ic { flex-shrink: 0; color: var(--text); display: flex; }
.boss-co-method-txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.boss-co-method-txt strong { font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.2; }
.boss-co-method-txt small { font-size: 10.5px; color: var(--text-3); }
.boss-co-method-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all .15s ease; }
.boss-co-method.active .boss-co-method-radio { border-color: var(--red); background: radial-gradient(circle at center, var(--red) 0 4px, transparent 5px); }
.boss-co-promo { display: flex; gap: 8px; margin-bottom: 8px; }
.boss-co-promo input { flex: 1; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14px; padding: 11px 13px; }
.boss-co-promo input:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.boss-co-promo input:disabled { opacity: .6; }
.boss-co-promo button { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-weight: 700; font-size: 13px; padding: 0 18px; cursor: pointer; transition: all .15s ease; }
.boss-co-promo button:hover { border-color: var(--border-hover); color: var(--text); }
.boss-co-promo-msg { font-size: 12px; margin-bottom: 12px; }
.boss-co-promo-msg.ok { color: var(--green, #22c55e); }
.boss-co-promo-msg.bad { color: #ff8a8a; }
.boss-co-pay-arrow { transition: transform .15s ease; }
.boss-co-pay-btn:hover .boss-co-pay-arrow { transform: translateX(3px); }
.boss-co-pay-btn .boss-co-spin { display: inline-block; animation: bossSpin 0.8s linear infinite; }
@keyframes bossSpin { to { transform: rotate(360deg); } }
@media (max-width: 420px) { .boss-co-method-grid { grid-template-columns: 1fr; } }

/* ── Post-purchase intake form ────────────────────────────────────────────── */
.boss-intake { text-align: left; margin-top: 24px; background: var(--bg-elevated); border: 1px solid rgba(189,30,45,0.3); border-radius: var(--radius-lg); padding: 22px; }
.boss-intake-head h3 { font-family: var(--font-display); font-size: 17px; font-weight: 800; margin: 0 0 4px; }
.boss-intake-head p { font-size: 13px; color: var(--text-3); margin: 0 0 16px; }
.boss-intake-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.boss-intake-field { display: flex; flex-direction: column; gap: 6px; }
.boss-intake-field span { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.boss-intake-field span i { color: var(--red); font-style: normal; }
.boss-intake-field input, .boss-intake-field textarea, .boss-intake-field select { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14.5px; padding: 11px 13px; }
.boss-intake-field textarea { min-height: 70px; resize: vertical; }
.boss-intake-field input:focus, .boss-intake-field textarea:focus, .boss-intake-field select:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.boss-intake-field .boss-intake-bad { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(189,30,45,0.18) !important; }
.boss-intake-err { color: #ff8a8a; font-size: 13px; margin-bottom: 10px; }
.boss-intake-skip { font-size: 12px; color: var(--text-3); margin: 12px 0 0; }
.boss-intake-skip a { color: var(--red); }
.boss-intake--done, .boss-intake-thanks { display: flex; align-items: center; gap: 12px; text-align: left; }
.boss-intake--done svg, .boss-intake-thanks svg { color: var(--green, #22c55e); flex-shrink: 0; }
.boss-intake--done strong, .boss-intake-thanks strong { display: block; color: var(--text); font-size: 14.5px; }
.boss-intake--done span, .boss-intake-thanks span { display: block; color: var(--text-3); font-size: 12.5px; }

/* ── Single product page v2 (mockup layout) ───────────────────────────────── */

.pp-layout-3col { max-width: 1380px; margin: 0 auto; padding: 6px 32px 56px; display: grid; grid-template-columns: 300px 1fr 360px; gap: 24px; align-items: start; }
@media (max-width: 1100px) { .pp-layout-3col { grid-template-columns: 1fr 320px; } .pp-pcard-wrap { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 760px) { .pp-layout-3col { grid-template-columns: 1fr; } .pp-pcard-wrap { grid-template-columns: 1fr; } }

/* Left image card */
.pp-pcard-wrap { display: flex; flex-direction: column; gap: 16px; }
.pp-pcard { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.pp-pcard-img { position: relative; aspect-ratio: 1 / 1.15; background-color: var(--bg-elevated); background-size: cover; background-position: center; overflow: hidden; }
.pp-pcard-img-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 48px; font-weight: 800; color: rgba(255,255,255,0.15); }
.pp-pcard-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 14px 14px 80px; z-index: 1; pointer-events: none; }
.pp-pcard-center img { max-width: 100%; max-height: 100%; width: auto; height: auto; filter: drop-shadow(0 8px 26px rgba(0,0,0,0.7)); }
.pp-pcard-platforms { position: absolute; top: 10px; right: 10px; display: flex; gap: 4px; z-index: 3; }
.pp-pcard-plat { width: 24px; height: 24px; border-radius: 6px; background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; color: #fff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.pp-pcard-plat svg { width: 14px; height: 14px; }
.pp-pcard-plat img { width: 16px; height: 16px; object-fit: contain; display: block; filter: brightness(0) invert(1); opacity: .92; }
.pp-pcard-badges { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; flex-direction: row; flex-wrap: wrap; gap: 4px; z-index: 2; }
.pp-pcard-badge { display: inline-block; padding: 3px 8px; border-radius: var(--radius-full); background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .01em; line-height: 1.3; box-shadow: 0 2px 8px rgba(189,30,45,0.35); }
.pp-pcard-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 16px 14px; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%); }
.pp-pcard-game-row { display: flex; align-items: center; gap: 10px; }
.pp-pcard-game-icon { width: 32px; height: 32px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.pp-pcard-game { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.pp-pcard-name { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.2; }
.pp-pcard-desc { font-size: 13px; line-height: 1.6; color: var(--text-2); padding: 0 4px; }

/* Full-width long-form info section (below the 3-column layout) */
.pp-info-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px 56px;
}
.pp-info-inner {
  max-width: 920px;
  margin: 0 auto;
}
.pp-info-body { color: var(--text-2); font-size: 15px; line-height: 1.75; }
.pp-info-body > *:first-child { margin-top: 0; }
.pp-info-body > *:last-child { margin-bottom: 0; }
.pp-info-body h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--text); text-transform: none;
  margin: 36px 0 14px;
  line-height: 1.2;
}
.pp-info-body h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--text);
  margin: 24px 0 8px; line-height: 1.3;
}
.pp-info-body p { margin: 0 0 16px; }
.pp-info-body strong { color: var(--text); }
.pp-info-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.pp-info-body a:hover { color: var(--red-light, #ff5566); }
.pp-info-body ul, .pp-info-body ol { margin: 12px 0 18px; padding-left: 22px; }
.pp-info-body li { margin-bottom: 8px; }
.pp-info-body ul li::marker { color: var(--red); }
.pp-info-body ol li::marker { color: var(--red); font-weight: 700; }
.pp-info-body table {
  width: 100%; border-collapse: collapse; margin: 16px 0 22px;
  background: var(--bg-elevated); border-radius: var(--radius-lg); overflow: hidden;
  font-size: 14px;
}
.pp-info-body th, .pp-info-body td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.pp-info-body th {
  background: rgba(189,30,45,0.10); color: var(--text);
  font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .04em;
}
.pp-info-body tr:last-child td { border-bottom: 0; }
@media (max-width: 720px) {
  .pp-info-section { padding: 28px 18px 36px; }
  .pp-info-body { font-size: 14.5px; }
  .pp-info-body h2 { font-size: 20px; margin-top: 28px; }
  .pp-info-body h3 { font-size: 16px; }
}
.pp-pcard-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pp-pcard-metaItem { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-right: 1px solid var(--border); }
.pp-pcard-metaItem:last-child { border-right: none; }
.pp-pcard-metaLbl { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.pp-pcard-metaItem strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-top: 1px; }
.pp-pcard-trust { list-style: none; margin: 0; padding: 14px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.pp-pcard-trust li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-2); }

/* Configurator main column */
.pp-cfg-main { min-width: 0; }
.pp-cfg-empty { padding: 24px; background: var(--bg-card); border: 1px dashed var(--border); border-radius: var(--radius-lg); color: var(--text-3); text-align: center; }
.pp-cfg { display: grid; grid-template-columns: 1fr 1.7fr; gap: 14px; align-content: start; }
.pp-cfg-sec { grid-column: 1 / -1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px 22px; }
.pp-cfg-sec--platform { grid-column: 1 / 2; }
.pp-cfg-sec--platform + .pp-cfg-sec--addons { grid-column: 2 / 3; }
@media (max-width: 720px) { .pp-cfg { grid-template-columns: 1fr; } .pp-cfg-sec--platform, .pp-cfg-sec--platform + .pp-cfg-sec--addons { grid-column: 1 / -1; } }
.pp-cfg-sec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pp-cfg-num { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--red-subtle); color: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 12px; }
.pp-cfg-sec-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text); flex: 1; }
.pp-cfg-sec-hint { font-size: 12.5px; color: var(--text-3); }

/* Ranks section */
.pp-cfg-ranks-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.pp-cfg-rank-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: var(--radius-full); background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-3); font-size: 12.5px; font-weight: 700; }
.pp-cfg-rank-pill.is-current::before, .pp-cfg-rank-pill.is-target::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--text-4, #555); }
.pp-cfg-rank-pill.is-current.is-set::before { background: #f7b500; }
.pp-cfg-rank-pill.is-target.is-set::before  { background: var(--red); }
.pp-cfg-rank-pill.is-set { color: var(--text); }
.pp-cfg-rank-arrow { color: var(--text-3); font-weight: 700; }
.pp-cfg-rank-tiers { padding: 5px 11px; border-radius: var(--radius-full); background: var(--red-subtle); color: var(--red); font-size: 12px; font-weight: 700; }
.pp-cfg-ranks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .pp-cfg-ranks-grid { grid-template-columns: 1fr; } }
.pp-cfg-ranks-col { display: flex; flex-direction: column; }
.pp-cfg-ranks-lbl { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.pp-cfg-rank-select { width: 100%; appearance: none; -webkit-appearance: none; background: var(--bg-elevated); border: 1.5px solid var(--border); border-radius: var(--radius-lg); color: var(--text); font-size: 14.5px; font-weight: 600; padding: 12px 40px 12px 14px; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.pp-cfg-rank-select:hover { border-color: var(--border-hover); }
.pp-cfg-rank-select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(189,30,45,0.18); }
.pp-cfg-rank-select option { background: var(--bg-card); color: var(--text); }
.pp-cfg-ranks-dot { width: 8px; height: 8px; border-radius: 50%; background: #888; }
.pp-cfg-ranks-dot--current { background: #f7b500; }
.pp-cfg-ranks-dot--target  { background: var(--red); }
.pp-cfg-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-cfg-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px 9px 12px; border-radius: var(--radius-full); background: var(--bg-elevated); border: 1.5px solid var(--border); color: var(--text-2); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s ease; }
.pp-cfg-chip:hover { border-color: var(--border-hover); color: var(--text); }
.pp-cfg-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-4, #555); transition: all .15s ease; }
.pp-cfg-chip[data-role="current"] .pp-cfg-chip-dot { background: #f7b500; }
.pp-cfg-chip[data-role="target"]  .pp-cfg-chip-dot { background: var(--red); }
.pp-cfg-chip.is-active { border-color: var(--red); color: var(--text); background: var(--bg-card); box-shadow: 0 0 0 1px var(--red); }

/* Tabs (mode) */
.pp-cfg-tabs { display: grid; grid-auto-columns: 1fr; grid-auto-flow: column; gap: 10px; }
@media (max-width: 580px) { .pp-cfg-tabs { grid-auto-flow: row; grid-auto-columns: unset; } }
.pp-cfg-tab { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; border-radius: var(--radius-lg); background: var(--bg-elevated); border: 1.5px solid var(--border); color: var(--text-2); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .15s ease; position: relative; }
.pp-cfg-tab:hover { border-color: var(--border-hover); color: var(--text); }
.pp-cfg-tab.is-active { border-color: var(--red); color: var(--text); background: var(--bg-card); box-shadow: 0 0 0 1px var(--red); }
.pp-cfg-tab.is-active::after { content: ""; position: absolute; top: 50%; right: 14px; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.pp-cfg-tab small { font-weight: 600; opacity: .85; }
.pp-cfg-tab-ic { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex: 0 0 auto; color: currentColor; }
.pp-cfg-tab-ic img, .pp-cfg-tab-ic svg { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Add-on cards */
.pp-cfg-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 580px) { .pp-cfg-addons { grid-template-columns: 1fr; } }
.pp-cfg-addon { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--bg-elevated); border: 1.5px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: all .15s ease; }
.pp-cfg-addon:hover { border-color: var(--border-hover); }
.pp-cfg-addon input { position: relative; appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--border); background: var(--bg-card); cursor: pointer; flex-shrink: 0; transition: all .15s ease; }
.pp-cfg-addon input:checked { background: var(--red); border-color: var(--red); }
.pp-cfg-addon input:checked::after { content: ""; position: absolute; top: 2px; left: 5px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2.2px 2.2px 0; transform: rotate(45deg); }
.pp-cfg-addon-name { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--text); }
.pp-cfg-addon-price { font-size: 12.5px; font-weight: 700; color: var(--red); white-space: nowrap; }
.pp-cfg-addon:has(input:checked) { border-color: var(--red); background: var(--bg-card); }
/* Long add-on lists (blueprints, weapon leveling): compact scrollable grid + search */
.pp-cfg-addons-search { width: 100%; margin-bottom: 10px; padding: 10px 12px; border-radius: var(--radius); background: var(--bg-elevated); border: 1.5px solid var(--border); color: var(--text); font-size: 13px; }
.pp-cfg-addons-search::placeholder { color: var(--text-2); }
.pp-cfg-addons-search:focus { outline: none; border-color: var(--red); }
.pp-cfg-addons--grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; max-height: 320px; overflow-y: auto; padding: 2px; }
.pp-cfg-addons--grid .pp-cfg-addon { padding: 9px 11px; gap: 9px; }
.pp-cfg-addons--grid .pp-cfg-addon-name { font-size: 12.5px; }
.pp-cfg-addon.is-hidden { display: none; }

/* Select dropdown (for long lists / amount pickers) */
.pp-cfg-select {
  display: block;
  width: 100%;
  min-height: 52px;
  line-height: 1.4;
  box-sizing: border-box;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px; font-weight: 600;
  padding: 12px 44px 12px 18px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.pp-cfg-select:hover { border-color: var(--border-hover); }
.pp-cfg-select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(189,30,45,0.18); }
.pp-cfg-select option { background: var(--bg-card); color: var(--text); padding: 8px; }

/* Text section */
.pp-cfg-text { width: 100%; min-height: 80px; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14px; padding: 12px 14px; resize: vertical; }
.pp-cfg-text:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }

/* Right summary card */
.pp-summary-card { position: sticky; top: 96px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 22px 22px 18px; }
.pp-summary-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.pp-summary-line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px dashed var(--border); margin-bottom: 16px; }
.pp-summary-lineText { font-size: 14px; color: var(--text); font-weight: 600; }
.pp-summary-lineAmt { font-size: 16px; font-weight: 800; color: var(--text); white-space: nowrap; }
.pp-summary-divider { display: none; }
.pp-summary-totalLabel { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.pp-summary-totalRow { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pp-summary-amt { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--text); letter-spacing: -0.02em; }
.pp-summary-was { font-size: 14px; color: var(--text-3); text-decoration: line-through; }
.pp-summary-save { font-size: 11px; font-weight: 800; letter-spacing: .04em; color: #00d27a; background: rgba(0,210,122,0.12); border: 1px solid rgba(0,210,122,0.3); padding: 3px 8px; border-radius: var(--radius-full); }
.pp-summary-emailRow { margin-bottom: 14px; }
.pp-summary-emailLbl { display: block; font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pp-summary-email { width: 100%; background: var(--bg-input, var(--bg-elevated)); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14px; padding: 12px 14px; }
.pp-summary-email:focus { outline: none; border-color: rgba(189,30,45,0.5); box-shadow: 0 0 0 3px rgba(189,30,45,0.12); }
.pp-summary-emailHint { font-size: 11.5px; color: var(--text-3); margin: 7px 0 0; line-height: 1.4; }
.pp-summary-cta { width: 100%; justify-content: center; padding: 14px 24px !important; font-size: 15px; gap: 6px; }
.pp-summary-cta--err { animation: bossShake .35s ease; box-shadow: 0 0 0 3px rgba(189,30,45,0.35) !important; }
@keyframes bossShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.pp-summary-cta--err::after { content: attr(data-err); position: absolute; left: 50%; transform: translateX(-50%); top: calc(100% + 8px); white-space: nowrap; background: var(--red); color: #fff; padding: 6px 10px; border-radius: var(--radius); font-size: 12px; font-weight: 600; }
.pp-summary-trust { list-style: none; margin: 16px 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pp-summary-trust li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-2); }
.pp-summary-payments { padding-top: 14px; border-top: 1px solid var(--border); }
.pp-summary-paymentsLbl { font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }

/* Hide the legacy two-column layout's leftover styles when v2 layout is used */
.pp-layout-3col + .pp-related, .pp-layout-3col + script + .pp-related { margin-top: 12px; }

/* =====================================================================
 * Product page v3 — 2-col (left: SEO content, right: sticky stepper cart)
 * ===================================================================== */

.pp-v2-shell {
  max-width: 1280px; margin: 0 auto;
  padding: 10px 32px 60px;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 24px; align-items: start;
}
.pp-v2-main { min-width: 0; display: flex; flex-direction: column; gap: 28px; }

/* Stats bar */
.pp-v2-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 6px;
}
.pp-v2-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 0 16px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.pp-v2-stat:last-child { border-right: 0; }
.pp-v2-stat svg { flex-shrink: 0; }
.pp-v2-stat > div { min-width: 0; }
.pp-v2-stat-lbl {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 4px; white-space: nowrap;
}
.pp-v2-stat strong {
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  color: var(--text); line-height: 1.1; display: block;
}

/* Sections */
.pp-v2-sec { display: flex; flex-direction: column; gap: 14px; }
.pp-v2-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
}
.pp-v2-h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800; letter-spacing: -0.015em;
  color: var(--text); line-height: 1.15; margin: 0;
}
.pp-v2-lead { font-size: 16px; line-height: 1.55; color: var(--text); margin: 0; }
.pp-v2-lead p { margin: 0 0 10px; }
.pp-v2-lead p:last-child { margin-bottom: 0; }
.pp-v2-body { font-size: 14.5px; line-height: 1.7; color: var(--text-2); margin: 0; }

/* What's included grid */
.pp-v2-feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pp-v2-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.pp-v2-feat-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(189,30,45,0.10);
  display: grid; place-items: center; flex-shrink: 0;
}
.pp-v2-feat strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pp-v2-feat p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-2); }

/* How it works — legacy 2-col grid (kept for the generic fallback only) */
.pp-v2-how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pp-v2-how {
  position: relative;
  padding: 14px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: flex-start; gap: 12px;
}
.pp-v2-how-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(189,30,45,0.15); color: var(--red);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}
.pp-v2-how-body { font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.pp-v2-how-body strong { color: var(--text); font-weight: 700; }

/* How to order — clean vertical timeline (per-product content) */
.pp-v2-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pp-v2-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.pp-v2-step:last-child { border-bottom: 0; }
.pp-v2-step-num {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  line-height: 1;
}
.pp-v2-step-text { font-size: 14.5px; line-height: 1.5; color: var(--text-2); padding-top: 3px; }
.pp-v2-step-text strong { color: var(--text); font-weight: 700; }

/* Callout cards (warning / info) inside long-form content */
.pp-callout {
  display: block; margin: 14px 0 4px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  font-size: 13.5px; line-height: 1.55; color: var(--text-2);
  border-left-width: 3px; border-left-style: solid;
}
.pp-callout strong { color: var(--text); font-weight: 700; }
.pp-callout--warn {
  background: rgba(247,181,0,0.08);
  border: 1px solid rgba(247,181,0,0.25);
  border-left-color: #f7b500;
}
.pp-callout--warn::before {
  content: "⚠"; color: #f7b500;
  font-size: 16px; font-weight: 800;
  margin-right: 8px;
}
.pp-callout--info {
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.22);
  border-left-color: #3b82f6;
}

/* What-you-get: bigger list with red bullets */
.pp-v2-longform--get {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  font-size: 14.5px; line-height: 1.65;
}
.pp-v2-longform--get ul { margin: 0; padding-left: 22px; list-style: none; }
.pp-v2-longform--get li { position: relative; padding-left: 0; margin-bottom: 10px; }
.pp-v2-longform--get li::before {
  content: ""; position: absolute; left: -18px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.pp-v2-longform--get strong { color: var(--text); }

/* Requirements block */
.pp-v2-longform--need {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg); padding: 18px 22px;
  font-size: 14px; line-height: 1.6;
}
.pp-v2-longform--need ul { margin: 0; padding-left: 18px; }
.pp-v2-longform--need li { margin-bottom: 8px; }
.pp-v2-longform--need li::marker { color: var(--red); }
.pp-v2-longform--need strong { color: var(--text); }

/* FAQ block — each H3 + p pair becomes an accordion-ish card */
.pp-v2-longform--faq h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--text);
  margin: 0 0 6px; padding: 0;
  position: relative;
}
.pp-v2-longform--faq h3::before {
  content: "Q."; color: var(--red); font-weight: 900; margin-right: 8px;
}
.pp-v2-longform--faq p {
  margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-2);
  padding-left: 26px;
}
.pp-v2-longform--faq h3 + p { padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.pp-v2-longform--faq > :last-child { border-bottom: 0 !important; padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* Default long-form (for the "other sections" bucket) */
.pp-v2-longform { font-size: 15px; line-height: 1.75; color: var(--text-2); }
.pp-v2-longform > *:first-child { margin-top: 0; }
.pp-v2-longform > *:last-child { margin-bottom: 0; }
.pp-v2-longform h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin: 28px 0 12px; line-height: 1.2; }
.pp-v2-longform h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); margin: 20px 0 6px; }
.pp-v2-longform p { margin: 0 0 14px; }
.pp-v2-longform strong { color: var(--text); }
.pp-v2-longform a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.pp-v2-longform ul, .pp-v2-longform ol { margin: 8px 0 16px; padding-left: 22px; }
.pp-v2-longform li { margin-bottom: 6px; }
.pp-v2-longform ul li::marker, .pp-v2-longform ol li::marker { color: var(--red); }
.pp-v2-longform table { width: 100%; border-collapse: collapse; margin: 12px 0 18px; background: var(--bg-elevated); border-radius: var(--radius-lg); overflow: hidden; font-size: 14px; }
.pp-v2-longform th, .pp-v2-longform td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.pp-v2-longform th { background: rgba(189,30,45,0.10); color: var(--text); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; }
.pp-v2-longform tr:last-child td { border-bottom: 0; }

/* ===== RIGHT sticky card ===== */
.pp-v2-side { position: sticky; top: 84px; }
.pp-v2-side-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  display: flex; flex-direction: column;
  isolation: isolate;
}

/* Hero image at top of sidebar — sits flush to card edges */
.pp-v2-hero {
  position: relative;
  aspect-ratio: 16 / 7;
  background-size: cover; background-position: center;
  background-color: var(--bg-elevated);
  margin: 0;
  overflow: hidden;
}
.pp-v2-hero-badges { position: absolute; top: 8px; left: 8px; right: 8px; display: flex; flex-wrap: wrap; gap: 3px; z-index: 2; }
.pp-v2-hero-platforms { position: absolute; top: 10px; right: 10px; z-index: 2; }
.pp-v2-hero-platforms .pp-pcard-platforms { gap: 4px; }
.pp-v2-hero-platforms .pp-pcard-plat { width: 28px; height: 28px; border-radius: 6px; background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.pp-v2-hero-platforms .pp-pcard-plat img, .pp-v2-hero-platforms .pp-pcard-plat svg { width: 16px; height: 16px; }
.pp-v2-hero-product {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 0 26px;            /* zero side padding, just bottom clearance for label */
  pointer-events: none;
}
.pp-v2-hero-product img {
  width: auto; height: 100%;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.75));
  /* Source PNGs are 625x625 with transparent built-in padding around the
     subject — scaling visually pushes the actual content out to the card
     edges so it looks like it fills the area. transform-origin biased
     slightly above center so the bottom doesn't crash into the label strip. */
  transform: scale(1.30);
  transform-origin: center 42%;
}
.pp-v2-hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}
.pp-v2-hero-icon { width: 26px; height: 26px; border-radius: 5px; flex-shrink: 0; object-fit: cover; }
.pp-v2-hero-game { font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.7); line-height: 1.2; }
.pp-v2-hero-name { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: #fff; line-height: 1.15; }

/* Stepper */
.pp-v2-stepper { padding: 14px 16px 0; }
.pp-v2-step-indicator {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 10px;
}

/* Collapsed-state toggle button (shown after final step) */
.pp-v2-stepper-toggle[hidden] { display: none !important; }
.pp-v2-stepper-toggle {
  display: flex; width: 100%;
  align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); color: var(--text);
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: border-color .15s;
}
.pp-v2-stepper-toggle:hover { border-color: var(--red); }
.pp-v2-stepper-toggle-lbl { display: inline-flex; align-items: center; gap: 7px; }
.pp-v2-stepper-toggle-edit {
  font-size: 11px; font-weight: 700; color: var(--red);
  letter-spacing: .04em; text-transform: uppercase;
}

/* Each configurator section becomes a compact single-step pane */
.pp-v2-stepper .pp-cfg { background: transparent; padding: 0; border: 0; display: block; }
.pp-v2-stepper .pp-cfg-sec { background: var(--bg-elevated); padding: 12px 14px 14px; border-radius: var(--radius-lg); border: 1px solid var(--border); display: none; grid-column: auto; }
.pp-v2-stepper .pp-cfg-sec.is-active { display: block; }
.pp-v2-stepper .pp-cfg-sec-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.pp-v2-stepper .pp-cfg-num { width: 20px; height: 20px; border-radius: 50%; background: rgba(189,30,45,0.18); color: var(--red); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 11px; flex-shrink: 0; }
.pp-v2-stepper .pp-cfg-sec-title { font-family: var(--font-display); font-size: 13.5px; font-weight: 800; color: var(--text); flex: 1; line-height: 1.2; }
.pp-v2-stepper .pp-cfg-sec-hint { font-size: 10.5px; color: var(--text-3); }

/* Compact form controls inside the stepper */
.pp-v2-stepper .pp-cfg-select { min-height: 42px; padding: 8px 36px 8px 12px; font-size: 13px; line-height: 1.3; border-radius: var(--radius); }
.pp-v2-stepper .pp-cfg-ranks-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
.pp-v2-stepper .pp-cfg-ranks-bar { gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.pp-v2-stepper .pp-cfg-rank-pill { padding: 4px 8px; font-size: 11px; }
.pp-v2-stepper .pp-cfg-rank-arrow { font-size: 12px; }
.pp-v2-stepper .pp-cfg-rank-tiers { font-size: 10.5px; padding: 2px 7px; }
.pp-v2-stepper .pp-cfg-ranks-lbl { font-size: 9.5px; margin-bottom: 4px; }
.pp-v2-stepper .pp-cfg-rank-select { min-height: 38px; padding: 6px 28px 6px 10px; font-size: 12.5px; }
.pp-v2-stepper .pp-cfg-tabs { gap: 6px; flex-wrap: wrap; }
.pp-v2-stepper .pp-cfg-tab { padding: 7px 10px; font-size: 12px; }
.pp-v2-stepper .pp-cfg-tab small { font-size: 10px; }
.pp-v2-stepper .pp-cfg-addons { display: flex; flex-direction: column; gap: 6px; }
.pp-v2-stepper .pp-cfg-addons--grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 7px; max-height: 300px; overflow-y: auto; padding-right: 4px; }
.pp-v2-stepper .pp-cfg-addon { padding: 8px 10px; gap: 8px; border-radius: var(--radius); }
.pp-v2-stepper .pp-cfg-addon-name { font-size: 12.5px; line-height: 1.3; }
.pp-v2-stepper .pp-cfg-addon-price { font-size: 11.5px; padding: 2px 6px; }
.pp-v2-stepper .pp-cfg-addon input[type="checkbox"] { width: 16px; height: 16px; }
.pp-v2-stepper .pp-cfg-text { min-height: 70px; padding: 8px 10px; font-size: 12.5px; }

.pp-v2-step-nav { display: flex; gap: 8px; margin-top: 12px; }
.pp-v2-step-back, .pp-v2-step-next {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  cursor: pointer; border: 0; transition: filter .15s, background .15s;
}
.pp-v2-step-back { background: transparent; color: var(--text-3); flex: 0 0 auto; padding: 10px 14px; }
.pp-v2-step-back:hover { color: var(--text); }
.pp-v2-step-next { background: var(--red); color: #fff; flex: 1; }
.pp-v2-step-next:hover { filter: brightness(1.08); }

/* Totals */
/* Included summary (single-item products, no configurator) */
.pp-v2-included {
  margin: 14px 16px 0;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.pp-v2-included-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 8px;
}
.pp-v2-included-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.pp-v2-included-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.4; color: var(--text-2); }
.pp-v2-included-list svg { flex-shrink: 0; margin-top: 2px; }

.pp-v2-totals { padding: 12px 16px 2px; border-top: 1px solid var(--border); margin-top: 12px; }
.pp-v2-totals-lines {
  list-style: none; margin: 0 0 10px; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--border); padding-bottom: 10px;
}
.pp-v2-totals-lines li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: 12px; line-height: 1.4;
}
.pp-v2-totals-lineLbl { color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 10px; flex-shrink: 0; }
.pp-v2-totals-lineVal { color: var(--text); font-weight: 600; text-align: right; min-width: 0; word-break: break-word; }
.pp-v2-totals-lbl { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2px; }
.pp-v2-totals-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pp-v2-totals-amt { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--text); letter-spacing: -0.02em; }
.pp-v2-totals-was { font-size: 13px; color: var(--text-3); text-decoration: line-through; }
.pp-v2-totals-save { background: rgba(34,197,94,0.18); color: #34d399; font-size: 10.5px; font-weight: 800; padding: 2px 7px; border-radius: var(--radius-full); }

/* Email */
.pp-v2-email { padding: 10px 16px 0; }
.pp-v2-email input {
  width: 100%; box-sizing: border-box;
  padding: 9px 12px; background: var(--bg-elevated);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 12.5px; font-family: inherit;
}
.pp-v2-email input:focus { outline: none; border-color: var(--red); }
.pp-v2-email-hint { font-size: 10.5px; color: var(--text-3); margin: 5px 0 0; line-height: 1.35; }

/* CTA */
.pp-v2-cta {
  margin: 10px 16px 0;
  padding: 11px 14px;
  background: var(--red); color: #fff;
  border: 0; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  cursor: pointer; transition: filter .15s;
}
.pp-v2-cta:hover { filter: brightness(1.08); }

/* Payment row + guarantee (replaces the old trust list) */
.pp-v2-pay {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 10px 12px;
  padding: 12px 14px 8px;
}
.pp-v2-pay-icon {
  height: 18px; width: auto; max-width: 48px;
  display: block; opacity: 0.85;
  filter: brightness(0.95);
  flex-shrink: 0;
}
/* Per-brand height balance so each reads at equal optical weight */
.pp-v2-pay-icon--visa       { height: 13px; }
.pp-v2-pay-icon--mastercard { height: 20px; }
.pp-v2-pay-icon--amex       { height: 18px; }
.pp-v2-pay-icon--stripe     { height: 15px; }
.pp-v2-pay-icon--apple-pay  { height: 18px; }
.pp-v2-pay-icon--google-pay { height: 13px; }
.pp-v2-pay-icon--crypto     { height: 18px; }
.pp-v2-pay-icon--ethereum   { height: 18px; }

.pp-v2-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 14px 13px;
  font-size: 11.5px; font-weight: 700; color: var(--text-2);
  border-top: 1px solid var(--border);
  margin-top: 2px;
}
.pp-v2-guarantee svg { flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .pp-v2-shell { grid-template-columns: 1fr 340px; gap: 24px; padding: 16px 20px 48px; }
}
@media (max-width: 860px) {
  .pp-v2-shell { grid-template-columns: 1fr; }
  .pp-v2-side { position: static; }
  /* On mobile, show sidebar first so the customer sees the configurator + buy button immediately */
  .pp-v2-shell > .pp-v2-side { order: -1; }
  .pp-v2-stats { grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px; }
  .pp-v2-stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 8px 6px; }
  .pp-v2-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .pp-v2-feat-grid, .pp-v2-how-grid { grid-template-columns: 1fr; }
  .pp-v2-h2 { font-size: 22px; }
}

/* ============================================================
 * Cart drawer — slide-out from right (Overgear-style)
 * ============================================================ */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0; transition: opacity 220ms ease;
  z-index: 999;
}
.cart-drawer-overlay.is-open { opacity: 1; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--bg-elevated, #14141c);
  border-left: 1px solid var(--border, rgba(255,255,255,0.08));
  box-shadow: -12px 0 40px rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(.2,.85,.25,1);
  z-index: 1000;
  color: var(--text, #fff);
}
.cart-drawer.is-open { transform: translateX(0); }
/* Removing-row animation: collapses height + fades + slides right. */
.cart-drawer-item { transition: opacity 180ms ease, transform 180ms ease, max-height 220ms ease, margin 220ms ease, padding 220ms ease, border-width 220ms ease; max-height: 240px; overflow: hidden; }
.cart-drawer-item.is-removing {
  opacity: 0;
  transform: translateX(20px);
  max-height: 0;
  margin-top: 0; margin-bottom: 0;
  padding-top: 0; padding-bottom: 0;
  border-width: 0;
}

body.boss-cart-open { overflow: hidden; }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
  flex-shrink: 0;
}
.cart-drawer-header h2 {
  margin: 0; font-size: 22px; font-weight: 800;
  font-family: var(--font-display, inherit);
  letter-spacing: -0.01em;
}
.cart-drawer-count {
  font-size: 14px; font-weight: 500;
  color: var(--text-2, rgba(255,255,255,0.6));
  margin-left: 4px;
}
.cart-drawer-close {
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-2, rgba(255,255,255,0.6));
  padding: 6px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 120ms, color 120ms;
}
.cart-drawer-close:hover { background: rgba(255,255,255,0.06); color: var(--text, #fff); }

.cart-drawer-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }

.cart-drawer-items {
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 14px;
}

.cart-drawer-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 12px;
  position: relative;
}

.cart-drawer-item-img {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-item-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(189,30,45,0.18), rgba(255,255,255,0.04)); }

.cart-drawer-item-body { flex: 1; min-width: 0; padding-right: 22px; }
.cart-drawer-item-title {
  display: block; color: var(--text, #fff);
  text-decoration: none; font-weight: 700; font-size: 15px;
  line-height: 1.3; margin-bottom: 2px;
}
.cart-drawer-item-title:hover { color: var(--primary-red, #bd1e2d); }
.cart-drawer-item-meta { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.6)); margin-top: 2px; }

.cart-drawer-item-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
}

.cart-drawer-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 8px; overflow: hidden;
}
.cart-drawer-qty-btn {
  background: transparent; border: 0; color: var(--text, #fff);
  width: 28px; height: 28px; font-size: 16px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 100ms;
}
.cart-drawer-qty-btn:hover { background: rgba(255,255,255,0.06); }
.cart-drawer-qty-val {
  width: 36px; height: 28px; text-align: center;
  background: transparent; border: 0; color: var(--text, #fff);
  border-left: 1px solid var(--border, rgba(255,255,255,0.1));
  border-right: 1px solid var(--border, rgba(255,255,255,0.1));
  font-weight: 600; font-size: 13px;
}
.cart-drawer-qty-val:focus { outline: none; background: rgba(255,255,255,0.04); }

.cart-drawer-item-price { font-weight: 800; font-size: 15px; color: var(--text, #fff); }

.cart-drawer-item-remove {
  position: absolute; top: 8px; right: 8px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-2, rgba(255,255,255,0.5));
  padding: 4px; border-radius: 6px;
  transition: color 100ms, background 100ms;
}
.cart-drawer-item-remove:hover { color: var(--primary-red, #bd1e2d); background: rgba(189,30,45,0.12); }

.cart-drawer-empty {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 22px;
  color: var(--text-2, rgba(255,255,255,0.6));
}
.cart-drawer-empty svg { opacity: 0.4; margin-bottom: 12px; }
.cart-drawer-empty h3 { margin: 0 0 6px; font-size: 18px; color: var(--text, #fff); }
.cart-drawer-empty p { margin: 0 0 18px; font-size: 14px; }
.cart-drawer-browse {
  display: inline-block; padding: 10px 22px;
  background: var(--primary-red, #bd1e2d); color: #fff;
  text-decoration: none; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  transition: filter 120ms;
}
.cart-drawer-browse:hover { filter: brightness(1.1); }

.cart-drawer-totals {
  padding: 16px 22px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.06));
  display: flex; flex-direction: column; gap: 12px;
}
.cart-drawer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.cart-drawer-row span { color: var(--text-2, rgba(255,255,255,0.7)); }
.cart-drawer-row strong { color: var(--text, #fff); font-weight: 700; }
.cart-drawer-row-discount strong { color: #4ade80; }
.cart-drawer-row-subtotal { padding-top: 10px; border-top: 1px dashed var(--border, rgba(255,255,255,0.08)); }
.cart-drawer-row-subtotal span { font-size: 16px; color: var(--text, #fff); font-weight: 600; }
.cart-drawer-row-subtotal strong { font-size: 20px; font-weight: 800; }

.cart-drawer-promo-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: transparent; border: 1px dashed var(--border, rgba(255,255,255,0.12));
  color: var(--text-2, rgba(255,255,255,0.7));
  padding: 12px 14px; border-radius: 10px; cursor: pointer;
  font-size: 14px; font-weight: 600;
  transition: border-color 120ms, color 120ms;
}
.cart-drawer-promo-toggle:hover { border-color: var(--primary-red, #bd1e2d); color: var(--text, #fff); }
.cart-drawer-promo-plus { font-size: 18px; font-weight: 700; }

.cart-drawer-promo-input { display: flex; gap: 8px; margin-top: 8px; }
.cart-drawer-promo-code {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  color: var(--text, #fff); border-radius: 8px;
  padding: 10px 12px; font-size: 14px;
}
.cart-drawer-promo-code:focus { outline: none; border-color: var(--primary-red, #bd1e2d); }
.cart-drawer-promo-apply {
  background: var(--primary-red, #bd1e2d); color: #fff;
  border: 0; border-radius: 8px; padding: 10px 18px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: filter 120ms;
}
.cart-drawer-promo-apply:hover { filter: brightness(1.1); }

.cart-drawer-promo-applied {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 8px; padding: 8px 12px;
  font-size: 13px; color: var(--text, #fff);
}
.cart-drawer-promo-tag {
  display: inline-block; background: rgba(74,222,128,0.2);
  padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  margin-right: 6px;
}
.cart-drawer-promo-remove {
  background: transparent; border: 0; color: var(--text-2, rgba(255,255,255,0.6));
  cursor: pointer; font-size: 18px; line-height: 1; padding: 0 4px;
}
.cart-drawer-promo-remove:hover { color: #f87171; }

.cart-drawer-footer {
  padding: 16px 22px 22px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.06));
  flex-shrink: 0;
}
.cart-drawer-checkout {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary-red, #bd1e2d); color: #fff;
  border: 0; border-radius: 10px;
  padding: 14px 22px;
  font-weight: 800; font-size: 15px;
  cursor: pointer;
  transition: filter 120ms, transform 80ms;
  letter-spacing: 0.01em;
}
.cart-drawer-checkout:hover { filter: brightness(1.1); }
.cart-drawer-checkout:active { transform: translateY(1px); }

.cart-drawer-notice {
  margin: 0 22px 12px;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(74,222,128,0.12); color: #6ee7b7;
  border: 1px solid rgba(74,222,128,0.3);
  font-size: 13px; font-weight: 600;
}
.cart-drawer-notice.is-error {
  background: rgba(248,113,113,0.12); color: #fca5a5;
  border-color: rgba(248,113,113,0.3);
}

.cart-drawer-item-opts {
  list-style: none; margin: 6px 0 0; padding: 0;
  font-size: 12px; line-height: 1.5;
  color: var(--text-2, rgba(255,255,255,0.7));
}
.cart-drawer-item-opts li { padding: 1px 0; }
.cart-drawer-item-opt-k { font-weight: 600; color: var(--text-2, rgba(255,255,255,0.55)); }
.cart-drawer-item-opt-v { color: var(--text, #fff); }

.pp-v2-cta.is-loading { opacity: 0.7; pointer-events: none; position: relative; }
.pp-v2-cta.is-loading::after {
  content: ''; position: absolute; top: 50%; right: 16px;
  width: 14px; height: 14px; margin-top: -7px;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  border-radius: 50%;
  animation: bossCartSpin .7s linear infinite;
}
@keyframes bossCartSpin { to { transform: rotate(360deg); } }

@media (max-width: 460px) {
  .cart-drawer { width: 100vw; border-left: 0; }
}

/* ============================================================
 * My Account dashboard shell — bm-* (Boss My-account)
 * ============================================================ */
/* Suppress the theme's page-title bar on the my-account page. */
.page-template-default.page.woocommerce-page header.entry-header,
.page.woocommerce-account .entry-header,
.page.woocommerce-account .page-title,
.page.woocommerce-account .ct-container > h1:first-child { display: none !important; }

/* Hide Woo's default sidebar nav since we render our own. */
.woocommerce-account .woocommerce-MyAccount-navigation { display: none !important; }
.woocommerce-account .woocommerce-MyAccount-content    { width: 100% !important; float: none !important; }

/* Kill Blocksy's narrow container + 60px top/bottom padding on the my-account
   page so the dashboard can stretch full width and sit higher on the page.
   Blocksy's existing rule explicitly excludes :not(.woocommerce-page) — so for
   the my-account dashboard we have to re-do the full-width override ourselves. */
body.woocommerce-account .ct-container-full {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.woocommerce-account .ct-container-full > article {
  max-width: none !important;
  width: 100% !important;
}
body.woocommerce-account .entry-content,
body.woocommerce-account .ct-woo-account {
  max-width: 100% !important;
  width: 100% !important;
}
/* WP's `is-layout-constrained` applies a content-size constraint to direct
   children that lack alignfull/alignwide. Override it for our dashboard so it
   spans the full content column. */
body.woocommerce-account .entry-content.is-layout-constrained > .bm,
body.woocommerce-account .bm {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bm {
  background: var(--bg, #0a0a0f);
  padding: 8px 0 80px;
  min-height: 60vh;
}
.bm-shell {
  /* Centered with gutters that match the rest of the site (game category,
     product pages). Keeps things from spanning edge-to-edge on big monitors. */
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 1280px) { .bm-shell { padding: 0 28px; } }
@media (max-width: 1100px) { .bm-shell { padding: 0 20px; } }
@media (max-width: 900px) {
  .bm { padding: 8px 0 56px; }
  /* Hard guard: the account page must never scroll sideways on mobile,
     whatever a parent/theme container does. Inner scroll strips (.bm-nav)
     keep their own overflow:auto and still scroll. */
  body.woocommerce-account { overflow-x: hidden; }
  .bm, .bm-shell, .bm-side, .bm-main { max-width: 100%; min-width: 0; }
  .bm-shell { grid-template-columns: 1fr; padding: 0 14px; gap: 16px; }

  /* The sidebar must NOT stay sticky on mobile — when stacked above the
     content, a sticky sidebar pins in place and the page scrolls behind it.
     !important because the base .bm-side rule is defined LATER in this file
     (media queries don't raise specificity, so source order would win). */
  .bm-side {
    position: static !important; top: auto !important;
    padding: 12px; gap: 10px;
  }
  .bm-nav {
    flex-direction: row !important; flex-wrap: nowrap;
    overflow-x: auto; gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    margin: 0 -2px;
  }
  .bm-nav::-webkit-scrollbar { display: none; }
  .bm-nav-item { flex: 0 0 auto; white-space: nowrap; padding: 9px 14px; }
  .bm-nav-item.is-active { padding: 8px 13px; }
  .bm-side-cta { margin-top: 0; }
  .bm-user-email { max-width: 60vw; }
}
/* Cleaner order rows across the whole collapsed range (sidebar stacks at 880):
   icon | title + #id/date | status above price, no chevron. Explicit grid
   placement so the status pill never lands on top of the game icon. */
@media (max-width: 880px) {
  .bm-main .ac-order { padding: 12px 14px; }
  .bm-main .ac-order-row { grid-template-columns: 40px 1fr auto; column-gap: 12px; row-gap: 2px; align-items: center; }
  .bm-main .ac-order-icon { width: 40px; height: 40px; grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .bm-main .ac-order-row > div:nth-child(2) { grid-column: 2; grid-row: 1 / 3; min-width: 0; }
  .bm-main .ac-order-title { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .bm-main .ac-status { grid-column: 3; grid-row: 1; justify-self: end; align-self: center; }
  .bm-main .ac-order-price { grid-column: 3; grid-row: 2; justify-self: end; font-size: 14px; text-align: right; }
  .bm-main .ac-order-toggle { display: none; }
}
@media (max-width: 560px) {
  .bm-shell { padding: 0 10px; }
  .bm-main .ac-intro h1, .bm-main h1.ac-intro { font-size: 24px; }
  .bm-main .ac-card, .ac-card { padding: 16px; }
}

/* ---- Sidebar ---- */
.bm-side {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 16px;
  align-self: start;
  position: sticky; top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.bm-user { display: flex; align-items: center; gap: 12px; padding: 4px 4px 14px; border-bottom: 1px solid var(--border, rgba(255,255,255,0.06)); }
.bm-user-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg, #0a0a0f); border: 1px solid var(--border, rgba(255,255,255,0.1)); }
.bm-user-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bm-user-text { min-width: 0; flex: 1; }
.bm-user-logout {
  flex-shrink: 0; margin-left: auto;
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2, rgba(255,255,255,0.6));
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  background: var(--bg, #0a0a0f);
  transition: color 120ms, border-color 120ms, background 120ms;
}
.bm-user-logout svg { width: 17px; height: 17px; }
.bm-user-logout:hover { color: #fff; border-color: rgba(189,30,45,0.5); background: rgba(189,30,45,0.12); }
.bm-user-name { font-weight: 800; font-size: 15px; color: var(--text, #fff); line-height: 1.2; }
.bm-user-email { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.55)); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }

.bm-nav { display: flex; flex-direction: column; gap: 2px; }
.bm-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--text-2, rgba(255,255,255,0.7));
  font-weight: 600; font-size: 14px;
  transition: background 120ms, color 120ms;
}
.bm-nav-item:hover { background: rgba(255,255,255,0.04); color: var(--text, #fff); }
.bm-nav-item.is-active {
  background: linear-gradient(90deg, rgba(189,30,45,0.18), rgba(189,30,45,0.06));
  color: var(--text, #fff);
  border: 1px solid rgba(189,30,45,0.35);
  padding: 9px 11px;
}
.bm-nav-ic { width: 18px; height: 18px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.bm-nav-ic svg { width: 18px; height: 18px; }
.bm-nav-item.is-active .bm-nav-ic { color: var(--primary-red, #bd1e2d); }

.bm-side-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
  padding: 10px 12px;
  background: var(--primary-red, #bd1e2d); color: #fff;
  text-decoration: none; border-radius: 9px;
  font-weight: 700; font-size: 13px;
  justify-content: center;
  transition: filter 120ms;
}
.bm-side-cta:hover { filter: brightness(1.1); }

/* ---- Main content area ---- */
.bm-main { min-width: 0; }
.bm-notices { margin-bottom: 14px; }
.bm-notices:empty { display: none; }

/* The existing dashboard content uses .ac-* classes — give them a darker,
   tighter, more polished default appearance now that they're not fighting
   the Woo wrapper. */
.bm-main .ac { padding: 0 !important; margin: 0 !important; }
.bm-main .ac-shell {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.bm-main .ac-intro { padding: 0; }
.bm-main .ac-intro-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-2, rgba(255,255,255,0.5)); text-transform: uppercase; margin-bottom: 6px; }
.bm-main .ac-intro h1, .bm-main h1.ac-intro { font-size: 32px; line-height: 1.15; font-weight: 800; color: var(--text, #fff); margin: 0 0 6px; letter-spacing: -0.02em; }
.bm-main .ac-intro-sub { color: var(--text-2, rgba(255,255,255,0.6)); font-size: 14px; }

/* Stats tiles */
.bm-main .ac-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 720px) {
  /* Keep the three stat tiles on one row on mobile, compact. */
  .bm-main .ac-tiles { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .bm-main .ac-tile { padding: 12px 8px; text-align: center; }
  .bm-main .ac-tile-lbl { justify-content: center; gap: 0; font-size: 9px; letter-spacing: .04em; white-space: nowrap; margin-bottom: 7px; }
  .bm-main .ac-tile-lbl svg { display: none; }
  .bm-main .ac-tile-val { font-size: 21px; }
}
.bm-main .ac-tile {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.bm-main .ac-tile-lbl { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-2, rgba(255,255,255,0.55)); text-transform: uppercase; }
.bm-main .ac-tile-lbl svg { width: 14px; height: 14px; opacity: 0.8; }
.bm-main .ac-tile-val { font-size: 32px; font-weight: 800; color: var(--text, #fff); letter-spacing: -0.02em; line-height: 1.1; }
.bm-main .ac-tile-val.accent { color: var(--primary-red, #bd1e2d); }
.bm-main .ac-tile-meta { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.55)); }

/* Card panel (orders list, etc.) */
.bm-main .ac-card {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 22px;
}
.bm-main .ac-panel-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-bottom: 18px;
}
.bm-main .ac-panel-title { font-size: 20px; font-weight: 800; color: var(--text, #fff); margin: 0 0 4px; }
.bm-main .ac-panel-sub { font-size: 13px; color: var(--text-2, rgba(255,255,255,0.55)); }

.bm-main .ac-orders { display: flex; flex-direction: column; gap: 10px; }
.bm-main .ac-order {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 11px;
  padding: 12px 14px;
  transition: background 120ms, border-color 120ms;
}
.bm-main .ac-order:hover { background: rgba(255,255,255,0.04); border-color: rgba(189,30,45,0.35); }
.bm-main .ac-order-row { display: grid; grid-template-columns: 44px 1fr auto auto 18px; align-items: center; gap: 14px; }
.bm-main .ac-order-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--bg, #0a0a0f); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border, rgba(255,255,255,0.06)); }
.bm-main .ac-order-icon img { width: 100%; height: 100%; object-fit: cover; }
.bm-main .ac-order-title { font-size: 14px; font-weight: 700; color: var(--text, #fff); line-height: 1.2; }
.bm-main .ac-order-sub { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.55)); margin-top: 2px; }
.bm-main .ac-order-id b { color: var(--text, #fff); font-weight: 700; }
.bm-main .ac-order-price { font-size: 15px; font-weight: 800; color: var(--text, #fff); }
.bm-main .ac-order-price bdi { color: var(--text, #fff); }
.bm-main .ac-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; }
.bm-main .ac-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.bm-main .ac-status.in-progress { background: rgba(251,191,36,0.12); color: #fbbf24; }
.bm-main .ac-status.in-progress .dot { background: #fbbf24; }
.bm-main .ac-status.completed { background: rgba(74,222,128,0.12); color: #4ade80; }
.bm-main .ac-status.completed .dot { background: #4ade80; }
.bm-main .ac-status.cancelled { background: rgba(248,113,113,0.12); color: #f87171; }
.bm-main .ac-status.cancelled .dot { background: #f87171; }
.bm-main .ac-order-toggle { display: inline-flex; align-items: center; justify-content: center; color: var(--text-3, rgba(255,255,255,0.4)); }
.bm-main .ac-order-toggle svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
  .bm-main .ac-order-row { grid-template-columns: 44px 1fr auto; row-gap: 6px; }
  .bm-main .ac-order-row .ac-order-toggle { display: none; }
  .bm-main .ac-order-row .ac-status { grid-column: 1 / -1; justify-self: start; }
}

/* ============================================================
 * Account details form — bm-acc-*
 * ============================================================ */
.bm-main form.bm-acc-form {
  display: flex; flex-direction: column; gap: 18px;
  background: transparent !important; border: 0 !important; padding: 0 !important;
}
.bm-main .bm-acc-section {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 22px 24px;
  border-bottom-color: var(--border, rgba(255,255,255,0.06));  /* override fieldset default */
}
.bm-main fieldset.bm-acc-section { margin: 0; min-width: 0; }
.bm-main .bm-acc-section-head { margin-bottom: 16px; }
.bm-main .bm-acc-section-head h2 { margin: 0 0 4px; font-size: 18px; font-weight: 800; color: var(--text, #fff); letter-spacing: -0.005em; }
.bm-main .bm-acc-section-head p { margin: 0; font-size: 13px; color: var(--text-2, rgba(255,255,255,0.55)); }

/* Avatar row */
.bm-main .bm-acc-avatar-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.bm-main .bm-acc-avatar-preview {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  flex-shrink: 0;
}
.bm-main .bm-acc-avatar-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bm-main .bm-acc-avatar-actions { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.bm-main .bm-acc-avatar-upload { display: inline-block; cursor: pointer; }
.bm-main .bm-acc-avatar-upload input[type=file] { display: none; }
.bm-main .bm-acc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.06); color: var(--text, #fff);
  border-radius: 8px; font-weight: 700; font-size: 13px;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  transition: background 120ms, border-color 120ms;
}
.bm-main .bm-acc-avatar-upload:hover .bm-acc-btn { background: rgba(189,30,45,0.18); border-color: rgba(189,30,45,0.4); }
.bm-main .bm-acc-avatar-remove { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2, rgba(255,255,255,0.6)); cursor: pointer; }
.bm-main .bm-acc-avatar-remove input { accent-color: var(--primary-red, #bd1e2d); }
.bm-main .bm-acc-avatar-hint { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.45)); }

/* Form grid */
.bm-main .bm-acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
/* The global contact-page .form-row rule (label | input two-column grid)
   leaks into this form — force account rows back to stacked label-over-input. */
.bm-main .bm-acc-form .form-row,
.bm-main .bm-acc-form .woocommerce-form-row { display: block; margin: 0; }
.bm-main .bm-acc-grid .form-row.bm-acc-row-wide,
.bm-main .bm-acc-grid p.bm-acc-row-wide { grid-column: 1 / -1; }
@media (max-width: 720px) { .bm-main .bm-acc-grid { grid-template-columns: 1fr; } }

.bm-main .bm-acc-form label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2, rgba(255,255,255,0.55));
  margin-bottom: 6px;
}
.bm-main .bm-acc-form label .required { color: var(--primary-red, #bd1e2d); margin-left: 2px; }
.bm-main .bm-acc-form input[type=text],
.bm-main .bm-acc-form input[type=email],
.bm-main .bm-acc-form input[type=password] {
  width: 100%; box-sizing: border-box;
  background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  color: var(--text, #fff);
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 14px; font-weight: 500;
  transition: border-color 120ms, background 120ms;
}
.bm-main .bm-acc-form input:focus { outline: none; border-color: var(--primary-red, #bd1e2d); background: var(--bg-elevated, #14141c); }
.bm-main .bm-acc-form .bm-acc-hint { display: block; margin-top: 6px; font-size: 12px; color: var(--text-2, rgba(255,255,255,0.45)); text-transform: none; letter-spacing: 0; font-weight: 500; }

.bm-main .bm-acc-actions { display: flex; justify-content: flex-end; padding: 4px 4px 8px; }
.bm-main .bm-acc-save {
  background: var(--primary-red, #bd1e2d); color: #fff;
  border: 0; border-radius: 9px; padding: 12px 26px;
  font-weight: 800; font-size: 14px; cursor: pointer;
  letter-spacing: 0.01em;
  transition: filter 120ms;
}
.bm-main .bm-acc-save:hover { filter: brightness(1.1); }

/* ============================================================
 * Orders list page (myaccount/orders.php)
 * ============================================================ */
.bm-main .bm-orders-page { display: flex; flex-direction: column; gap: 18px; }
.bm-main .bm-orders-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bm-main .bm-orders-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-2, rgba(255,255,255,0.5)); text-transform: uppercase; margin-bottom: 6px; }
.bm-main .bm-orders-head h1 { margin: 0 0 4px; font-size: 30px; font-weight: 800; color: var(--text, #fff); letter-spacing: -0.02em; }
.bm-main .bm-orders-head p { margin: 0; font-size: 14px; color: var(--text-2, rgba(255,255,255,0.6)); max-width: 540px; }
.bm-main .bm-orders-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 9px;
  background: var(--primary-red, #bd1e2d); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 13px;
  transition: filter 120ms;
}
.bm-main .bm-orders-cta:hover { filter: brightness(1.1); }

.bm-main .bm-orders-list { display: flex; flex-direction: column; gap: 10px; }
.bm-main .bm-order-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto auto 18px;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 12px;
  text-decoration: none; color: inherit;
  transition: background 120ms, border-color 120ms;
}
.bm-main .bm-order-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(189,30,45,0.4); }

.bm-main .bm-order-img {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3, rgba(255,255,255,0.3));
}
.bm-main .bm-order-img img { width: 100%; height: 100%; object-fit: cover; }
.bm-main .bm-order-title { font-size: 15px; font-weight: 700; color: var(--text, #fff); line-height: 1.2; margin-bottom: 4px; }
.bm-main .bm-order-sub { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.55)); display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.bm-main .bm-order-id b { color: var(--text, #fff); font-weight: 700; }
.bm-main .bm-order-dot { color: var(--text-3, rgba(255,255,255,0.3)); }
.bm-main .bm-order-price { font-size: 16px; font-weight: 800; color: var(--text, #fff); }
.bm-main .bm-order-price bdi { color: var(--text, #fff); }

.bm-main .bm-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; }
.bm-main .bm-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.bm-main .bm-status-in-progress { background: rgba(251,191,36,0.13); color: #fbbf24; }
.bm-main .bm-status-in-progress .dot { background: #fbbf24; }
.bm-main .bm-status-completed { background: rgba(74,222,128,0.13); color: #4ade80; }
.bm-main .bm-status-completed .dot { background: #4ade80; }
.bm-main .bm-status-cancelled { background: rgba(248,113,113,0.13); color: #f87171; }
.bm-main .bm-status-cancelled .dot { background: #f87171; }

.bm-main .bm-order-chev { color: var(--text-3, rgba(255,255,255,0.35)); }
.bm-main .bm-order-chev svg { width: 14px; height: 14px; }

.bm-main .bm-orders-pager { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 0; }
.bm-main .bm-orders-pg-btn { color: var(--text, #fff); text-decoration: none; font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: 8px; background: rgba(255,255,255,0.05); transition: background 120ms; }
.bm-main .bm-orders-pg-btn:hover { background: rgba(189,30,45,0.25); }
.bm-main .bm-orders-pg-meta { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.55)); }

.bm-main .bm-orders-empty {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 56px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.bm-main .bm-orders-empty svg { color: var(--text-3, rgba(255,255,255,0.3)); margin-bottom: 4px; }
.bm-main .bm-orders-empty h3 { margin: 0; font-size: 20px; font-weight: 800; color: var(--text, #fff); }
.bm-main .bm-orders-empty p { margin: 0 0 8px; font-size: 14px; color: var(--text-2, rgba(255,255,255,0.6)); max-width: 460px; }

@media (max-width: 640px) {
  .bm-main .bm-order-card { grid-template-columns: 60px 1fr auto; row-gap: 6px; }
  .bm-main .bm-order-card .bm-order-chev { display: none; }
  .bm-main .bm-order-card .bm-status { grid-column: 1 / -1; justify-self: start; }
}

/* ============================================================
 * Single order view (myaccount/view-order.php)
 * ============================================================ */
.bm-main .bm-vo { display: flex; flex-direction: column; gap: 18px; }
/* Row layout — Conversation (wide left) · Services + Info stacked on the right.
   Chat is the focal point so it gets ~2/3 of the row width. Both columns
   stretch to the height of the tallest column (chat fills automatically). */
.bm-main .bm-vo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.bm-main .bm-vo-card--chat { display: flex; flex-direction: column; }
.bm-main .bm-vo-card--chat .bm-vo-chat { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.bm-main .bm-vo-card--chat .bm-thread { flex: 1; min-height: 0; }
/* Cap the conversation so the reply box is visible on page load —
   older messages live behind the internal scroll (JS opens at the bottom). */
.bm-main .bm-vo-card--chat .bm-thread-msgs { flex: 1 1 auto; min-height: 220px; max-height: max(260px, calc(100vh - 430px)); }
.bm-main .bm-vo-side {
  display: flex; flex-direction: column; gap: 16px;
  min-width: 0;
  order: 2;          /* always sit on the right, after the chat */
}
.bm-main .bm-vo-card--chat { order: 1; }   /* chat is the big left card */
.bm-main .bm-vo-side > .bm-vo-card { padding: 18px; }
@media (max-width: 1180px) {
  .bm-main .bm-vo-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .bm-main .bm-vo-grid { grid-template-columns: 1fr; }
}
.bm-main .bm-vo-grid > .bm-vo-card { padding: 18px; }
.bm-main .bm-vo-grid .bm-vo-card-head { margin-bottom: 14px; }
.bm-main .bm-vo-grid .bm-vo-card-head h2 { font-size: 16px; }
.bm-main .bm-vo-grid .bm-vo-card-head p { font-size: 12.5px; }
.bm-main .bm-vo-grid .bm-vo-intake-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 12px; }
.bm-main .bm-vo-grid .bm-vo-intake-row dt { font-size: 11px; }
.bm-main .bm-vo-grid .bm-vo-intake-row dd { font-size: 13.5px; }
.bm-main .bm-vo-grid .bm-vo-item { grid-template-columns: 44px minmax(0, 1fr) auto; padding: 10px; gap: 12px; }
.bm-main .bm-vo-grid .bm-vo-item-img { width: 44px; height: 44px; }
.bm-main .bm-vo-grid .bm-vo-item-title { font-size: 14px; }
.bm-main .bm-vo-grid .bm-vo-meta-k { min-width: 100px; font-size: 12px; }
.bm-main .bm-vo-grid .bm-vo-meta-v { font-size: 12.5px; }
.bm-main .bm-vo-grid .bm-vo-totals-row { font-size: 13px; }
.bm-main .bm-vo-grid .bm-vo-totals-row:last-child span { font-size: 14px; }
.bm-main .bm-vo-grid .bm-vo-totals-row:last-child strong { font-size: 16px; }

.bm-main .bm-vo-card--chat .bm-vo-chat { padding: 0; }
.bm-main .bm-vo-card-head--row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.bm-main .bm-vo-card-head--row h2 { margin: 0; }
.bm-main .bm-vo-chat-ticket-id {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(189,30,45,0.18); color: #fca5a5;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(189,30,45,0.35);
  flex-shrink: 0;
}

/* ============================================================
 * Inline ticket thread on the order page (bm-thread / bm-msg)
 * ============================================================ */
.bm-main .bm-thread { display: flex; flex-direction: column; gap: 10px; }
.bm-main .bm-thread-msgs {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 240px; overflow-y: auto;
  padding: 4px;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  scrollbar-width: thin;
}
.bm-main .bm-thread-msgs::-webkit-scrollbar { width: 6px; }
.bm-main .bm-thread-msgs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 999px; }

.bm-main .bm-msg {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13.5px; line-height: 1.45;
  color: var(--text, #fff);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
}
.bm-main .bm-msg-head {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.bm-main .bm-msg-who { text-transform: uppercase; color: var(--text-2, rgba(255,255,255,0.7)); }
.bm-main .bm-msg-when { color: var(--text-3, rgba(255,255,255,0.4)); font-weight: 500; text-transform: none; letter-spacing: 0; }
.bm-main .bm-msg-body { word-break: break-word; }
.bm-main .bm-msg-body p { margin: 0 0 6px; }
.bm-main .bm-msg-body p:last-child { margin-bottom: 0; }
.bm-main .bm-msg-body ul { margin: 4px 0 6px 18px; padding: 0; }
.bm-main .bm-msg-body em { color: var(--text-2, rgba(255,255,255,0.65)); }

.bm-main .bm-msg--customer { align-self: flex-end; background: rgba(189,30,45,0.14); border-color: rgba(189,30,45,0.35); }
.bm-main .bm-msg--customer .bm-msg-who { color: #fca5a5; }
.bm-main .bm-msg--agent    { align-self: flex-start; background: rgba(255,255,255,0.03); }
.bm-main .bm-msg--agent .bm-msg-who { color: #93c5fd; }

.bm-main .bm-thread-reply {
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 12px; margin-top: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 11px;
}
.bm-main .bm-thread-reply-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.bm-main .bm-thread-reply-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2, rgba(255,255,255,0.55));
}
.bm-main .bm-thread-status { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.6)); display: inline-flex; align-items: center; gap: 6px; }
.bm-main .bm-thread-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.bm-main .bm-thread-status strong { color: var(--text, #fff); }

.bm-main .bm-thread-input-wrap {
  position: relative;
  background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 9px;
  transition: border-color 120ms;
}
.bm-main .bm-thread-input-wrap:focus-within { border-color: var(--primary-red, #bd1e2d); }
.bm-main #bm-thread-input {
  background: transparent;
  border: 0;
  color: var(--text, #fff);
  padding: 9px 90px 9px 12px;  /* right padding leaves room for the buttons */
  font-size: 13.5px; line-height: 1.4;
  resize: vertical;
  height: 38px;
  min-height: 38px;
  font-family: inherit;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  display: block;
}
.bm-main #bm-thread-input:focus { outline: none; }

.bm-main .bm-thread-input-actions {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 4px;
}
.bm-main .bm-thread-attach {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 7px;
  color: var(--text-2, rgba(255,255,255,0.6));
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.bm-main .bm-thread-attach:hover { background: rgba(255,255,255,0.06); color: var(--text, #fff); }
.bm-main .bm-thread-attach input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.bm-main .bm-thread-send {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px !important; height: 30px !important;
  min-height: 0 !important; padding: 0 !important;
  flex: 0 0 auto; line-height: 1;
  background: var(--primary-red, #bd1e2d); color: #fff;
  border: 0; border-radius: 7px;
  cursor: pointer;
  transition: filter 120ms, opacity 120ms;
}
.bm-main .bm-thread-send svg { display: block; width: 15px; height: 15px; pointer-events: none; }
.bm-main .bm-thread-send:hover { filter: brightness(1.1); }
.bm-main .bm-thread-send:disabled, .bm-main .bm-thread-send.is-loading { opacity: 0.6; cursor: wait; }

.bm-main .bm-thread-attach-preview {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 6px 10px; background: rgba(189,30,45,0.1); color: var(--text-2, rgba(255,255,255,0.75));
  border: 1px solid rgba(189,30,45,0.3); border-radius: 7px;
  font-size: 12px;
}
.bm-main .bm-thread-attach-preview[hidden] { display: none; }
.bm-main .bm-thread-attach-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 90%; }
.bm-main .bm-thread-attach-clear {
  background: transparent; border: 0; color: var(--text-2, rgba(255,255,255,0.6));
  cursor: pointer; font-size: 16px; line-height: 1; padding: 0 4px;
}
.bm-main .bm-thread-attach-clear:hover { color: #f87171; }

/* Image attachments rendered inline in messages. */
.bm-main .bm-msg-body img { max-width: 100%; height: auto; border-radius: 8px; display: block; margin: 6px 0; }
.bm-main .bm-thread-err {
  background: rgba(248,113,113,0.12); color: #fca5a5;
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 8px; padding: 8px 12px; font-size: 13px;
}
/* Single-row compact header card, aligned with the sidebar's user card */
.bm-main .bm-vo-head {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 12px 16px;
}
.bm-main .bm-vo-back {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--text-2, rgba(255,255,255,0.7));
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 8px;
  text-decoration: none;
  transition: background 120ms, color 120ms, border-color 120ms;
  flex-shrink: 0;
}
.bm-main .bm-vo-back:hover { background: rgba(189,30,45,0.18); color: var(--text, #fff); border-color: rgba(189,30,45,0.4); }
.bm-main .bm-vo-title-img {
  width: 40px; height: 40px; border-radius: 10px; overflow: hidden;
  background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3, rgba(255,255,255,0.3));
  flex-shrink: 0;
}
.bm-main .bm-vo-title-img img { width: 100%; height: 100%; object-fit: cover; }
.bm-main .bm-vo-head-text { flex: 1; min-width: 0; }
.bm-main .bm-vo-head h1 { margin: 0; font-size: 20px; font-weight: 800; color: var(--text, #fff); letter-spacing: -0.01em; line-height: 1.2; }
.bm-main .bm-vo-subtitle { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.55)); margin-top: 2px; }
.bm-main .bm-vo-head .bm-status { flex-shrink: 0; }
@media (max-width: 640px) {
  /* Give the "Order #… / date" text room: smaller pieces, tighter gap,
     and drop the status pill onto its own line so it stops squeezing the
     title column (which was making the date wrap and clump). */
  .bm-main .bm-vo-head { flex-wrap: wrap; gap: 10px; padding: 12px 14px; }
  .bm-main .bm-vo-back { width: 30px; height: 30px; }
  .bm-main .bm-vo-title-img { width: 34px; height: 34px; }
  .bm-main .bm-vo-head h1 { font-size: 16px; }
  .bm-main .bm-vo-subtitle { font-size: 11.5px; margin-top: 3px; white-space: nowrap; }
  .bm-main .bm-vo-head .bm-status { margin-left: 0; order: 3; flex-basis: 100%; }
}

.bm-main .bm-vo-card {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 22px 24px;
}
.bm-main .bm-vo-card-head { margin-bottom: 18px; }
.bm-main .bm-vo-card-head h2 { margin: 0 0 4px; font-size: 18px; font-weight: 800; color: var(--text, #fff); }
.bm-main .bm-vo-card-head p { margin: 0; font-size: 13px; color: var(--text-2, rgba(255,255,255,0.55)); }

.bm-main .bm-vo-items { display: flex; flex-direction: column; gap: 12px; }
.bm-main .bm-vo-item {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px; align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 11px;
}
.bm-main .bm-vo-item-img { width: 56px; height: 56px; border-radius: 9px; overflow: hidden; background: var(--bg, #0a0a0f); border: 1px solid var(--border, rgba(255,255,255,0.06)); display: flex; align-items: center; justify-content: center; color: var(--text-3, rgba(255,255,255,0.3)); }
.bm-main .bm-vo-item-img img { width: 100%; height: 100%; object-fit: cover; }
.bm-main .bm-vo-item-title { font-size: 15px; font-weight: 700; color: var(--text, #fff); margin-bottom: 6px; }
.bm-main .bm-vo-item-qty { font-size: 13px; color: var(--text-2, rgba(255,255,255,0.55)); font-weight: 600; margin-left: 4px; }
.bm-main .bm-vo-item-meta { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.bm-main .bm-vo-item-meta li { font-size: 13px; color: var(--text, #fff); display: flex; gap: 8px; }
.bm-main .bm-vo-meta-k { font-weight: 600; color: var(--text-2, rgba(255,255,255,0.6)); min-width: 130px; }
.bm-main .bm-vo-meta-v { color: var(--text, #fff); }
.bm-main .bm-vo-item-price { font-size: 15px; font-weight: 800; color: var(--text, #fff); white-space: nowrap; }
.bm-main .bm-vo-item-price bdi { color: var(--text, #fff); }

.bm-main .bm-vo-totals { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--border, rgba(255,255,255,0.1)); display: flex; flex-direction: column; gap: 6px; }
.bm-main .bm-vo-totals-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.bm-main .bm-vo-totals-row span { color: var(--text-2, rgba(255,255,255,0.6)); }
.bm-main .bm-vo-totals-row strong { color: var(--text, #fff); font-weight: 700; }
.bm-main .bm-vo-totals-row:last-child { padding-top: 6px; border-top: 1px dashed var(--border, rgba(255,255,255,0.08)); margin-top: 4px; }
.bm-main .bm-vo-totals-row:last-child span { font-size: 16px; font-weight: 600; color: var(--text, #fff); }
.bm-main .bm-vo-totals-row:last-child strong { font-size: 18px; font-weight: 800; }

.bm-main .bm-vo-intake { display: grid; gap: 12px; margin: 0; padding: 0; }
.bm-main .bm-vo-intake-row {
  display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 16px; align-items: start;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 10px;
}
.bm-main .bm-vo-intake-row dt { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-2, rgba(255,255,255,0.55)); }
.bm-main .bm-vo-intake-row dd { margin: 0; font-size: 14px; color: var(--text, #fff); word-break: break-word; }
@media (max-width: 720px) { .bm-main .bm-vo-intake-row { grid-template-columns: 1fr; gap: 4px; } }

.bm-main .bm-vo-chat-cta {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 20px 16px;
}
.bm-main .bm-vo-chat-cta p { margin: 0; color: var(--text-2, rgba(255,255,255,0.65)); font-size: 14px; }

/* Style Woo's edit-account / edit-address forms (used in the same content
   area) so they don't render as default white blocks. */
.bm-main form.woocommerce-EditAccountForm,
.bm-main form.woocommerce-address-fields,
.bm-main .woocommerce-MyAccount-content > p,
.bm-main .woocommerce-MyAccount-content > h2,
.bm-main .woocommerce-MyAccount-content > h3,
.bm-main .woocommerce-Address {
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 22px;
  color: var(--text, #fff);
}
.bm-main h2, .bm-main h3 { color: var(--text, #fff); }
.bm-main .form-row label, .bm-main .woocommerce-form-row label { color: var(--text-2, rgba(255,255,255,0.7)); font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; }
.bm-main .form-row input[type=text],
.bm-main .form-row input[type=email],
.bm-main .form-row input[type=password],
.bm-main .form-row input[type=tel],
.bm-main .form-row select,
.bm-main .woocommerce-Input {
  background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  color: var(--text, #fff);
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  font-size: 14px;
}
.bm-main .form-row input:focus,
.bm-main .woocommerce-Input:focus { outline: none; border-color: var(--primary-red, #bd1e2d); }
.bm-main button.woocommerce-Button, .bm-main button[type=submit] {
  background: var(--primary-red, #bd1e2d); color: #fff;
  border: 0; border-radius: 9px; padding: 12px 22px;
  font-weight: 800; font-size: 14px; cursor: pointer;
  letter-spacing: 0.01em;
  transition: filter 120ms;
}
.bm-main button.woocommerce-Button:hover, .bm-main button[type=submit]:hover { filter: brightness(1.1); }

/* Woo orders endpoint (table list) — restyle */
.bm-main table.woocommerce-orders-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-elevated, #14141c);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  overflow: hidden;
}
.bm-main table.woocommerce-orders-table th,
.bm-main table.woocommerce-orders-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
  color: var(--text, #fff);
  font-size: 14px;
}
.bm-main table.woocommerce-orders-table th { background: rgba(255,255,255,0.02); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2, rgba(255,255,255,0.55)); }
.bm-main table.woocommerce-orders-table tr:last-child td { border-bottom: 0; }
.bm-main .woocommerce-orders-table__cell-order-actions .button {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.06); color: var(--text, #fff);
  border-radius: 7px; font-weight: 600; font-size: 12px;
  text-decoration: none; transition: background 120ms;
}
.bm-main .woocommerce-orders-table__cell-order-actions .button:hover { background: rgba(189,30,45,0.3); }


/* ============================================================
 *  Sign-In / Register page (Woo my-account when logged out)
 *  Renders form-login.php override in woocommerce/myaccount/
 * ============================================================ */
.bm-auth { max-width: 1100px; margin: 40px auto 60px; padding: 0 24px; }
.bm-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bm-auth-card {
  background: var(--bg-card, #14151a);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: var(--radius-lg, 14px);
  padding: 32px 30px;
}
.bm-auth-card--solo { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
.bm-auth-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red, #bd1e2d);
  background: rgba(189,30,45,0.10); border: 1px solid rgba(189,30,45,0.22);
  border-radius: 999px; padding: 5px 11px; margin-bottom: 14px;
}
.bm-auth-title { font-family: var(--font-display); font-size: 26px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--text, #fff); }
.bm-auth-lede { color: var(--text-3, rgba(255,255,255,0.55)); font-size: 14px; line-height: 1.5; margin: 0 0 22px; }
.bm-auth-form { display: flex; flex-direction: column; gap: 14px; }
.bm-auth-field { display: flex; flex-direction: column; gap: 6px; }
.bm-auth-field > span { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2, rgba(255,255,255,0.7)); }
.bm-auth-field input { width: 100%; padding: 12px 14px; background: var(--bg-elevated, #1a1d24); border: 1px solid var(--border, rgba(255,255,255,0.08)); border-radius: 10px; color: var(--text, #fff); font-size: 14px; transition: border-color .15s; }
.bm-auth-field input:focus { outline: none; border-color: var(--red, #bd1e2d); }
.bm-auth-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.bm-auth-remember { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2, rgba(255,255,255,0.7)); cursor: pointer; }
.bm-auth-remember input { width: 16px; height: 16px; accent-color: var(--red, #bd1e2d); }
.bm-auth-link { color: var(--text-2, rgba(255,255,255,0.7)); text-decoration: none; font-size: 13px; transition: color .15s; }
.bm-auth-link:hover { color: var(--red, #bd1e2d); }
.bm-auth-cta { margin-top: 6px; }
.bm-auth-fine { font-size: 12px; color: var(--text-3, rgba(255,255,255,0.45)); line-height: 1.5; margin: 6px 0 0; }
.bm-auth-fine a { color: var(--text-2, rgba(255,255,255,0.7)); text-decoration: underline; text-underline-offset: 2px; }
.bm-auth-fine a:hover { color: var(--red, #bd1e2d); }
.bm-auth-hint { font-size: 13px; color: var(--text-3, rgba(255,255,255,0.55)); margin: -4px 0 2px; padding: 10px 12px; background: rgba(255,255,255,0.03); border: 1px dashed var(--border, rgba(255,255,255,0.08)); border-radius: 8px; }

/* WC's own error/notice blocks on this page — restyle to match */
.bm-auth .woocommerce-notices-wrapper,
.bm-auth + .woocommerce-notices-wrapper { max-width: 1100px; margin: 0 auto 16px; padding: 0 24px; }
.bm-auth .woocommerce-error,
.bm-auth-card + .woocommerce-error,
body.woocommerce-account .woocommerce-error {
  background: rgba(189,30,45,0.08); border: 1px solid rgba(189,30,45,0.3); border-radius: 10px;
  padding: 14px 18px; color: var(--text, #fff); font-size: 14px; list-style: none; margin: 0 0 18px;
}
.bm-auth .woocommerce-message,
body.woocommerce-account .woocommerce-message {
  background: rgba(4,218,141,0.08); border: 1px solid rgba(4,218,141,0.3); border-radius: 10px;
  padding: 14px 18px; color: var(--text, #fff); font-size: 14px; list-style: none; margin: 0 0 18px;
}

@media (max-width: 760px) {
  .bm-auth { margin: 20px auto 40px; }
  .bm-auth-grid { grid-template-columns: 1fr; }
  .bm-auth-card { padding: 24px 22px; }
  .bm-auth-title { font-size: 22px; }
}

/* ============================================================
 * Delivery confirmation + review (order page)
 * ============================================================ */
.bm-main .bm-confirm { border: 1px solid rgba(74,222,128,0.25); }
.bm-main .bm-confirm-head { display: flex; gap: 14px; align-items: flex-start; }
.bm-main .bm-confirm-ic {
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,0.12); color: #4ade80;
}
.bm-main .bm-confirm-head h2 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--text, #fff); }
.bm-main .bm-confirm-head p { margin: 0; font-size: 13.5px; color: var(--text-2, rgba(255,255,255,0.6)); }
.bm-main .bm-confirm-proof { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 0; }
.bm-main .bm-confirm-proof a { display: block; max-width: 260px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border, rgba(255,255,255,0.1)); }
.bm-main .bm-confirm-proof img { display: block; width: 100%; height: auto; }
.bm-main .bm-confirm-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.bm-main .bm-confirm-yes {
  display: inline-flex; align-items: center; gap: 8px;
  background: #16a34a; color: #fff; border: 0; border-radius: 999px;
  padding: 11px 22px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: filter 120ms;
}
.bm-main .bm-confirm-yes:hover { filter: brightness(1.1); }
.bm-main .bm-confirm-help {
  background: transparent; color: var(--text-2, rgba(255,255,255,0.7));
  border: 1px solid var(--border, rgba(255,255,255,0.16)); border-radius: 999px;
  padding: 11px 22px; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: border-color 120ms, color 120ms;
}
.bm-main .bm-confirm-help:hover { border-color: rgba(189,30,45,0.5); color: var(--text, #fff); }
.bm-main .bm-confirm-yes:disabled, .bm-main .bm-confirm-help:disabled { opacity: 0.55; cursor: wait; }
.bm-main .bm-confirm-msg {
  margin-top: 12px; padding: 9px 12px; border-radius: 8px; font-size: 13px;
  background: rgba(255,255,255,0.05); color: var(--text-2, rgba(255,255,255,0.7));
}
.bm-main .bm-confirm-msg.is-error { background: rgba(248,113,113,0.12); color: #fca5a5; border: 1px solid rgba(248,113,113,0.3); }

.bm-main .bm-review h2 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--text, #fff); }
.bm-main .bm-review p { margin: 0 0 4px; font-size: 13.5px; color: var(--text-2, rgba(255,255,255,0.6)); }
.bm-main .bm-review-stars { display: flex; gap: 4px; margin: 12px 0; }
.bm-main .bm-review-star {
  background: transparent; border: 0; cursor: pointer;
  font-size: 30px; line-height: 1; padding: 2px;
  color: rgba(255,255,255,0.18);
  transition: color 100ms, transform 100ms;
}
.bm-main .bm-review-star:hover { transform: scale(1.12); }
.bm-main .bm-review-star.is-on { color: #facc15; }
.bm-main .bm-review textarea {
  width: 100%; box-sizing: border-box; resize: vertical;
  background: var(--bg, #0a0a0f);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  color: var(--text, #fff); border-radius: 9px;
  padding: 11px 13px; font-size: 14px; font-family: inherit;
}
.bm-main .bm-review textarea:focus { outline: none; border-color: var(--primary-red, #bd1e2d); }
.bm-main .bm-review-actions { display: flex; gap: 10px; margin-top: 12px; align-items: center; }
.bm-main .bm-review-submit {
  background: var(--primary-red, #bd1e2d); color: #fff; border: 0; border-radius: 999px;
  padding: 11px 22px; font-size: 14px; font-weight: 700; cursor: pointer; transition: filter 120ms;
}
.bm-main .bm-review-submit:hover { filter: brightness(1.1); }
.bm-main .bm-review-skip {
  background: transparent; border: 0; color: var(--text-2, rgba(255,255,255,0.5));
  font-size: 13px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.bm-main .bm-review-skip:hover { color: var(--text, #fff); }
.bm-main .bm-review-submit:disabled, .bm-main .bm-review-skip:disabled { opacity: 0.55; cursor: wait; }
.bm-main .bm-review-coupon {
  display: inline-block; margin: 10px 0; padding: 12px 22px;
  background: rgba(250,204,21,0.1); border: 1px dashed rgba(250,204,21,0.5);
  border-radius: 10px; font-size: 19px; font-weight: 800; letter-spacing: 0.08em;
  color: #facc15; user-select: all;
}
.bm-main .bm-review-fine { font-size: 12px; color: var(--text-2, rgba(255,255,255,0.45)); }

/* Status pill for the awaiting-confirmation state (amber) */
.bm-main .bm-status-boss-delivered { background: rgba(250,204,21,0.12); color: #facc15; }
.bm-main .bm-status-boss-delivered .dot { background: #facc15; }

/* Closed-ticket lock + re-open button (order chat) */
.bm-main .bm-thread-closed {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
}
.bm-main .bm-thread-closed-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-2, rgba(255,255,255,0.6));
}
.bm-main .bm-thread-reopen {
  background: transparent; color: var(--text, #fff);
  border: 1px solid rgba(189,30,45,0.5); border-radius: 999px;
  padding: 8px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background 120ms, border-color 120ms;
}
.bm-main .bm-thread-reopen:hover { background: rgba(189,30,45,0.15); border-color: var(--primary-red, #bd1e2d); }
.bm-main .bm-thread-reopen:disabled { opacity: 0.55; cursor: wait; }

/* ════════════════════════════════════════════════════════════
   COMPLIANZ COOKIE BANNER — restyled to match the original
   Boss Services consent card (dark bottom-center card, red CTA).
   Overrides Complianz default skin via #cmplz-cookiebanner-container.
   ════════════════════════════════════════════════════════════ */
#cmplz-cookiebanner-container .cmplz-cookiebanner {
  left: 16px !important;
  right: 16px !important;
  bottom: 20px !important;
  top: auto !important;
  margin: 0 auto !important;
  width: auto !important;
  max-width: 480px !important;
  background: #13141A !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(189,30,45,0.1) !important;
  color: #F0F0F5 !important;
  font-family: 'Inter','Manrope',system-ui,sans-serif !important;
  font-size: 14px !important;
  padding: 20px !important;
}

/* Header — hide empty logo, add red cookie icon before the title */
#cmplz-cookiebanner-container .cmplz-header { margin-bottom: 8px; align-items: center; }
#cmplz-cookiebanner-container .cmplz-logo { display: none !important; }
#cmplz-cookiebanner-container .cmplz-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px !important; font-weight: 700 !important;
  letter-spacing: -.01em; color: #F0F0F5 !important; margin: 0 !important;
}
#cmplz-cookiebanner-container .cmplz-title::before {
  content: ''; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background-color: rgba(189,30,45,0.13);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD1E2D' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10c0-.46-.04-.92-.1-1.36a5 5 0 0 1-5.91-7.6A10 10 0 0 0 12 2z'/%3E%3Ccircle cx='8.5' cy='8.5' r='.5' fill='%23BD1E2D'/%3E%3Ccircle cx='16' cy='11' r='.5' fill='%23BD1E2D'/%3E%3Ccircle cx='14' cy='16' r='.5' fill='%23BD1E2D'/%3E%3Ccircle cx='9' cy='14' r='.5' fill='%23BD1E2D'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px 14px;
}
#cmplz-cookiebanner-container .cmplz-close {
  color: #6A6C7A !important; opacity: .7; transition: opacity .15s, color .15s;
}
#cmplz-cookiebanner-container .cmplz-close:hover { color: #F0F0F5 !important; opacity: 1; }
#cmplz-cookiebanner-container .cmplz-divider { display: none !important; }

/* Body copy */
#cmplz-cookiebanner-container .cmplz-body { padding: 0 !important; }
#cmplz-cookiebanner-container .cmplz-message {
  font-size: 13px !important; line-height: 1.6 !important;
  color: #9A9CAD !important; margin: 0 0 16px !important;
}
#cmplz-cookiebanner-container .cmplz-message a,
#cmplz-cookiebanner-container .cmplz-documents a {
  color: #F0F0F5 !important; text-decoration: underline;
  text-decoration-color: rgba(189,30,45,0.6); text-underline-offset: 3px;
}

/* Hide the redundant "Manage options / services" text-link row —
   the View preferences button below provides granular control. */
#cmplz-cookiebanner-container .cmplz-links.cmplz-information { display: none !important; }

/* Buttons: Deny (secondary) + Accept (primary) on one row,
   View/Save preferences as a full-width link/button below. */
#cmplz-cookiebanner-container .cmplz-buttons {
  display: flex !important; flex-wrap: wrap; gap: 8px; margin: 0 !important;
}
#cmplz-cookiebanner-container .cmplz-btn {
  font-family: inherit !important; font-size: 13.5px !important; font-weight: 600 !important;
  line-height: 1 !important; text-align: center !important;
  padding: 11px 18px !important; border-radius: 8px !important;
  cursor: pointer; flex: 1 1 auto !important; min-width: 0 !important;
  transition: background .15s ease, border-color .15s ease, color .15s ease !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-deny { order: 1;
  background: transparent !important; color: #F0F0F5 !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-deny:hover { border-color: rgba(255,255,255,0.3) !important; }
#cmplz-cookiebanner-container .cmplz-btn.cmplz-accept { order: 2;
  background: #BD1E2D !important; color: #fff !important; border: 1px solid #BD1E2D !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-accept:hover { background: #a01826 !important; border-color: #a01826 !important; }
#cmplz-cookiebanner-container .cmplz-btn.cmplz-save-preferences {
  background: #BD1E2D !important; color: #fff !important; border: 1px solid #BD1E2D !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-save-preferences:hover { background: #a01826 !important; border-color: #a01826 !important; }
#cmplz-cookiebanner-container .cmplz-btn.cmplz-view-preferences { order: 3;
  flex: 1 1 100% !important;
  background: transparent !important; color: #6A6C7A !important; border: none !important;
  font-size: 12.5px !important; padding: 8px 6px !important; margin-top: 2px;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-view-preferences:hover { color: #F0F0F5 !important; }

/* Preference category toggles — match the dark/red theme */
#cmplz-cookiebanner-container .cmplz-category {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.07) !important; border-radius: 10px !important;
  margin-bottom: 8px !important;
}
#cmplz-cookiebanner-container .cmplz-category .cmplz-title,
#cmplz-cookiebanner-container .cmplz-category h4 { color: #F0F0F5 !important; }
#cmplz-cookiebanner-container .cmplz-category .cmplz-description { color: #6A6C7A !important; }
#cmplz-cookiebanner-container input:checked + .cmplz-label .cmplz-slider,
#cmplz-cookiebanner-container .cmplz-banner-checkbox:checked ~ .cmplz-slider { background: #BD1E2D !important; }
#cmplz-cookiebanner-container .cmplz-documents { margin-top: 12px !important; font-size: 12.5px !important; }

/* Floating "manage consent" re-open tab — dark, brand red on hover */
#cmplz-manage-consent .cmplz-manage-consent {
  background: #13141A !important; color: #9A9CAD !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}
#cmplz-manage-consent .cmplz-manage-consent:hover { color: #fff !important; border-color: var(--primary-red,#bd1e2d) !important; }

@media (max-width: 480px) {
  #cmplz-cookiebanner-container .cmplz-cookiebanner { bottom: 12px !important; padding: 16px !important; }
}

/* Product "Add to cart" disabled state — shown until a valid paid option/total
   is selected (e.g. a rank boost before start/target ranks are chosen). */
.pp-v2-cta--disabled, .pp-v2-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.25);
}
