/* LWC Shared Chrome — single source of truth for every leewyattcorp.com page.
   Load this ONE file and lwc-chrome.js on every page. Only the body differs. */

/* ── Site-wide foundation (copied verbatim from homepage) ── */
:root {
  --bg: #050508;
  --bg2: #0a0a10;
  --text: #ffffff;
  --text-muted: #8888a0;
  --text-dim: #555566;
  --accent: #6366f1;
  --accent2: #8b5cf6;
  --accent3: #ec4899;
  --safe-top: env(safe-area-inset-top);
}
@supports (padding-top: constant(safe-area-inset-top)) {
  :root { --safe-top: constant(safe-area-inset-top); }
}
:root {
  --accent-glow: rgba(99, 102, 241, 0.4);
  --pink-glow: rgba(236, 72, 153, 0.28);
  --violet-glow: rgba(139, 92, 246, 0.32);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --green: #22c55e;
  --music-green: #1DB954;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); min-height: 100%; }
html::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--safe-top);
  z-index: 2147483647;
  pointer-events: none;
  background: var(--bg);
}
html::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 98;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(236, 72, 153, 0.08), transparent 15rem),
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(99, 102, 241, 0.07), transparent 22rem);
  mix-blend-mode: screen;
  opacity: 0.48;
  transition: opacity 0.3s ease;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
  min-height: 100vh;
  display: flex !important;
  flex-direction: column !important;
}
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
  pointer-events: none;
}
main, .main-content { flex: 1; }

/* ── Header: no visible border line ── */
header {
  border-bottom-color: transparent !important;
}
header::after {
  display: none !important;
}

/* ── Base header/nav styles ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: calc(20px + var(--safe-top, env(safe-area-inset-top, 0px))) 0 20px;
  background: #050508;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -80px 0 80px #050508;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo span {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav#primaryNav { display: flex; gap: 32px; }
nav#primaryNav a { color: #9aa0b5; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
nav#primaryNav a:hover { color: #fff; }
nav#primaryNav a[href*="affiliates"] { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 20px; margin-left: -12px; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); color: #fff; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.login-cta {
  min-height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(99,102,241,0.34), rgba(236,72,153,0.24));
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.login-cta.profile-avatar {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  font-size: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(99,102,241,0.72), rgba(236,72,153,0.52));
  overflow: hidden;
}
.login-cta.profile-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; border-radius: 50%;
}
#accountAction { position: relative; overflow: visible; }
.account-badge {
  position: absolute; top: -7px; right: -7px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #ec4899);
  color: #fff; font: 800 11px/1 Inter, sans-serif;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.45);
  border: 2px solid #050508;
  pointer-events: none;
}
.account-badge.show { display: inline-flex; }
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  nav#primaryNav {
    position: absolute; top: calc(100% - 8px); left: 16px; right: 16px;
    display: none; flex-direction: column; gap: 0;
    padding: 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
    background: rgba(5,5,8,0.96); box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  }
  body.nav-open nav#primaryNav { display: flex; }
  nav#primaryNav a { padding: 12px 10px; }
  nav#primaryNav a[href*="affiliates"] { border-left: 0; padding-left: 10px; margin-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .header-inner { padding-left: 16px; padding-right: 16px; }
}
body.nav-open header::after { display: none; }

/* ── Footer ── */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #9aa0b5;
  font-size: 13px;
  margin-top: auto;
}
nav.lwc-foot-nav {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}
nav.lwc-foot-nav a[href*="affiliates"] {
  border-left: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* ── Misc shared ── */
.lwc-login.profile-avatar { height: 40px; overflow: hidden; }
.lwc-login.profile-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; border-radius: 50%;
}

/* ── Back-to-top button ── */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(10,10,16,0.78);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.32);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover {
  background: linear-gradient(135deg, rgba(99,102,241,0.9), rgba(236,72,153,0.85));
  transform: translateY(-3px) scale(1.03);
}
.back-to-top svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

/* Kevin sig — subtle footer line on every chrome-injected page */
.lwc-kevin-sig {
  margin: 8px 0 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
  user-select: none;
  text-align: center;
}
