/* ==========================================================================
   LOCO BROTHERS — design tokens
   ========================================================================== */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --border: #262626;

  --silver-hi: #f4f4f4;
  --silver-mid: #c4c4c4;
  --silver-low: #8a8a8a;

  --red-hi: #d63b3b;
  --red-mid: #c81e1e;
  --red-low: #6b0f0f;

  --text: #dcdcdc;
  --text-muted: #7a7a7a;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Alex Brush', cursive;
  --font-label: 'Pirata One', serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(200,30,30,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(200,30,30,0.08), transparent 55%);
  background-attachment: fixed;
}

/* subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--red-hi);
  outline-offset: 3px;
}

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

/* ==========================================================================
   Logo — wraps the real <img> logo (assets/logos/logo.png) in nav/hero
   ========================================================================== */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
  line-height: 1;
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  width: 100%;
  padding: 0 28px;
}
@media (min-width: 640px) { .header-row { padding: 0 44px; } }
@media (min-width: 1100px) { .header-row { padding: 0 64px; } }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 22px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--silver-hi); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-mid), var(--red-hi));
}

/* ==========================================================================
   Splash / click-to-enter gate
   ========================================================================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.splash-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.05) contrast(1.05);
}
.splash-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}
.splash-logo, .splash-enter { position: relative; z-index: 2; }
.splash.leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-logo { animation: pulse-glow 3.2s ease-in-out infinite; }
.splash-enter {
  margin-top: 42px;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(200,30,30,0.15)); }
  50% { filter: drop-shadow(0 0 26px rgba(200,30,30,0.35)); }
}
@keyframes blink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 140px 32px 120px;
  text-align: center;
  overflow: hidden;
}
.hero .eyebrow {
  color: var(--red-hi);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  margin-bottom: 18px;
}
.hero .tagline {
  margin-top: 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--red-hi) 0%, var(--silver-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .cta-row {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--red-hi), var(--red-mid));
  color: #fff;
  box-shadow: 0 6px 20px rgba(200,30,30,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(200,30,30,0.4); }
.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--silver-low); transform: translateY(-2px); }

.scroll-hint {
  margin-top: 90px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.scroll-hint span { display: block; margin-top: 6px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }

/* ==========================================================================
   Section dividers (brush-stroke, replaces <hr>)
   ========================================================================== */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 10px 0 30px;
}
.divider svg { flex: 1; height: 14px; color: var(--red-mid); opacity: 0.7; }
.divider .divider-label {
  font-family: var(--font-label);
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.section-head { text-align: center; margin: 90px 0 44px; }
.section-head h2 {
  font-family: var(--font-label);
  font-size: 2.6rem;
  margin: 0 0 8px;
  color: var(--silver-hi);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.section-head p {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
  margin: 0;
}

/* ==========================================================================
   Member grid + tilt cards
   ========================================================================== */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 90px;
}
@media (max-width: 860px) { .member-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .member-grid { grid-template-columns: 1fr; } }

.member-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.member-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}
.member-card:hover::after { animation: sheen 0.9s ease; }
@keyframes sheen { to { transform: translateX(120%); } }

.member-card.is-linked:hover {
  border-color: var(--red-mid);
  box-shadow: 0 14px 34px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,30,30,0.2);
}
.member-card.is-placeholder {
  opacity: 0.5;
  filter: grayscale(0.4);
  cursor: default;
}
.member-card.is-placeholder:hover { transform: none !important; }

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--silver-hi);
  background: radial-gradient(circle at 35% 30%, #3a3a3a, #101010 75%);
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}
.avatar.avatar-img { font-size: 0; }
.member-card-body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--silver-hi);
}
.member-card-body .tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--red-hi);
  border: 1px solid var(--red-low);
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.member-card-body .quote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.member-card-body .coming-soon {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* ==========================================================================
   Archive placeholder page
   ========================================================================== */
.archive-hero { padding: 90px 32px 60px; }
.archive-hero .eyebrow { color: var(--red-hi); font-size: 0.75rem; letter-spacing: 0.3em; }
.archive-hero h1 {
  font-family: var(--font-label);
  font-size: 3.2rem;
  margin: 12px 0 14px;
  color: var(--silver-hi);
}
.archive-hero p.sub { color: var(--text-muted); font-family: var(--font-display); font-style: italic; }
.archive-empty {
  margin-top: 30px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  max-width: 460px;
}

/* ==========================================================================
   Member profile page (e.g. /bruce)
   ========================================================================== */
.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
  filter: brightness(1.05) contrast(1.05);
  pointer-events: none;
}
.site-bg-scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,5,5,0.22), rgba(5,5,5,0.4));
}

