@font-face {
  font-family: "RDOC Display";
  src: url("/assets/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cyan: #00d4ff;
  --gold: #f0a500;
  --green: #00ff88;
  --red: #ff4444;
  --bg: #04060a;
  --bg2: #080e14;
  --bg3: #0c1520;
  --fg: #c8dce8;
  --muted: rgba(200, 220, 232, .55);
  --dim: rgba(200, 220, 232, .32);
  --bd: rgba(0, 212, 255, .12);
  --bd-hi: rgba(0, 212, 255, .32);
  --panel: rgba(8, 14, 20, .9);
  --font-ui: "Segoe UI", "Arial Narrow", system-ui, sans-serif;
  --font-display: "RDOC Display", "Arial Narrow", Impact, sans-serif;
  --font-tech: Consolas, "Cascadia Mono", "Lucida Console", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background:
    url("/assets/rdoc-pulse-overlay.png") no-repeat right 16vh / min(68vw, 980px) auto,
    radial-gradient(900px 520px at 14% -12%, rgba(0, 212, 255, .12), transparent 58%),
    radial-gradient(760px 500px at 100% 8%, rgba(240, 165, 0, .08), transparent 58%),
    linear-gradient(180deg, #04060a 0%, #071019 52%, #04060a 100%);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 212, 255, .018) 3px, rgba(0, 212, 255, .018) 4px);
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

.ctr {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 6, 10, .92);
  border-bottom: 1px solid var(--bd);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nv {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 46px;
  gap: 18px;
}

.br {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.lg {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 212, 255, .45);
  background:
    linear-gradient(135deg, transparent 0 42%, var(--cyan) 42% 49%, transparent 49%),
    linear-gradient(315deg, transparent 0 42%, rgba(240, 165, 0, .9) 42% 49%, transparent 49%),
    var(--bg2);
  box-shadow: 0 0 18px rgba(0, 212, 255, .22);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 68, 68, .55);
  background: rgba(255, 68, 68, .1);
  color: var(--red);
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s, transform .15s;
}

.live-badge:hover {
  background: rgba(255, 68, 68, .2);
  transform: translateY(-1px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

.mn {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}

.mn::-webkit-scrollbar {
  display: none;
}

.mn a,
.brg,
.mn-m a {
  font-family: var(--font-tech);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.4px;
}

.mn a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 11px;
  border-bottom: 2px solid transparent;
  color: rgba(200, 220, 232, .52);
  font-size: 10px;
  transition: color .15s, border-color .15s, background .15s;
}

.mn a:hover {
  color: var(--fg);
  background: rgba(0, 212, 255, .045);
}

.mn a[href^="https://financial"] {
  color: var(--gold);
}

.mn a[href^="https://financial"]:hover,
.mn .cta:hover {
  border-bottom-color: var(--gold);
}

.cta {
  color: var(--cyan) !important;
  border-left: 1px solid var(--bd);
  border-right: 1px solid var(--bd);
}

.drw {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 78px;
  border-bottom: 1px solid var(--bd);
  background:
    linear-gradient(90deg, rgba(4, 6, 10, .94) 0%, rgba(4, 6, 10, .78) 44%, rgba(4, 6, 10, .38) 100%),
    radial-gradient(500px 260px at 70% 40%, rgba(0, 212, 255, .13), transparent 72%),
    url("/assets/wolf.png") no-repeat right center / min(48vw, 620px);
}

.hero::before,
section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 128px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.g,
.g2 {
  display: grid;
  gap: 24px;
  position: relative;
}

.g {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .82fr);
}

.g2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

h1,
h2,
.chip,
.pill {
  font-family: var(--font-display);
}

h3 {
  font-family: var(--font-tech);
}

h1 {
  margin: 12px 0 12px;
  color: var(--cyan);
  font-size: clamp(44px, 8vw, 92px);
  line-height: .9;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(0, 212, 255, .26);
}

h2 {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: clamp(20px, 2.7vw, 31px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.v-head {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

h3 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  margin: 0 0 14px;
}

p.lead {
  color: rgba(200, 220, 232, .68);
  font-size: 18px;
}

em,
strong {
  color: rgba(255, 255, 255, .86);
}

section {
  position: relative;
  padding: 72px 0;
  border-bottom: 1px solid var(--bd);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: var(--gold);
  border: 1px solid rgba(240, 165, 0, .34);
  background: rgba(240, 165, 0, .055);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.cd {
  position: relative;
  overflow: hidden;
  padding: 16px 17px;
  border: 1px solid var(--bd);
  border-left: 2px solid rgba(0, 212, 255, .45);
  background: linear-gradient(135deg, rgba(8, 14, 20, .96), rgba(12, 21, 32, .82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
}

.cd::before,
.lst a::before,
.ifr-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(0, 212, 255, .42);
  border-right: 1px solid rgba(0, 212, 255, .42);
}

.join {
  border-left-color: var(--gold);
}

.join h3 {
  color: var(--gold);
}

.lst {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.lst a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--bd);
  border-left: 2px solid transparent;
  background: rgba(8, 14, 20, .72);
  transition: transform .12s, border-color .12s, background .12s;
}

.lst a:hover {
  transform: translateX(2px);
  border-color: rgba(0, 212, 255, .28);
  border-left-color: var(--cyan);
  background: var(--bg3);
}

.lst a[href^="https://financial"]:hover {
  border-left-color: var(--gold);
}

.streamer-grid,
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.streamer-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid var(--bd);
  border-left: 2px solid rgba(0, 212, 255, .45);
  background: var(--bg2);
  color: var(--fg);
  text-decoration: none;
}

.streamer-card.featured {
  min-height: 360px;
}

.streamer-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(0, 212, 255, .52);
  border-right: 1px solid rgba(0, 212, 255, .52);
}

.streamer-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.05);
  transition: transform .18s ease, filter .18s ease;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}

.member-list a {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--bd);
  border-left: 2px solid rgba(0, 212, 255, .32);
  background:
    linear-gradient(90deg, rgba(0, 212, 255, .055), transparent 44%),
    rgba(8, 14, 20, .78);
}

