/* =========================================================
   RESET
========================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --orange: #ff2d2d;
  --orange-dark: #b30000;
  --white: #fff;
  --muted: #b3b3b3;
  --border: rgba(255, 255, 255, .1);
}

html { scroll-behavior: smooth; }

#home,
#about,
#members,
#archive,
#videos {
  scroll-margin-top: 84px;
}

body {
  background: transparent;
  color: var(--white);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  transition: opacity .2s ease, transform .2s ease;
}
.logo:hover { opacity: .85; transform: translateY(-1px); }

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 6px; }

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.nav-link:hover { color: var(--orange); background: rgba(255, 45, 45, .08); transform: translateY(-1px); }
.nav-link.active { color: var(--orange); background: rgba(255, 45, 45, .10); }

/* AFFILIATES DROPDOWN */
.nav-dropdown { position: relative; }

/* Invisible bridge to hold hover while moving to dropdown */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 10px;
}

.dropdown-arrow { font-size: 11px; color: var(--orange); transition: transform .25s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.affiliate-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 210px;
  padding: 8px;
  background: #111;
  border: 1px solid rgba(255, 45, 45, .25);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .65), 0 0 30px rgba(255, 45, 45, .10);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(.96);
  transform-origin: top center;
  transition: opacity .18s ease, transform .28s cubic-bezier(.34, 1.56, .64, 1), visibility .18s ease;
}

.nav-dropdown:hover .affiliate-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.affiliate-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #ddd;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.affiliate-link:hover { color: var(--orange); background: rgba(255, 45, 45, .09); transform: translateX(2px); }

.affiliate-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--orange);
  background: rgba(255, 45, 45, .10);
  font-size: 11px;
}

.affiliate-divider { height: 1px; background: rgba(255, 255, 255, .10); margin: 5px 0; }
.affiliate-cta { color: var(--orange); font-weight: 700; }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 40px;
  text-align: center;
  overflow: hidden;
}


.dot { position: absolute; border-radius: 50%; background: var(--orange-dark); opacity: .6; }
.dot-left { width: 10px; height: 10px; top: 220px; left: 8%; }

.ring { position: absolute; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%; }
.ring-right { top: 150px; right: 6%; }

.hero-inner { position: relative; max-width: 800px; margin: auto; z-index: 1; }

.badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 45, 45, .4);
  background: rgba(255, 45, 45, .08);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 28px;
}

.headline { font-size: 56px; line-height: 1.15; font-weight: 800; letter-spacing: -.5px; margin-bottom: 24px; }
.accent { color: var(--orange); }

.subtext { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 620px; margin: 0 auto 36px; }

.cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--orange); color: #0d0d0d; }
.btn-secondary { background: transparent; border: 1px solid var(--orange); color: var(--orange); }

/* =========================================================
   TEAM
   (spacing loosened up so cards aren't packed dikit-dikit —
   fewer columns, bigger gaps, matches the more breathable
   reference layout)
========================================================= */
.pc-07 {
  width: 100%;
  display: block;
  margin-top: 90px;
  padding: 60px 20px 80px;
  background: transparent;
  color: #eafff7;
}

.pc-07__inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-07__head {
  text-align: center;
  margin-bottom: 32px;
}

.pc-07__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.pc-07__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
}

.pc-07__divider {
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

/* pc-07__eyebrow stays here for the Members header label */

.pc-07__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1050px;
  align-items: start;
  perspective: 1000px;
}

.pc-07__chiprow {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1050px;
  margin-bottom: 56px;
}

.pc-07__chiprow::before,
.pc-07__chiprow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14));
}

.pc-07__chiprow::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .14), transparent);
}

.pc-07__chip {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .03);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 0 18px rgba(255, 255, 255, .06);
}

.pc-07__card {
  position: relative;
  min-height: 225px;
  padding: 32px 12px 58px;
  text-align: center;
  background: linear-gradient(160deg, #1c0d0d, #120808);
  border: 1px solid rgba(255, 45, 45, .25);
  border-radius: 20px;
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, .7);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), filter .4s, opacity .4s, box-shadow .4s;
  overflow: visible;
  z-index: 1;
}