/* Keep normal page content above the fixed background video/scrim. */
body > *:not(.site-bg-video):not(.site-bg-scrim):not(.splash) {
  position: relative;
  z-index: 2;
}

/* Header and overlays retain their intentionally higher stack levels. */
.site-header { z-index: 100; }
.profile-bg-note {
  position: fixed;
  bottom: 14px; right: 16px;
  z-index: 1;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(0,0,0,0.5);
  padding: 5px 9px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.profile-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 60px;
}
.cards-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 1400px;
  width: 100%;
}
@media (max-width: 900px) {
  .cards-row { flex-wrap: wrap; }
}

@keyframes card-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}
.card-enter {
  animation: card-enter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--enter-delay, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .card-enter { animation: none; }
}
.profile-card {
  width: 100%;
  max-width: 440px;
  flex: 1.1 1 360px;
  min-width: 0;
  background: rgba(15,15,15,0.42);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.35s ease;
}
.profile-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: radial-gradient(circle at 35% 30%, #2a2a2a, #0c0c0c 75%);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--silver-hi);
  position: relative;
}
.status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e0333d;
  border: 3px solid var(--bg);
  box-shadow: 0 0 8px rgba(224,51,61,0.6);
}
.profile-avatar-img {
  background-size: cover;
  background-position: center;
  font-size: 0;
}
.profile-card .badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--red-hi);
  border: 1px solid var(--red-low);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.profile-card h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 2.3rem;
  margin: 0 0 6px;
  color: var(--silver-hi);
}
.profile-card .handle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.profile-card .badge { margin-bottom: 20px; }
.profile-card .quote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 30px;
  position: relative;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.social-pill {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  background: rgba(18,18,18,0.62);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.social-pill svg { width: 21px; height: 21px; display: block; }
.social-pill:hover { border-color: rgba(255,255,255,0.24); transform: translateY(-3px); background: rgba(30,30,30,0.78); }
.social-pill.youtube { color: #ff0033; }
.social-pill.kick { color: #53fc18; }
.social-pill.github { color: #f0f0f0; }
.social-pill.facebook { color: #1877f2; }
.social-pill.instagram { color: #e4405f; }
.social-pill.tiktok { color: #ffffff; }
.social-pill.link { color: #bfc5cf; }

/* ==========================================================================
   Media card — featured content tiles (left column)
   ========================================================================== */
.media-card {
  width: 100%;
  max-width: 380px;
  flex: 1 1 340px;
  min-width: 0;
  background: rgba(15,15,15,0.42);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.35s ease;
  transition: transform 0.18s ease-out;
}
.media-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0a;
}
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.media-tile:hover img { transform: scale(1.06); }
.media-tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Now Playing card
   ========================================================================== */
.now-playing-card {
  width: 100%;
  max-width: 440px;
  flex: 1.1 1 360px;
  min-width: 0;
  background: rgba(12,12,12,0.42);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 34px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.35s ease;
}

.np-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.np-eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* animated equalizer icon — bars pulse continuously while "playing" */
.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.eq-bars span {
  width: 3px;
  background: var(--red-hi);
  border-radius: 1px;
  height: 4px;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}
.eq-bars.is-active span {
  opacity: 1;
  animation: eq-bounce 0.9s ease-in-out infinite;
}
.eq-bars.is-active span:nth-child(1) { animation-delay: 0s; }
.eq-bars.is-active span:nth-child(2) { animation-delay: 0.15s; }
.eq-bars.is-active span:nth-child(3) { animation-delay: 0.3s; }
.eq-bars.is-active span:nth-child(4) { animation-delay: 0.1s; }
@keyframes eq-bounce {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

.cover-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}
.cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6s ease;
}
/* subtle continuous "breathing" while a track is playing */
.cover-wrap.is-playing .cover-art {
  animation: cover-breathe 6s ease-in-out infinite;
}
@keyframes cover-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

.track-title {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--silver-hi);
  margin: 0 0 4px;
}
.track-artist {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

/* thin, non-interactive progress line — auto-fills as the track plays */
.progress-thin-track {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--surface-2);
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-thin-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-hi), var(--red-mid));
  transition: width 0.1s linear;
}

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

/* thick draggable scrubber, always-visible handle */
.seek-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red-mid) 0%, var(--red-mid) var(--progress, 0%), var(--surface-2) var(--progress, 0%), var(--surface-2) 100%);
  outline: none;
}
.seek-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--silver-hi);
  box-shadow: 0 0 0 4px rgba(200,30,30,0.3), 0 2px 6px rgba(0,0,0,0.5);
  cursor: pointer;
  margin-top: -5px;
}
.seek-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--silver-hi);
  box-shadow: 0 0 0 4px rgba(200,30,30,0.3), 0 2px 6px rgba(0,0,0,0.5);
  cursor: pointer;
}
.progress-row { margin-bottom: 18px; }

