/* kurova wrote this script jackass... */

@font-face {
  font-family: 'VCR OSD Mono';
  src: url('vcr.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #020307;
  --bg-raise: #070912;
  --white: #e6eaf5;
  --grey-light: #b6bed3;
  --grey-medium: #6b7488;
  --grey-dark: #080a11;
  --line: rgba(120, 145, 210, 0.11);
  --line-soft: rgba(120, 145, 210, 0.055);
  --accent: #7d94ff;
  --accent-dim: rgba(125, 148, 255, 0.16);
  --banner-h: 0px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'VCR OSD Mono', monospace;
  min-height: 100vh;
  overflow-x: hidden;
}

.bgfx {
  position: fixed;
  inset: -40px;
  background-image: url('assets/bg.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1.2px) brightness(0.3) saturate(0.72) contrast(1.08);
  transform: translateZ(0);
  z-index: 0;
  pointer-events: none;
}

.bgtint {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(110, 135, 245, 0.06) 0%, rgba(0, 0, 0, 0) 58%),
    radial-gradient(ellipse at 50% 120%, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0) 32%, rgba(2, 3, 7, 0.66) 100%),
    linear-gradient(180deg, rgba(2, 3, 7, 0.78) 0%, rgba(2, 3, 7, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.bgrain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.bgfog {
  position: fixed;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(120, 140, 200, 0.05) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(ellipse at 80% 60%, rgba(120, 140, 200, 0.04) 0%, rgba(0, 0, 0, 0) 50%);
  animation: fogDrift 34s ease-in-out infinite alternate;
}

@keyframes fogDrift {
  0% { transform: translate3d(-2%, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
}

.bgscan {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,0.16) 3px, rgba(0,0,0,0) 4px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

::-webkit-scrollbar {
  display: none;
}

html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'VCR OSD Mono', monospace;
  margin: 0;
  font-weight: 400;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--grey-light);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.intro-splash {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #070912 0%, #000000 72%);
  z-index: 2000;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
  transition: opacity 950ms ease;
}

.intro-splash.fading {
  opacity: 0;
  pointer-events: none;
}

.intro-splash.hidden {
  display: none;
}

.intro-glow {
  position: absolute;
  width: 60vw;
  max-width: 640px;
  height: 60vw;
  max-height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 130, 180, 0.18) 0%, rgba(0, 0, 0, 0) 62%);
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.7);
  transition: opacity 1400ms ease, transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-splash.lit .intro-glow {
  opacity: 1;
  transform: scale(1);
}

.intro-drop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 20px;
  margin-left: -2px;
  margin-top: -10px;
  border-radius: 2px 2px 3px 3px;
  background: linear-gradient(180deg, rgba(188, 205, 255, 0) 0%, rgba(188, 205, 255, 0.8) 55%, rgba(230, 238, 255, 1) 100%);
  box-shadow: 0 0 12px rgba(150, 175, 255, 0.7);
  opacity: 0;
  transform: translateY(-60vh);
}

.intro-splash.playing .intro-drop {
  animation: introDropFall 900ms cubic-bezier(0.5, 0.05, 0.7, 0.2) forwards;
}

@keyframes introDropFall {
  0%   { opacity: 0; transform: translateY(-60vh) scaleY(0.6); }
  14%  { opacity: 1; }
  86%  { opacity: 1; transform: translateY(-8px) scaleY(1.6); }
  100% { opacity: 0; transform: translateY(0) scaleY(0.25); }
}

.intro-ripple {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(160, 185, 255, 0.7);
  opacity: 0;
  transform: scale(0.25);
}

.intro-splash.impact .intro-ripple { animation: introRipple 2400ms cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.intro-splash.impact .intro-ripple.r2 { animation-delay: 200ms; }
.intro-splash.impact .intro-ripple.r3 { animation-delay: 420ms; }

@keyframes introRipple {
  0%   { opacity: 0; transform: scale(0.25); }
  9%   { opacity: 0.85; }
  100% { opacity: 0; transform: scale(15); }
}

.intro-brand {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  filter: blur(8px);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.intro-splash.brand-in .intro-brand {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.intro-splash.brand-out .intro-brand {
  opacity: 0;
  transform: translateY(-12px) scale(1.05);
  filter: blur(6px);
}

.intro-brand-main {
  font-family: 'VCR OSD Mono', monospace;
  font-size: 58px;
  letter-spacing: 6px;
  color: var(--white);
  text-shadow: 0 0 24px rgba(160, 170, 210, 0.35);
}

.intro-brand-main span {
  color: var(--grey-light);
}

.intro-brand-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 145, 210, 0) 0%, rgba(255,255,255,0.6) 50%, rgba(120, 145, 210, 0) 100%);
  transition: width 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-splash.brand-in .intro-brand-line {
  width: 260px;
}

.intro-brand-sub {
  font-family: 'VCR OSD Mono', monospace;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--grey-medium);
  text-transform: uppercase;
}

.intro-msg {
  position: absolute;
  max-width: min(640px, 86vw);
  padding: 0 20px;
  text-align: center;
  font-family: 'VCR OSD Mono', monospace;
  font-size: 27px;
  letter-spacing: 2px;
  line-height: 1.55;
  color: var(--white);
  text-shadow: 0 0 22px rgba(140, 160, 220, 0.32);
  opacity: 0;
  transform: translateY(14px);
  filter: blur(7px);
  transition: opacity 640ms ease, transform 860ms cubic-bezier(0.22, 1, 0.36, 1), filter 640ms ease;
  pointer-events: none;
}

.intro-msg.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.intro-heartglow {
  position: absolute;
  width: 46vw;
  max-width: 470px;
  height: 46vw;
  max-height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 175, 230, 0.34) 0%, rgba(96, 112, 168, 0.12) 44%, rgba(0, 0, 0, 0) 68%);
  filter: blur(26px);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 1100ms ease, transform 1700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-splash.heart-lit .intro-heartglow {
  opacity: 1;
  transform: scale(1);
}