.pc-07__card.is-live {
  transition: transform .05s linear, filter .4s, opacity .4s, box-shadow .4s;
}

.pc-07__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: 20px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .18), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.pc-07__card.is-live::after { opacity: 1; }

.pc-07__grid:hover .pc-07__card { opacity: .5; filter: saturate(.6) brightness(.8); }

.pc-07__grid .pc-07__card:hover {
  opacity: 1;
  filter: none;
  box-shadow: 0 26px 50px -18px rgba(255, 45, 45, .4);
  border-color: #ff2d2d;
  z-index: 100;
}

/* PROFILE IMAGE */
.pc-07__pfp {
  width: 58px; height: 58px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #ff2d2d, #b30000);
  border: 2px solid rgba(255, 45, 45, .35);
  box-shadow: 0 0 20px rgba(255, 45, 45, .12);
  transition: transform .4s ease;
}
.pc-07__card:hover .pc-07__pfp { transform: scale(1.06); }

.pc-07__card h3 { font-size: 1rem; font-weight: 800; color: #fff; }
.pc-07__handle { font-size: .76rem; color: #ff9999; margin-top: 4px; }

/* TEAM BADGES */
.pc-07__badges {
  position: absolute;
  bottom: 12px; left: 8px; right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  z-index: 5;
}

.pc-07__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 23px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #f2f2f2;
  max-width: 100%;
  flex-shrink: 1;
}

.pc-07__badge--generation {
  color: #e5e5e5;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  flex: 1;
}

.pc-07__badge--gold {
  color: #ffbf3f;
  background: rgba(255, 177, 0, .08);
  border-color: rgba(255, 177, 0, .45);
  box-shadow: 0 0 12px rgba(255, 177, 0, .08);
  flex: 0 0 auto;
}

/* EXPANDED PROFILE */
.pc-07__card .pc-09 {
  position: absolute;
  left: calc(100% + 16px);
  right: auto;
  top: 50%;
  width: 320px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  transform: translateY(-50%) translateX(-20px) scale(.96);
  transform-origin: left center;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.pc-07__card:hover .pc-09 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0) scale(1);
}

/* PC-09 PROFILE */
.pc-09 { font-family: "Segoe UI", system-ui, sans-serif; color: #f2f3f5; text-align: left; }

.pc-09__card {
  position: relative;
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #111214;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 25px 60px -18px rgba(0, 0, 0, .95), 0 0 30px rgba(255, 45, 45, .12);
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .4s;
}

.pc-09__card.is-live {
  transition: transform .06s linear, box-shadow .4s;
}

.pc-09__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .16), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.pc-09__card.is-live::after {
  opacity: 1;
}

.pc-09__card.is-live {
  box-shadow: 0 30px 70px -20px rgba(255, 45, 45, .35), 0 0 30px rgba(255, 45, 45, .12);
}

.pc-09__banner {
  width: 100%; height: 96px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  animation: none !important;
  transform: none !important;
  will-change: auto;
}

.pc-09__avatar {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: -40px 0 0 20px;
  display: grid;
  place-items: center;
  background: #080808;
  border: 6px solid #111214;
  overflow: visible;
}

.pc-09__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

.pc-09__presence {
  position: absolute;
  bottom: 0; right: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #57f287;
  border: 4px solid #111214;
}

.pc-09__body { padding: 14px 20px 22px; }