/* ---- audio player controls ---- */
.player {
  padding-top: 0;
}
.player-bars {
  width: 100%;
  height: 28px;
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
}
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.player-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--silver-hi);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.player-btn:hover { border-color: var(--red-mid); transform: translateY(-1px); }
.player-btn.is-playing { background: linear-gradient(180deg, var(--red-hi), var(--red-mid)); border-color: var(--red-mid); }
.player-btn svg { width: 18px; height: 18px; fill: currentColor; }

.volume-wrap { position: relative; display: flex; align-items: center; }
.volume-slider {
  width: 0;
  overflow: hidden;
  transition: width 0.25s ease, margin-left 0.25s ease;
  margin-left: 0;
}
.volume-wrap.open .volume-slider { width: 90px; margin-left: 10px; }
.volume-slider input[type="range"] {
  width: 90px;
  accent-color: var(--red-hi);
  background: transparent;
}

footer.site-footer {
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   Anti-inspect / "Access Denied" security overlay
   ========================================================================== */
.inspect-block {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(rgba(200,30,30,0.05) 1px, transparent 1px),
    rgba(5,3,3,0.92);
  background-size: 22px 22px, auto;
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.inspect-block.is-visible { opacity: 1; visibility: visible; }

.inspect-card {
  position: relative;
  width: min(92vw, 520px);
  padding: 44px 40px 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(40,6,6,0.55), rgba(10,4,4,0.8));
  border: 1px solid rgba(200,30,30,0.45);
}
.inspect-card::before,
.inspect-card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--silver-hi);
  border-style: solid;
}
.inspect-card::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.inspect-card::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.inspect-logo { max-width: 220px; margin: 0 auto 22px; opacity: 0.95; }
.inspect-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.inspect-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--red-hi);
  text-shadow: 0 0 24px rgba(200,30,30,0.45);
  margin: 0 0 18px;
}
.inspect-sub {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0 0 22px;
}
.inspect-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,30,30,0.6), transparent);
  margin-bottom: 18px;
}
.inspect-footer {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  color: var(--red-hi);
  opacity: 0.85;
}

/* ==========================================================================
   Logo image (real transparent PNG — drop your file at assets/logos/logo.png)
   ========================================================================== */
.logo-img { height: 46px; width: auto; display: block; }
.logo-img-hero { width: min(90vw, 560px); height: auto; margin: 0 auto; display: block; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6)); }

/* ==========================================================================
   Holographic interactive cards — media / profile / now-playing
   ========================================================================== */
.holo-card { cursor: default; }
.holo-card:hover,
.holo-card.is-tilting {
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 50px rgba(200,30,30,0.22);
}

.holo-sheen {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  background: conic-gradient(
    from 180deg at var(--holo-x, 50%) var(--holo-y, 50%),
    rgba(255, 60, 180, 0.14),
    rgba(80, 200, 255, 0.14),
    rgba(255, 230, 80, 0.14),
    rgba(170, 90, 255, 0.14),
    rgba(255, 60, 180, 0.14)
  );
  mix-blend-mode: color-dodge;
  filter: blur(24px) saturate(1.4);
  transition: opacity 0.35s ease;
}
.holo-card:hover .holo-sheen,
.holo-card.is-tilting .holo-sheen {
  opacity: 0.055;
}