.member-list a:hover {
  border-color: rgba(0, 212, 255, .34);
  border-left-color: var(--gold);
  background: var(--bg3);
}

.member-list span {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--cyan);
}

.member-list em {
  display: block;
  margin-top: 3px;
  color: var(--dim);
  font-style: normal;
  font-size: 10px;
}

.member-list strong {
  flex-shrink: 0;
  color: var(--gold);
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: right;
}

.member-source {
  margin-top: 14px;
  color: var(--dim);
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: .5px;
}

.member-source a {
  color: var(--gold);
}

.streamer-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.08);
}

.streamer-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 16px;
  border-top: 1px solid rgba(0, 212, 255, .22);
  background: linear-gradient(180deg, rgba(4, 6, 10, .12), rgba(4, 6, 10, .94) 34%, rgba(4, 6, 10, .98));
}

.streamer-meta h3 {
  margin: 0 0 4px;
  color: var(--cyan);
}

.streamer-meta span {
  color: var(--gold);
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pill {
  flex-shrink: 0;
  padding: 3px 8px;
  color: var(--gold);
  border: 1px solid rgba(240, 165, 0, .36);
  background: rgba(240, 165, 0, .055);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ifr {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--bd-hi);
  background: #000;
  box-shadow: 0 0 28px rgba(0, 212, 255, .12);
}

.ftr {
  padding: 22px 0 46px;
  color: var(--dim);
  background: rgba(4, 6, 10, .88);
}

.ftr-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.muted {
  opacity: .72;
}

.brg {
  display: none;
  align-items: center;
  margin: 7px 0;
  padding: 0 10px;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, .34);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.m16 {
  margin-top: 16px;
}

.m20 {
  margin-top: 20px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, .18);
}

@media (max-width: 920px) {
  .g,
  .g2,
  .cds {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 86px 0 62px;
    background:
      linear-gradient(180deg, rgba(4, 6, 10, .82) 0%, rgba(4, 6, 10, .94) 72%),
      url("/assets/wolf.png") no-repeat center bottom / min(120vw, 620px);
  }

  .mn {
    display: none;
  }

  .brg {
    display: inline-flex;
  }

  .drw {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    background: rgba(4, 6, 10, .68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .pnl {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 370px);
    height: 100%;
    padding-top: 64px;
    border-left: 1px solid var(--bd-hi);
    background: rgba(4, 6, 10, .96);
    box-shadow: -18px 0 40px rgba(0, 0, 0, .38);
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  .drw.open .pnl {
    transform: translateX(0);
  }

  .mn-m {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 18px;
  }

  .mn-m a {
    padding: 13px 12px;
    color: var(--fg);
    border: 1px solid var(--bd);
    border-left: 2px solid transparent;
    background: rgba(8, 14, 20, .9);
    font-size: 11px;
  }

  .mn-m a:hover {
    border-left-color: var(--cyan);
    background: var(--bg3);
  }

  .mn-m a[href^="https://financial"] {
    color: var(--gold);
    border-color: rgba(240, 165, 0, .24);
  }

  .no-scroll {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .ctr {
    width: min(100% - 28px, 1120px);
  }

  .nv {
    min-height: 50px;
  }

  .br {
    font-size: 11px;
    letter-spacing: 2px;
  }

  h1 {
    font-size: clamp(40px, 16vw, 70px);
    letter-spacing: 3px;
  }

  section {
    padding: 56px 0;
  }

  .lst a {
    align-items: flex-start;
    flex-direction: column;
  }
}