.pc-09__namerow { display: flex; align-items: center; justify-content: space-between; }
.pc-09__namerow h3 { font-size: 1.25rem; font-weight: 800; color: #fff; }

.pc-09__badges i { font-style: normal; font-size: .8rem; margin-left: 5px; color: #ffbf3f; opacity: .9; }

.pc-09__handle { color: #b5bac1; font-size: .85rem; margin-top: 2px; }

.pc-09__panel { background: #1e1f22; border-radius: 10px; padding: 12px; margin-top: 14px; }

.pc-09__k {
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #949ba4;
  display: block;
  margin-bottom: 5px;
}

.pc-09__panel p { font-size: .85rem; color: #dbdee1; }

.pc-09__roles { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }

.pc-09__roles span {
  font-size: .72rem;
  padding: 5px 10px;
  border-radius: 7px;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 40%, transparent);
}

.pc-09__msg {
  display: block;          /* ⬅ idagdag lang ito */
  text-align: center;      /* ⬅ para naka-center pa rin ang text */
  text-decoration: none;   /* ⬅ tanggalin yung underline ng link */
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 700;
  font-size: .86rem;
  color: #fff;
  background: #ff2d2d;
  transition: background .25s, transform .2s;
}
.pc-09__msg:hover { background: #b30000; }
.pc-09__msg:active { transform: scale(.98); }

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {
  .nav-inner { padding: 14px 12px; }
  .logo { font-size: 18px; }
  .nav-links { gap: 2px; }
  .nav-link { padding: 9px 9px; font-size: 11px; }
  .dropdown-arrow { font-size: 9px; }

  .affiliate-panel {
    min-width: 190px;
    left: auto; right: 0;
    transform: translateY(-8px) scale(.96);
    transform-origin: top right;
  }
  .nav-dropdown:hover .affiliate-panel { transform: translateY(0) scale(1); }

  .affiliate-link { font-size: 12px; padding: 9px 10px; }

  .hero { padding: 70px 20px 30px; }
  .headline { font-size: 40px; }
  .subtext { font-size: 15px; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .pc-07__grid { grid-template-columns: repeat(2, minmax(155px, 1fr)); gap: 12px; max-width: 500px; }
  .pc-07__card { min-height: 220px; padding: 30px 8px 55px; }
  .pc-07__badges { bottom: 9px; left: 7px; right: 7px; gap: 4px; }
  .pc-07__badge { font-size: 8px; padding: 4px 6px; }

  .pc-07__card .pc-09 { left: calc(100% + 10px); width: 300px; }
  .pc-09__card { width: 300px; }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 420px) {
  .nav-inner { padding: 12px 8px; }
  .logo { font-size: 16px; }
  .nav-links { gap: 0; }
  .nav-link { padding: 8px 6px; font-size: 9px; }
  .dropdown-arrow { font-size: 8px; }
  .affiliate-panel { min-width: 180px; }
  .headline { font-size: 34px; }

  .pc-07__grid { grid-template-columns: repeat(2, minmax(145px, 1fr)); gap: 10px; }
  .pc-07__card { min-height: 215px; padding: 28px 6px 52px; }
  .pc-07__badges { left: 6px; right: 6px; gap: 3px; }
  .pc-07__badge { font-size: 7px; padding: 4px 5px; }
  .pc-07__pfp { width: 52px; height: 52px; }

  .pc-07__card .pc-09 { left: calc(100% + 8px); width: 280px; }
  .pc-09__card { width: 280px; }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .pc-07__card { transition: opacity .3s, filter .3s; transform: none !important; }
  .pc-07__card::after { display: none; }
  .pc-09__banner { animation: none !important; }
  .affiliate-panel { transition: none; }
}

/* =========================================================
   SPOTLIGHT CARDS (ac-21)
========================================================= */
.ac-21,
.ac-21 *,
.ac-21 *::before,
.ac-21 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ac-21 {
  width: 100%;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
  --ac-21-bg: #0a0a0a;
  --ac-21-card: oklch(0.165 0.014 265);
  --ac-21-ink: oklch(0.97 0.004 260);
  --ac-21-mut: oklch(0.50 0.018 265);
  --ac-21-acc: oklch(65.194% 0.23401 26.677);
  --ac-21-line: oklch(94.251% 0.00755 16.511 / 0.07);
  background: transparent;
  color: var(--ac-21-ink);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ac-21__stage {
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(32px, 7vw, 80px);
  width: 100%;
}

.ac-21__head { display: grid; justify-items: center; gap: 9px; text-align: center; max-width: 60ch; }

.ac-21__eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ac-21-acc);
}

.ac-21__title {
  font-size: clamp(23px, 3.4vw, 38px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.ac-21__sub { font-size: 14px; color: oklch(0.62 0.02 265); text-wrap: pretty; }

.ac-21__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  width: min(100%, 940px);
  isolation: isolate;
}

.ac-21__orb {
  position: absolute;
  left: 0; top: 0;
  width: 300px; height: 300px;
  margin: -150px 0 0 -150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  translate: var(--ac-21-lx, 50%) var(--ac-21-ly, 50%);
  background: radial-gradient(closest-side, color-mix(in oklch, var(--ac-21-acc) 26%, transparent), transparent 68%);
  filter: blur(18px);
  opacity: var(--ac-21-lit, 0);
  transition: opacity .5s;
  mix-blend-mode: screen;
}

.ac-21__card {
  --ac-21-n: 0;
  --ac-21-dx: 0;
  --ac-21-dy: 0;
  position: relative;
  display: grid;
  gap: 11px;
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--ac-21-card);
  border: 1px solid var(--ac-21-line);
  isolation: isolate;
  translate: 0 calc(var(--ac-21-n) * -5px);
  transition: translate .45s cubic-bezier(.16, 1, .3, 1), border-color .45s;
}

.ac-21__card:focus-visible { outline: 2px solid var(--ac-21-acc); outline-offset: 3px; }

.ac-21__fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 18px;
  pointer-events: none;
  opacity: calc(var(--ac-21-n) * .95);
  background: radial-gradient(300px circle at var(--ac-21-x, 50%) var(--ac-21-y, 50%), color-mix(in oklch, var(--ac-21-acc) 22%, transparent), transparent 62%);
}

.ac-21__edge {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  pointer-events: none;
  opacity: var(--ac-21-n);
  background: radial-gradient(240px circle at var(--ac-21-x, 50%) var(--ac-21-y, 50%), color-mix(in oklch, var(--ac-21-acc) 95%, transparent), transparent 58%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ac-21__ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: color-mix(in oklch, var(--ac-21-acc) calc(8% + var(--ac-21-n) * 16%), oklch(0.22 0.02 265));
  color: color-mix(in oklch, var(--ac-21-acc) calc(45% + var(--ac-21-n) * 55%), oklch(0.55 0.03 265));
  box-shadow: calc(var(--ac-21-dx) * -9px) calc(var(--ac-21-dy) * -9px) calc(10px + var(--ac-21-n) * 14px) oklch(0 0 0/calc(.3 + var(--ac-21-n) * .4)), inset 0 1px 0 oklch(1 0 0/calc(var(--ac-21-n) * .3));
}

.ac-21__spec {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  pointer-events: none;
  left: calc(50% + var(--ac-21-dx) * 34%);
  top: calc(50% + var(--ac-21-dy) * 34%);
  translate: -50% -50%;
  background: radial-gradient(closest-side, oklch(1 0 0/.85), transparent 70%);
  opacity: calc(var(--ac-21-n) * .9);
}

.ac-21__name {
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -.022em;
  color: color-mix(in oklch, oklch(0.66 0.015 265), var(--ac-21-ink) calc(var(--ac-21-n) * 100%));
}

.ac-21__copy {
  font-size: 13.5px;
  line-height: 1.55;
  text-wrap: pretty;
  color: color-mix(in oklch, var(--ac-21-mut), oklch(0.80 0.015 265) calc(var(--ac-21-n) * 100%));
}

.ac-21__chip {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ac-21-mut);
  padding: 8px 15px;
  border: 1px solid var(--ac-21-line);
  border-radius: 99px;
  text-align: center;
  max-width: min(100%, 880px);
}

@media (prefers-reduced-motion: reduce) {
  .ac-21__card { transition: none; translate: none; }
  .ac-21__orb { display: none; }
}

/* =========================================================
   ARCHIVE / GALLERIES — Coverflow carousel
   (scoped under .archive so its own theme variables never
   leak into the rest of the site's :root)
========================================================= */
.archive {
  --arc-bg:          #0a0a0a;
  --arc-text:        #f4f3f8;
  --arc-text-dim:    #8b8a9a;
  --arc-accent:      #fc2a2a;
  --arc-accent-soft: #ff2222;
  --arc-border:      rgba(255,255,255,0.08);
  --arc-radius:      14px;

  position: relative;
  width: 100%;
  margin-top: 90px;
  padding: 70px 0 80px;
  overflow: hidden;
  background: transparent;
  color: var(--arc-text);
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.archive * { box-sizing: border-box; }

/* ---------- Atmosphere: grain + ambient glow ---------- */

.archive .grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.archive .ambient-glow {
  display: none;
}

/* ---------- Logo ---------- */

.archive-logo {
  position: absolute;
  top: 22px;
  left: 32px;
  z-index: 3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  font-style: italic;
}

/* ---------- Header ---------- */

.archive-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 36px;
}

.archive-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--arc-text-dim);
  margin-bottom: 14px;
  opacity: 0;
  animation: archFadeUp 0.7s ease forwards 0.1s;
}

.archive-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--arc-text);
}