/* fine diagonal foil lines for extra "holographic card" texture */
.holo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.045) 0px,
    rgba(255,255,255,0.045) 1px,
    transparent 1px,
    transparent 6px
  );
  mix-blend-mode: overlay;
  transition: opacity 0.35s ease;
}
.holo-card:hover::after,
.holo-card.is-tilting::after {
  opacity: 0.07;
}

@media (prefers-reduced-motion: reduce) {
  .holo-sheen, .holo-card::after { display: none; }
}


/* ==========================================================================\n   LOCO aesthetic refinement — smoke / chrome / crimson\n   ========================================================================== */
:root {
  --bg: #090a0a;
  --surface: rgba(15, 16, 17, 0.54);
  --surface-2: rgba(25, 26, 27, 0.62);
  --border: rgba(229, 232, 235, 0.13);
  --silver-hi: #eceeef;
  --silver-mid: #b7babd;
  --silver-low: #777b7f;
  --red-hi: #b92323;
  --red-mid: #981818;
  --red-low: #5e0d0d;
  --text: #e2e4e5;
  --text-muted: #9b9ea1;
}

body {
  background-image: none;
}

.site-bg-scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 48%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(4,5,5,0.16), rgba(4,5,5,0.34));
}

.site-header,
.hero,
.container,
.archive-hero,
.profile-wrap,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  background: rgba(8, 9, 9, 0.86);
  border-bottom-color: rgba(225, 228, 230, 0.08);
  backdrop-filter: blur(14px) saturate(0.8);
}

.nav-links a.active::after {
  background: var(--red-hi);
  box-shadow: 0 0 12px rgba(152,24,24,0.28);
}

/* Splash uses the supplied spinning chrome LOCO mark only. */
.splash-scrim {
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0.12), rgba(0,0,0,0.62) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.26), rgba(0,0,0,0.58));
}
.splash-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.splash-eyebrow {
  margin-bottom: 8px;
  color: var(--red-hi);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.48em;
}
.splash-logo {
  width: 100%;
  animation: pulse-glow 3.6s ease-in-out infinite;
}
.splash-logo-img {
  width: min(78vw, 430px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.62));
}
.splash-tagline {
  margin-top: -12px;
  color: #d9dbdc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.38em;
}
.splash-enter {
  margin-top: 34px;
  min-width: 282px;
  padding: 15px 28px;
  border: 1px solid rgba(185,35,35,0.55);
  border-radius: 8px;
  color: #e5e6e7;
  background: rgba(6,7,7,0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 34px rgba(0,0,0,0.24);
  backdrop-filter: blur(8px);
}
.splash-enter::before,
.splash-enter::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--red-hi);
  box-shadow: 0 0 10px rgba(185,35,35,0.75);
}
.splash-enter::before { top: -1px; }
.splash-enter::after { bottom: -1px; }