.intro-heart {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-heart.show {
  opacity: 1;
  transform: translateY(0);
}

.pixel-heart {
  width: 78px;
  height: 71px;
  display: block;
}

.intro-skip {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(10, 12, 20, 0.6);
  color: var(--grey-medium);
  font-family: 'VCR OSD Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity 600ms ease, color 200ms, border-color 200ms;
}

.intro-splash.lit .intro-skip {
  opacity: 1;
}

.intro-skip:hover {
  color: var(--white);
  border-color: var(--accent);
}

.page.intro-focus {
  filter: blur(22px) brightness(1.25) saturate(0.72);
  transform: scale(1.045);
  will-change: filter, transform;
}

.page.intro-done {
  filter: none;
  transform: none;
  will-change: auto;
  transition: filter 1200ms cubic-bezier(0.16, 1, 0.3, 1), transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .intro-drop, .intro-ripple { display: none; }
  .intro-brand, .intro-msg {
    transition: opacity 400ms ease;
    transform: none;
    filter: none;
  }
  .intro-splash.brand-in .intro-brand,
  .intro-splash.brand-out .intro-brand { transform: none; filter: none; }
  .intro-msg.show { transform: none; filter: none; }
  .intro-heart { transition: opacity 400ms ease; transform: none; }
  .intro-heart.show { transform: none; }
  .page.intro-focus { filter: none; transform: none; }
}

@media (max-width: 768px) {
  .intro-brand-main { font-size: 38px; letter-spacing: 4px; }
  .intro-brand-sub { font-size: 11px; letter-spacing: 3px; }
  .intro-splash.brand-in .intro-brand-line { width: 180px; }
  .intro-msg { font-size: 19px; letter-spacing: 1px; }
  .pixel-heart { width: 56px; height: 51px; }
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(50px + var(--banner-h, 0px));
  animation: fadeIn 0.6s ease-out;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

nav.topnav {
  position: fixed;
  top: var(--banner-h, 0px);
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(120, 145, 210, 0.1);
}

nav.topnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.brand {
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
}

.brand span {
  color: var(--grey-light);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navlinks a {
  font-size: 12px;
  color: var(--grey-light);
}

.navlinks a.active {
  color: var(--white);
}

.navlinks .visits {
  font-size: 11px;
  color: var(--grey-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 20px;
}

.navlinks .visits span {
  color: var(--grey-light);
  font-weight: bold;
}

.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}

.eyebrow {
  color: var(--grey-medium);
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero p.lead {
  color: var(--white);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border: 1px solid rgba(120, 145, 210, 0.2);
  color: var(--white);
  background: rgba(120, 145, 210, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'VCR OSD Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  border-radius: 4px;
}

.btn:hover {
  background: rgba(120, 145, 210, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

section.block {
  padding: 60px 0;
}

.section-tag {
  color: var(--grey-medium);
  letter-spacing: 2px;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.section-body {
  max-width: 700px;
  margin: 0 auto;
}

.section-body p {
  color: var(--grey-light);
  line-height: 1.7;
  font-size: 13px;
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  padding: 20px;
  background: rgba(120, 145, 210, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 145, 210, 0.1);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(120, 145, 210, 0.08);
  border-color: rgba(120, 145, 210, 0.2);
}

.feature-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.5;
}

.status-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.status-card {
  flex: 1 1 180px;
  max-width: 210px;
  padding: 18px;
  background: rgba(120, 145, 210, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 145, 210, 0.1);
  border-radius: 4px;
  text-align: center;
}

.status-label {
  font-size: 10px;
  color: var(--grey-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.status-value {
  font-size: 16px;
  color: var(--white);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.game-box {
  padding: 30px;
  background: rgba(120, 145, 210, 0.07);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  max-width: 800px;
  margin: 0 auto;
}

.game-header {
  margin-bottom: 20px;
}

.game-header .section-tag {
  margin-bottom: 8px;
}

.game-header .section-title {
  margin-bottom: 0;
}

.game-content {
  padding: 15px 0;
  border-top: 1px solid rgba(120, 145, 210, 0.1);
}

.game-content p {
  color: var(--grey-light);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin: 0;
}

@keyframes pixelate {
  0%, 100% {
    text-shadow: 0 0 0 transparent;
  }
  50% {
    text-shadow: -2px -2px 0 #d0d0d0, 2px 2px 0 #707070;
  }
}

.pixelate-title {
  animation: pixelate 4s ease-in-out infinite;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.link-card {
  padding: 20px;
  background: rgba(120, 145, 210, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 145, 210, 0.1);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.link-card:hover {
  background: rgba(120, 145, 210, 0.1);
  border-color: rgba(120, 145, 210, 0.25);
  transform: translateY(-2px);
}

.link-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.link-desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.5;
}

.leaks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.leak-card {
  background: rgba(120, 145, 210, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 145, 210, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.leak-card:hover {
  background: rgba(120, 145, 210, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.leak-title {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(120, 145, 210, 0.1);
}

.leak-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #06080e;
}

.leak-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leak-image-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.leak-image-pending span {
  color: var(--grey-medium);
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.leak-video {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #06080e;
}

.leak-video iframe {
  width: 100% !important;
  height: 100% !important;
}

.leak-desc {
  padding: 12px 16px;
  font-size: 11px;
  color: var(--grey-light);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.video-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  z-index: 999;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-overlay.active {
  transform: translate(-50%, -50%) scale(1);
}

footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--grey-medium);
  font-size: 10px;
  letter-spacing: 1px;
}

footer a {
  color: var(--grey-light);
}

.page-header {
  padding: 80px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 52px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}

.page-header h1.page-title {
  font-size: 72px;
}

.page-header p {
  color: var(--grey-light);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.podium {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px 0;
}

.member {
  width: 152px;
  text-align: center;
  padding: 22px 14px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(120, 145, 210, 0.05), rgba(120, 145, 210, 0.012));
  border: 1px solid rgba(120, 145, 210, 0.09);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.member:nth-child(4) { order: 1; flex-basis: calc(50% - 8px); }
.member:nth-child(1) { order: 2; flex-basis: calc(50% - 8px); }
.member:nth-child(5) { order: 3; }
.member:nth-child(2) { order: 4; }
.member:nth-child(3) { order: 5; }
.member:nth-child(6) { order: 6; }
.member:nth-child(7) { order: 7; }
.member:nth-child(8) { order: 8; }
.member:nth-child(9) { order: 9; }

.member.founder .avatar-wrap {
  width: 144px;
  height: 144px;
  border: 3px solid #c9a227;
  box-shadow: 0 0 22px rgba(201, 162, 39, 0.42);
}

.member.co-owner .avatar-wrap {
  width: 144px;
  height: 144px;
  border: 3px solid #9aa3b8;
  box-shadow: 0 0 22px rgba(154, 163, 184, 0.3);
}

.member.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px 20px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.075), rgba(201, 162, 39, 0.012));
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}

.member.founder .name {
  font-size: 22px;
  letter-spacing: 1px;
}

.member.co-owner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px 20px;
  background: linear-gradient(180deg, rgba(154, 163, 184, 0.075), rgba(154, 163, 184, 0.012));
  border: 1px solid rgba(154, 163, 184, 0.22);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}

.member.co-owner .name {
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
}

.member.co-owner .role {
  color: #a8a8a8;
  font-weight: bold;
}

.member:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 145, 210, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.member.founder:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 46px rgba(212, 175, 55, 0.16), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.member.co-owner:hover {
  border-color: rgba(190, 190, 200, 0.45);
}

.member .avatar-wrap {
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(120, 145, 210, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2px;
  border: 1px solid rgba(120, 145, 210, 0.16);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.member:hover .avatar-wrap {
  transform: scale(1.06);
}

.member.owner .avatar-wrap {
  background: rgba(120, 145, 210, 0.15);
  border: 1px solid rgba(120, 145, 210, 0.25);
}

.member .avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #06080e;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.member .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member .avatar .initials {
  font-size: 36px;
  color: var(--grey-light);
}

.member .role {
  color: var(--grey-medium);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.member.owner .role {
  color: var(--grey-light);
}

.member .name {
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.member .desc {
  color: var(--grey-light);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }

  .brand { font-size: 15px; letter-spacing: 1px; }
  .navlinks { gap: 16px; }
  .navlinks a { font-size: 11px; }
  .navlinks .visits { font-size: 10px; margin-left: 6px; letter-spacing: 0.5px; }

  .hero { padding: 60px 0; }
  .hero h1 { font-size: 38px; }
  .hero p.lead { font-size: 13px; }

  section.block { padding: 44px 0; }
  .section-title { font-size: 30px; }

  .features-grid { grid-template-columns: 1fr; gap: 14px; max-width: 400px; }
  .status-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 400px; }
  .links-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 400px; }

  .game-box { padding: 22px; }

  .leaks-grid { grid-template-columns: 1fr; gap: 16px; }
  .leak-image, .leak-video { height: 200px; }

  .page-header { padding: 60px 0 30px; }
  .page-header h1 { font-size: 40px; }
  .page-header h1.page-title { font-size: 46px; }

  .podium { gap: 14px; padding: 20px 0; }
  .member:nth-child(2), .member:nth-child(3),
  .member:nth-child(5), .member:nth-child(6), .member:nth-child(7),
  .member:nth-child(8), .member:nth-child(9) {
    flex-basis: 44%;
    width: 44%;
  }
  .member:nth-child(4), .member:nth-child(1) {
    flex-basis: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navlinks .visits { display: none; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .status-value { font-size: 14px; }
  .page-header h1.page-title { font-size: 40px; }
}

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(212, 175, 55, 0.14);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  text-align: center;
  padding: 9px 44px;
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.announce-bar b {
  color: #f4d03f;
  font-weight: 400;
  margin-right: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

.volume-control {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 150;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 3px;
}

.volume-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 3px;
  border-radius: 3px;
  background: rgba(120, 145, 210, 0.25);
  outline: none;
  cursor: pointer;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.volume-control input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

@media (max-width: 480px) {
  .volume-control { bottom: 12px; right: 12px; padding: 5px 8px; }
  .volume-control input[type="range"] { width: 70px; }
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-empty {
  width: 100%;
  text-align: center;
  color: var(--grey-medium);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 30px 0;
}

.partner-card {
  width: 260px;
  padding: 24px 20px;
  background: rgba(120, 145, 210, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 145, 210, 0.12);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  background: rgba(120, 145, 210, 0.09);
  border-color: rgba(120, 145, 210, 0.25);
  transform: translateY(-3px);
}

.partner-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #06080e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(120, 145, 210, 0.15);
  font-size: 28px;
  color: var(--grey-light);
}

.partner-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-name {
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.partner-desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.partner-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f4d03f;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.partner-links {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.partner-link {
  padding: 8px 20px;
  border: 1px solid rgba(120, 145, 210, 0.2);
  background: rgba(120, 145, 210, 0.05);
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.partner-link:hover {
  background: rgba(120, 145, 210, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.partner-preview-btn {
  font-family: 'VCR OSD Mono', monospace;
  background: none;
  border: none;
  color: var(--grey-light);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 0 12px;
}

.partner-preview-btn:hover {
  color: var(--white);
}

.partner-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}

.partner-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 28px 28px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(120, 145, 210, 0.15);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--grey-medium);
  font-family: 'VCR OSD Mono', monospace;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
}

.partner-modal-close:hover {
  color: var(--white);
}

.partner-bio {
  color: var(--grey-light);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 18px;
  white-space: pre-wrap;
  word-break: break-word;
}

.partner-bio b { color: var(--white); }
.partner-bio i { font-style: italic; }
.partner-bio u { text-decoration: underline; }
.partner-bio s { text-decoration: line-through; }

@media (max-width: 480px) {
  .partner-modal { padding: 26px 18px 20px; max-width: 92vw; }
}

.supporter-podium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.supporter {
  --fav: 0;
  width: 200px;
  padding: 22px 18px;
  background: rgba(120, 145, 210, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 145, 210, 0.12);
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transform: scale(calc(1 + var(--fav) * 0.1));
  box-shadow: 0 0 calc(var(--fav) * 18px) rgba(212, 175, 55, calc(var(--fav) * 0.28));
}

.supporter:hover {
  background: rgba(120, 145, 210, 0.09);
  border-color: rgba(212, 175, 55, 0.35);
  transform: scale(calc(1 + var(--fav) * 0.1)) translateY(-3px);
}

.supporter-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 1px solid rgba(120, 145, 210, 0.2);
}

.supporter-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supporter-name {
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.supporter-amount {
  font-size: 12px;
  color: #f4d03f;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.supporter-quote {
  font-size: 12px;
  color: var(--grey-light);
  line-height: 1.5;
  font-style: italic;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 34px;
}

.team-row .member {
  flex: 0 0 auto;
  width: 200px;
}

.audio-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(10, 12, 20, 0.82);
  color: var(--grey-light);
  font-family: 'VCR OSD Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, color 0.2s;
}

.audio-toggle:hover {
  border-color: var(--accent);
  color: var(--white);
}

.audio-toggle .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grey-medium);
}

.audio-toggle.on .dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.status-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.svc {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 19, 28, 0.72), rgba(8, 10, 16, 0.72));
  padding: 18px;
  border-radius: 3px;
}

.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.svc-name {
  font-size: 15px;
  letter-spacing: 2px;
}

.svc-pill {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  border: 1px solid;
}

.svc-pill.up { color: #7ee2a8; border-color: rgba(126, 226, 168, 0.4); background: rgba(126, 226, 168, 0.08); }
.svc-pill.down { color: #ff8a8a; border-color: rgba(255, 138, 138, 0.4); background: rgba(255, 138, 138, 0.08); }
.svc-pill.wait { color: var(--grey-medium); border-color: var(--line); }

.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--grey-light);
}

.svc-row:first-of-type { border-top: 0; }
.svc-row .ok { color: #7ee2a8; }
.svc-row .bad { color: #ff8a8a; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.stat-box {
  border: 1px solid var(--line);
  background: rgba(10, 12, 20, 0.6);
  padding: 16px;
  border-radius: 3px;
}

.stat-num {
  font-size: 26px;
  color: var(--white);
  letter-spacing: 1px;
}

.stat-cap {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-medium);
  margin-top: 6px;
}

@media (max-width: 640px) {
  .team-row .member { width: 44%; }
}

.notes-foot {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--grey-medium);
  letter-spacing: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .bgrain { display: none; }
  .bgfog { animation: none; }
}

.hero-split { padding-bottom: 30px; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
  gap: 46px;
  align-items: start;
}

.hero-meta {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-medium);
}

.hero-meta .sep { opacity: 0.35; margin: 0 8px; }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--grey-light);
}

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 20, 30, 0.86), rgba(8, 10, 16, 0.86));
  padding: 22px 20px 18px;
  border-radius: 2px;
  transform: rotate(-0.7deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.card-pin {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 46px;
  height: 3px;
  margin-left: -23px;
  background: rgba(125, 148, 255, 0.5);
  box-shadow: 0 0 12px rgba(125, 148, 255, 0.5);
}

.card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-medium);
  margin-bottom: 14px;
}

.card-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--grey-medium);
}

.card-line:first-of-type { border-top: 0; }
.card-line b { color: var(--white); font-weight: 400; }

.card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
}

.prose {
  max-width: 680px;
  color: var(--grey-light);
  font-size: 14px;
  line-height: 1.85;
}

.prose p { margin: 0 0 16px; }

.notes {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.note {
  position: relative;
  border-left: 2px solid var(--accent-dim);
  padding: 2px 0 2px 18px;
}

.note:nth-child(2) { margin-left: 14px; }
.note:nth-child(3) { margin-left: 6px; }

.note-date {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.note p {
  margin: 0;
  color: var(--grey-light);
  font-size: 13px;
  line-height: 1.8;
}

.links-grid .link-card:nth-child(1) { transform: rotate(-0.4deg); }
.links-grid .link-card:nth-child(3) { transform: rotate(0.5deg); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-card { transform: none; }
}

.team-row .member:nth-child(n) { order: 0; flex-basis: auto; }
.team-row .member.founder,
.team-row .member.co-owner { width: 200px; }

.svc, .stat-box, .hero-card {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.42) 100%);
}