.archive-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: archLetterIn 0.7s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--i) * 45ms + 150ms);
}

.archive-title .letter.space { width: 0.4em; }

.archive-divider {
  width: 0;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--arc-accent), var(--arc-accent-soft));
  animation: archGrowLine 0.6s cubic-bezier(.2,.8,.2,1) forwards 0.9s;
}

@keyframes archFadeUp { to{ opacity: 1; } }
@keyframes archLetterIn { to{ opacity: 1; transform: translateY(0); } }
@keyframes archGrowLine { to{ width: 64px; } }

/* ---------- Coverflow carousel ---------- */

.coverflow {
  position: relative;
  z-index: 1;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  touch-action: pan-y;
  outline: none;
}

.coverflow:focus-visible {
  outline: 2px solid var(--arc-accent-soft);
  outline-offset: -10px;
  border-radius: 18px;
}

.cf-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.cf-viewport:active { cursor: grabbing; }

.cf-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 290px;
  margin: 0;
  cursor: pointer;
  will-change: transform, opacity, filter;
  outline: none;
}

.cf-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--arc-radius);
  border: 1px solid var(--arc-border);
  background-color: #17141f;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.cf-card.is-active .cf-card-inner {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 28px 70px rgba(139,92,246,0.32), 0 12px 30px rgba(0,0,0,0.6);
}