/* Home: keep layout recognizable, just tighten hierarchy and integration. */
.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 82px;
  padding-bottom: 82px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(72vw, 980px);
  height: 66%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.38), rgba(0,0,0,0.08) 56%, transparent 74%);
  filter: blur(8px);
}
.hero .eyebrow { color: var(--red-hi); margin-bottom: 10px; }
.hero .logo-img-hero { width: min(82vw, 520px); }
.hero .tagline {
  margin-top: 24px;
  font-size: 0.94rem;
  color: #e2e3e4;
  background: none;
  -webkit-text-fill-color: currentColor;
  letter-spacing: 0.18em;
  opacity: 0.88;
}
.btn { border-radius: 6px; }
.btn-primary {
  background: linear-gradient(180deg, #ad2222, #821414);
  box-shadow: 0 8px 24px rgba(94,13,13,0.28);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(94,13,13,0.4); }
.btn-secondary {
  background: rgba(10,11,11,0.36);
  border-color: rgba(230,232,234,0.2);
  backdrop-filter: blur(8px);
}
.scroll-hint { opacity: 0.55; margin-top: 72px; }

/* Family cards blend into the background rather than sitting as black slabs. */
.section-head p { color: rgba(220,222,224,0.58); }
.member-card,
.archive-empty,
.profile-card,
.media-card,
.now-playing-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.025), rgba(255,255,255,0) 45%),
    rgba(12,13,13,0.50);
  border: 1px solid rgba(226,229,231,0.14);
  backdrop-filter: blur(14px) saturate(0.85);
  -webkit-backdrop-filter: blur(14px) saturate(0.85);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 18px 44px rgba(0,0,0,0.20);
}
.member-card { border-radius: 8px; }
.member-card.is-placeholder {
  opacity: 0.72;
  filter: grayscale(0.35);
}
.member-card.is-linked:hover,
.member-card:hover {
  border-color: rgba(201,204,207,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 22px 46px rgba(0,0,0,0.32),
    0 0 22px rgba(152,24,24,0.08);
}
.avatar {
  border-radius: 15px;
  border-color: rgba(226,229,231,0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(10,10,10,0.54));
}
.member-card-body .coming-soon,
.member-card-body .quote { color: rgba(212,214,216,0.58); }
.divider svg {
  color: #a8abad;
  opacity: 0.34;
  filter: drop-shadow(0 0 4px rgba(94,13,13,0.18));
}
.divider .divider-label { color: #c6c8ca; }

/* Archive: centered, transparent glass, minimal icon. */
.archive-hero {
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 120px;
}
.archive-hero p.sub { color: rgba(222,224,226,0.65); }
.archive-empty {
  position: relative;
  width: min(100%, 560px);
  min-height: 150px;
  margin-top: 28px;
  padding: 34px 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  color: #c8cacc;
  text-align: center;
  overflow: hidden;
}
.archive-icon {
  width: 30px;
  height: 30px;
  color: #8c9093;
  opacity: 0.8;
}
.archive-icon svg { width: 100%; height: 100%; }

/* Holographic foil: visible but restrained, and strictly card-only. */
.holo-card {
  --holo-x: 50%;
  --holo-y: 50%;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
  transition: transform 0.16s ease-out, border-color 0.25s ease, box-shadow 0.28s ease;
}
.holo-card:hover,
.holo-card.is-tilting {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 70px rgba(0,0,0,0.40),
    0 0 28px rgba(152,24,24,0.10);
}
.holo-sheen {
  inset: -18%;
  opacity: 0;
  background:
    radial-gradient(circle at var(--holo-x) var(--holo-y), rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.045) 18%, transparent 38%),
    conic-gradient(
      from 210deg at var(--holo-x) var(--holo-y),
      rgba(245, 95, 125, 0.20),
      rgba(96, 194, 228, 0.18),
      rgba(226, 221, 150, 0.15),
      rgba(163, 126, 218, 0.18),
      rgba(245, 95, 125, 0.20)
    );
  mix-blend-mode: color-dodge;
  filter: blur(18px) saturate(1.05);
  transition: opacity 0.22s ease;
}
.holo-card:hover .holo-sheen,
.holo-card.is-tilting .holo-sheen { opacity: 0.18; }
.holo-card::after {
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 22%, rgba(255,255,255,0.07) 42%, rgba(255,255,255,0.015) 54%, transparent 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}
.holo-card:hover::after,
.holo-card.is-tilting::after { opacity: 0.16; }

/* Profile: preserve rounded-square identity and make the glass match Family. */
.profile-avatar { border-radius: 24px; }
.social-pill { border-radius: 11px; }

footer.site-footer {
  background: rgba(7,8,8,0.12);
  border-top-color: rgba(226,229,231,0.08);
  color: rgba(205,208,210,0.45);
}

@media (max-width: 640px) {
  .splash-logo-img { width: min(86vw, 360px); }
  .splash-tagline { font-size: 0.58rem; letter-spacing: 0.24em; }
  .splash-enter { min-width: 240px; }
  .hero { min-height: calc(100vh - 76px); padding: 66px 20px; }
  .archive-hero { align-items: stretch; padding-top: 60px; }
}


/* ==========================================================================\n   Profile depth composition — inward-facing holographic cards\n   ========================================================================== */
.profile-wrap .cards-row {
  perspective: 1500px;
  perspective-origin: 50% 46%;
  align-items: center;
  gap: 30px;
}

.profile-wrap .holo-card {
  --base-tilt-y: 0deg;

  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  --card-scale: 1;

  transform:
    perspective(1050px)
    rotateX(var(--tilt-x))
    rotateY(calc(var(--base-tilt-y) + var(--tilt-y)))
    translateZ(var(--lift))
    scale(var(--card-scale));

  transform-style: preserve-3d;
  transform-origin: center center;
  isolation: isolate;

  transition:
    transform 0.12s ease-out,
    box-shadow 0.2s ease;
}

/* The side cards angle toward the center:  /  |  \\ */
.profile-wrap .profile-wing-left {
  --base-tilt-y: 7deg;
  transform-origin: right center;
}
.profile-wrap .profile-center-card {
  --base-tilt-y: 0deg;
}
.profile-wrap .profile-wing-right {
  --base-tilt-y: -7deg;
  transform-origin: left center;
}

/* Real depth: card content sits slightly above the glass/foil plane. */
.profile-wrap .holo-card > *:not(.holo-sheen) {
  position: relative;
  z-index: 3;
  transform: translateZ(16px);
}

/* Keep a faint foil presence even before hover, then reveal it under cursor. */
.profile-wrap .holo-card .holo-sheen {
  opacity: 0.055;
}
.profile-wrap .holo-card:hover .holo-sheen,
.profile-wrap .holo-card.is-tilting .holo-sheen {
  opacity: 0.23;
}
.profile-wrap .holo-card::after {
  opacity: 0.045;
}
.profile-wrap .holo-card:hover::after,
.profile-wrap .holo-card.is-tilting::after {
  opacity: 0.18;
}

/* Member backgrounds are intentionally raw MP4 slots. Replace only the file. */
.profile-wrap ~ .profile-bg-note,
.profile-bg-note {
  opacity: 0.48;
}

@media (max-width: 900px) {
  .profile-wrap .cards-row { gap: 20px; }
  .profile-wrap .holo-card,
  .profile-wrap .profile-wing-left,
  .profile-wrap .profile-wing-right,
  .profile-wrap .profile-center-card {
    --base-tilt-y: 0deg !important;
    transform: perspective(1050px) rotateY(0deg);
    transform-origin: center center;
  }
}

/* ==========================================================================\n   V6 profile polish — stronger holographic glass + centered audio movement\n   ========================================================================== */
.profile-wrap .holo-card {
  border-color: rgba(232,235,238,0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), transparent 34%),
    rgba(12,10,10,0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 90px rgba(0,0,0,0.48);
}

/* Keep a visible pearlescent foil presence at rest. */
.profile-wrap .holo-card .holo-sheen {
  inset: -25%;
  opacity: 0.16;
  background:
    radial-gradient(circle at var(--holo-x) var(--holo-y), rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.08) 14%, transparent 34%),
    conic-gradient(
      from 215deg at var(--holo-x) var(--holo-y),
      rgba(255,84,145,0.34),
      rgba(90,210,255,0.32),
      rgba(255,225,110,0.27),
      rgba(170,105,255,0.31),
      rgba(92,225,190,0.24),
      rgba(255,84,145,0.34)
    );
  mix-blend-mode: screen;
  filter: blur(20px) saturate(1.45) contrast(1.08);
}
.profile-wrap .holo-card:hover .holo-sheen,
.profile-wrap .holo-card.is-tilting .holo-sheen { opacity: 0.42; }
.profile-wrap .holo-card::after {
  opacity: 0.10;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255,255,255,0.14) 39%, rgba(120,210,255,0.08) 47%, rgba(255,110,170,0.08) 55%, transparent 72%),
    repeating-linear-gradient(118deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 8px);
}
.profile-wrap .holo-card:hover::after,
.profile-wrap .holo-card.is-tilting::after { opacity: 0.30; }
.profile-wrap .holo-card:hover,
.profile-wrap .holo-card.is-tilting {
  border-color: rgba(238,241,244,0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 34px 95px rgba(0,0,0,0.50),
    0 0 34px rgba(176,32,38,0.16),
    0 0 22px rgba(130,190,230,0.07);
}

/* Shared member video should remain clearly visible behind the cards. */
body:has(.profile-wrap) .site-bg-video {
  filter: brightness(0.80) contrast(1.10) saturate(1.10);
}
body:has(.profile-wrap) .site-bg-scrim {
  background:
    radial-gradient(circle at 50% 48%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.20) 52%, rgba(0,0,0,0.38) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.10), rgba(5,5,5,0.22));
}

/* Mirrored spectrum: visual energy begins at the center and moves outward. */
.player-bars {
  height: 34px;
  margin: 4px 0 8px;
}

/* Center-origin volume indicator. The native slider stays interactive above it. */
.volume-wrap.open .volume-slider { width: 122px; margin-left: 10px; }
.centered-volume {
  position: relative;
  width: 0;
  height: 24px;
  overflow: hidden;
}
.volume-wrap.open .centered-volume { width: 122px; }
.centered-volume::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.center-volume-fill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 12px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6b0f0f, #d63b3b 50%, #6b0f0f);
  transform: translate(-50%, -50%) scaleX(var(--volume-level, 0.6));
  transform-origin: center;
  box-shadow: 0 0 10px rgba(185,35,35,0.22);
  pointer-events: none;
}
.centered-volume input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.001;
  cursor: pointer;
}


/* ===== Roster + Lanyard integration ===== */
.site-bg-image{position:fixed;inset:0;width:100%;height:100%;object-fit:cover;z-index:-3;pointer-events:none;filter:brightness(.8) contrast(1.08) saturate(1.05)}
.avatar-discord{position:relative;background-position:center;background-size:cover;background-repeat:no-repeat;overflow:visible}
.avatar-discord.has-avatar>span{opacity:0}
.family-status{position:absolute;right:5px;bottom:5px;width:12px;height:12px;border-radius:50%;border:2px solid rgba(10,10,10,.95);box-shadow:0 0 8px rgba(0,0,0,.5)}
.status-online{background:#23a55a!important}.status-idle{background:#f0b232!important}.status-dnd{background:#f23f43!important}.status-offline{background:#80848e!important}
.profile-avatar.discord-avatar-fallback{background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(12,12,12,.7));background-position:center;background-size:cover;background-repeat:no-repeat}
.profile-avatar.has-avatar{background-color:#111}
.member-media-blank .media-tile{background:linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,0)),rgba(8,8,10,.12);min-height:48%;overflow:hidden}
.member-media-blank .media-tile img{width:100%;height:100%;object-fit:cover}
.member-media-blank .media-tile:not(.has-media)::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,rgba(255,255,255,.025),transparent 60%)}
.social-pill svg{width:20px;height:20px;display:block}.social-pill.youtube{color:#ff2e2e}.social-pill.tiktok{color:#f5f5f5}.social-pill.instagram{color:#e16cab}.social-pill.twitch{color:#a970ff}.social-pill.kick{color:#53fc18}.social-pill.discord{color:#7289da}
#member-bg-host>.site-bg-video,#member-bg-host>.site-bg-image{z-index:-4}
#creator-badge[hidden],#cover-art[hidden],#media-1[hidden],#media-2[hidden]{display:none!important}
.player-btn:disabled{opacity:.35;cursor:not-allowed}

/* Discord avatar decoration supplied by Lanyard */
.profile-avatar{position:relative}
.avatar-decoration{position:absolute;inset:-10%;width:120%;height:120%;object-fit:contain;pointer-events:none;z-index:3}
.status-dot{z-index:4}


/* === LOCO restored holographic 3D profile interaction === */
.holo-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

/* Glass/foil layer follows the cursor. */
.holo-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  pointer-events: none;
  opacity: .30;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at var(--mx,35%) var(--my,25%),
      rgba(255,255,255,.42) 0 2%,
      rgba(255,209,92,.22) 7%,
      rgba(73,220,255,.22) 15%,
      rgba(183,85,255,.19) 23%,
      rgba(255,61,118,.17) 31%,
      transparent 47%),
    linear-gradient(115deg,
      transparent 12%,
      rgba(82,226,255,.12) 27%,
      rgba(255,221,103,.14) 39%,
      rgba(221,102,255,.13) 52%,
      rgba(255,77,105,.12) 64%,
      transparent 79%);
  filter: blur(2px) saturate(1.3);
  transform: translate3d(var(--hx,0),var(--hy,0),0) rotate(-7deg);
  transition: opacity .22s ease, transform .12s ease-out;
}
.holo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255,255,255,.15), transparent 16% 82%, rgba(255,255,255,.12)),
    radial-gradient(ellipse at 50% 108%, rgba(220,27,27,.22), transparent 38%);
  opacity: .40;
}
.holo-card > * { position: relative; z-index: 1; }
.holo-card .holo-sheen { z-index: 2; }
.holo-card:hover::before,
.holo-card.is-tilting::before { opacity: .54; }
.holo-card:hover .holo-sheen,
.holo-card.is-tilting .holo-sheen { opacity: .12; }
.holo-card:hover,
.holo-card.is-tilting {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(255,45,45,.09),
    0 38px 95px rgba(0,0,0,.62),
    0 0 45px rgba(180,24,24,.18);
}