.cf-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.18) 45%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 1s ease;
  pointer-events: none;
}

.cf-card.is-active:hover .cf-card-shine { transform: translateX(130%); }

.cf-card:focus-visible .cf-card-inner {
  outline: 2px solid var(--arc-accent-soft);
  outline-offset: 3px;
}

/* ---------- Slider / scrubber ---------- */

.archive-slider {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
}

.archive-slider-track {
  position: relative;
  width: min(560px, 80vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  cursor: pointer;
}

.slider-ticks {
  position: absolute;
  inset: -10px 0;
  pointer-events: none;
}

.slider-tick {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-tick.is-active {
  background: var(--arc-accent-soft);
  transform: translate(-50%, -50%) scale(1.6);
}

.archive-slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--arc-accent), var(--arc-accent-soft));
  pointer-events: none;
}

.archive-slider-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--arc-accent), var(--arc-accent-soft));
  box-shadow: 0 0 14px rgba(246, 92, 92, 0.75);
  transform: translate(-50%, -50%);
  cursor: grab;
  touch-action: none;
}

.archive-slider-thumb:active { cursor: grabbing; }

.thumb-preview {
  position: absolute;
  bottom: 118px;
  left: 50%;
  width: 76px;
  height: 50px;
  border-radius: 8px;
  transform: translateX(-50%) translateY(6px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  background-size: cover;
  background-position: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.thumb-preview::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px;
}

.archive-slider-track.show-preview .thumb-preview,
.archive-slider-thumb:active ~ .thumb-preview {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(6,5,10,0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color: #f4f3f8;
}

.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox-image {
  width: min(760px, 84vw);
  height: min(480px, 56vh);
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.lightbox.is-open .lightbox-image { transform: scale(1); }

.lightbox-caption { text-align: center; }

.lightbox-caption h3 { margin: 0 0 4px; font-size: 18px; color: #f4f3f8; }
.lightbox-caption p { margin: 0; font-size: 13px; color: #8b8a9a; }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,18,30,0.6);
  color: #f4f3f8;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(139,92,246,0.28);
  border-color: rgba(167,139,250,0.5);
}

.lightbox-close { top: 26px; right: 26px; width: 40px; height: 40px; font-size: 22px; }

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 24px;
}

.lightbox-nav--prev { left: 26px; }
.lightbox-nav--next { right: 26px; }

@media (prefers-reduced-motion: reduce) {
  .archive-title .letter,
  .archive-eyebrow,
  .archive-divider {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 64px;
  }
}

@media (max-width: 640px) {
  .archive-logo { left: 18px; top: 16px; font-size: 13px; }
  .coverflow { height: 280px; }
  .cf-card { width: 260px; height: 180px; }
  .archive-title { letter-spacing: 3px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 20px; }
}

/* =========================================================
   SITE FOOTER
========================================================= */
.site-foot {
  width: 100%;
  background: transparent;
  border-top: 1px solid var(--border);
}

.site-foot__inner {
  max-width: 1200px;
  margin: auto;
  padding: 26px 32px;
  padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}

.site-foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
}

.site-foot__mark {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: #000;
  border: 1.5px solid var(--orange);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.site-foot__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-inline-start: auto;
}

.site-foot__link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .18s ease, background .18s ease;
}
.site-foot__link:hover { color: var(--orange); background: rgba(255, 45, 45, .08); }

.site-foot__copy { font-size: 13.5px; color: var(--muted); }

@media (max-width: 720px) {
  .site-foot__nav { margin-inline-start: 0; order: 3; width: 100%; }
  .site-foot__copy { margin-inline-start: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .site-foot__link { transition-duration: .01ms !important; }
}

/* =========================================================
   SHARED SITE BACKGROUND
   Fixed behind every section. Blobs cross-fade and drift as
   the page scrolls (script.js), so the whole home page reads
   as one continuous background instead of separate section
   colors — scrolling or jumping via a nav tab both animate
   through it the same way.
========================================================= */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0a0a0a;
  pointer-events: none;
}

.site-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .5;
  will-change: transform, opacity;
  transition: opacity .8s ease;
}

.site-bg__blob--1 {
  width: 60vw;
  height: 60vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(255,45,45,.35) 0%, transparent 70%);
}

.site-bg__blob--2 {
  width: 55vw;
  height: 55vw;
  top: 35%;
  right: -15%;
  background: radial-gradient(circle, rgba(139,92,246,.30) 0%, transparent 70%);
}

.site-bg__blob--3 {
  width: 50vw;
  height: 50vw;
  top: 70%;
  left: 0%;
  background: radial-gradient(circle, rgba(179,0,0,.30) 0%, transparent 70%);
}

.site-bg__blob--4 {
  width: 42vw;
  height: 42vw;
  top: 95%;
  right: 5%;
  background: radial-gradient(circle, rgba(167,139,250,.25) 0%, transparent 70%);
}

@media (prefers-reduced-motion: reduce) {
  .site-bg__blob { transition: none; }
}

/* =========================================================
   VIDEOS (YouTube grid)
   Card container widened + gap increased so each card reads
   noticeably bigger than before.
========================================================= */
.yt-hub {
  width: 100%;
  margin-top: 90px;
  padding: 60px 20px 80px;
  background: transparent;
}

.yt-hub__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.yt-hub__head { text-align: center; margin-bottom: 40px; }

.yt-hub__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
}

.yt-hub__divider {
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

/* ---------------------------------------------------------
   VIDEOS — toolbar (hint centered absolutely, search bar
   stays anchored to the right — see yt-search-08 below for
   the search bar itself)
--------------------------------------------------------- */
.yt-hub__toolbar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 18px auto 40px;
}

.yt-hub__hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
}

.yt-hub__hint .accent { color: var(--orange); }

.yt-hub__sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* video card hidden by the filter */
.yt-card.is-hidden { display: none; }