/* Keep the member-page / | \/ composition even before hover. */
.profile-wing-left { transform-origin: right center; }
.profile-center-card { transform-origin: center center; }
.profile-wing-right { transform-origin: left center; }
.cards-row { perspective: 1400px; }

@media (prefers-reduced-motion: reduce) {
  .holo-card::before, .holo-card::after, .holo-sheen { display:none !important; }
}

/* === LOCO 3D + Discord decoration corrections (2026-08-28) === */
/* Make the profile cards visibly dimensional: foreground content lives above
   the foil plane and shifts slightly opposite the cursor. */
.profile-wrap .holo-card > *:not(.holo-sheen) {
  transform: translate3d(var(--depth-x, 0px), var(--depth-y, 0px), 22px);
  transform-style: preserve-3d;
  transition: transform .12s ease-out;
}
.profile-wrap .holo-card .holo-sheen {
  transform: translate3d(var(--hx,0), var(--hy,0), 8px);
}
.profile-wrap .cards-row {
  perspective: 1200px !important;
  transform-style: preserve-3d;
}

/* Discord avatar decorations are authored with transparent overscan. Render
   them outside the rounded avatar instead of squeezing them into its box. */
.profile-avatar {
  overflow: visible !important;
  isolation: visible;
}
.avatar-decoration {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 128% !important;
  height: 128% !important;
  max-width: none !important;
  transform: translate(-50%, -50%) translateZ(30px) !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none !important;
  user-select: none;
  z-index: 8 !important;
  filter: none !important;
}
.profile-avatar .status-dot {
  z-index: 10 !important;
  transform: translateZ(34px);
}