/* ---------------------------------------------------------
   VIDEOS — search bar (glass style, adapted from sb-08)
--------------------------------------------------------- */
.yt-search-08 {
  --yt-ink: #fff;
  --yt-muted: rgba(255,255,255,.55);
  --yt-tint: rgba(255,45,45,.05);
  --yt-edge: rgba(255,45,45,.30);
  --yt-hi: rgba(255,255,255,.10);
  --yt-shadow: rgba(0,0,0,.6);
  position: relative;
  display: flex;
  align-items: center;
  gap: .65rem;
  overflow: hidden;
  min-width: 260px;
  min-height: 48px;
  padding-inline: 18px 10px;
  border: 1px solid var(--yt-edge);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 var(--yt-hi), 0 18px 40px -20px var(--yt-shadow);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .yt-search-08 {
    background: var(--yt-tint);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
  }
}

.yt-search-08::after {
  content: '';
  position: absolute;
  inset-block: 0;
  width: 45%;
  left: -45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transition: left .7s cubic-bezier(.2,.9,.25,1);
  pointer-events: none;
}

.yt-search-08:focus-within {
  border-color: var(--orange);
  background: rgba(255,45,45,.06);
  box-shadow: inset 0 1px 0 var(--yt-hi), 0 0 0 4px rgba(255,45,45,.14), 0 20px 46px -20px var(--yt-shadow);
}

.yt-search-08:focus-within::after {
  left: 110%;
}

.yt-search-08__ico {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--orange);
}

.yt-search-08__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  color: #fff;
  font: 500 14px/1 inherit;
}

.yt-search-08__input::placeholder { color: var(--yt-muted); font-weight: 400; }
.yt-search-08__input:focus { outline: none; }
.yt-search-08__input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }

.yt-search-08__kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: none;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  color: var(--orange);
}

.yt-search-08__kbd svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 640px) {
  .yt-search-08 { width: 100%; max-width: 360px; }
}

.yt-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
  perspective: 1000px;
  justify-content: center;
}

.yt-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #1c0d0d, #120808);
  border: 1px solid rgba(255, 45, 45, .25);
  box-shadow: 0 10px 26px -14px rgba(0, 0, 0, .7);
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, border-color .3s ease;
}

.yt-card.is-live {
  transition: transform .05s linear, box-shadow .3s ease, border-color .3s ease;
}

.yt-card:hover {
  box-shadow: 0 20px 40px -16px rgba(255, 45, 45, .4);
  border-color: #ff2d2d;
}

.yt-card__glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .18), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.yt-card.is-live .yt-card__glare { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .yt-card { transition: box-shadow .3s ease, border-color .3s ease; transform: none !important; }
}

/* Thumbnail is now a <button> (was <a>) so it can be swapped for a
   live iframe on click without navigating away — reset native
   button chrome so it still looks like the old thumbnail. */
.yt-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a center / cover no-repeat;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  appearance: none;
}

/* The live YouTube iframe that replaces .yt-card__thumb on click. */
.yt-card__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.yt-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(255, 45, 45, .5);
  transition: transform .2s ease;
}
.yt-card:hover .yt-card__play { transform: translate(-50%, -50%) scale(1.08); }

.yt-card__play svg { width: 18px; height: 18px; fill: #0d0d0d; margin-left: 2px; }

.yt-card__body { padding: 14px 16px 16px; }

.yt-card__title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card__channel { font-size: .74rem; color: #ff9999; }

.yt-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.yt-card__badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #e5e5e5;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 4px 8px;
}

.yt-card__link {
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}
.yt-card__link:hover { color: #ff6666; }

/* =========================================================
   GANGS / FAMILLIA
   (both sections reuse the same .gangs-hub / .pc-09 card
   markup and styling — Famillia just has its own grid id
   in the HTML and its own invite list in script.js)
========================================================= */
.gangs-hub {
  width: 100%;
  margin-top: 90px;
  padding: 60px 20px 80px;
  background: transparent;
}

.gangs-hub__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gangs-hub__head { text-align: center; }

.gangs-hub__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.gangs-hub__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
}

.gangs-hub__divider {
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.gangs-hub__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
}

.gangs-hub__grid .pc-09 {
  width: auto;
  min-height: 0;
  display: block;
  padding: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .yt-hub__grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
}

@media (max-width: 560px) {
  .yt-hub__grid { grid-template-columns: 1fr; gap: 16px; }
}