/* Same Discord decoration treatment on the Family roster cards. */
.avatar-discord { overflow: visible !important; position: relative; }
.family-avatar-decoration {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128%;
  height: 128%;
  max-width: none;
  transform: translate(-50%, -50%) translateZ(18px);
  object-fit: contain;
  pointer-events: none;
  z-index: 5;
}
.avatar-discord .family-status { z-index: 7; }

@media (max-width: 900px) {
  .profile-wrap .holo-card > *:not(.holo-sheen) {
    transform: translate3d(0,0,12px);
  }
}

/* Final single-image left profile card */
.profile-wrap .media-card .media-tile-single {
  flex: 1 1 auto;
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
  border-radius: 10px;
  background: rgba(8,8,8,.16);
}
.profile-wrap .media-card .media-tile-single img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.profile-wrap .media-card.member-media-blank .media-tile-single {
  background: transparent;
  box-shadow: none;
}
@media (max-width: 900px) {
  .profile-wrap .media-card .media-tile-single,
  .profile-wrap .media-card .media-tile-single img { min-height: 360px; }
}


/* ==========================================================================\n   LOCO checkpoint reliability additions\n   ========================================================================== */
.discord-activity {
  margin: -7px 0 10px;
  min-height: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: rgba(225, 228, 230, 0.62);
  text-align: center;
  line-height: 1.35;
}
.discord-activity[hidden] { display: none !important; }

.member-section-subtitle {
  margin: -12px auto 30px;
  text-align: center;
  color: rgba(220, 222, 224, 0.58);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
}

.media-tile-single .member-left-media,
.media-tile-single > video,
.media-tile-single > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
