:root {
  --bg-base: #0f0d16;
  --bg-dark: #17131f;
  --bg-card: rgba(41, 32, 53, 0.72);
  --bg-card-soft: rgba(41, 32, 53, 0.46);
  --bg-card-deep: rgba(24, 20, 34, 0.82);
  --line: rgba(255, 95, 200, 0.28);
  --text-main: #ffffff;
  --text-soft: #bfbdc8;
  --text-muted: #908b9e;
  --accent: #ff5fc8;
  --accent-bright: #ff90dd;
  --accent-soft: rgba(255, 95, 200, 0.45);
  --accent-dim: rgba(100, 80, 122, 0.72);
  --shadow: 0 0 16px rgba(255, 255, 255, 0.4);
  --card-shadow: 0 20px 36px rgba(5, 2, 11, 0.55);
}

@property --youtube-trace-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background: var(--bg-base);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(140deg, rgba(8, 6, 13, 0.97) 0%, rgba(10, 8, 17, 0.96) 45%, rgba(7, 5, 12, 0.99) 100%),
    url("assets/bg-main.webp") center top / cover no-repeat;
}

.rules-page .page {
  overflow: visible;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: auroraShift 18s ease-in-out infinite alternate;
  z-index: 0;
  opacity: 0.32;
  background:
    radial-gradient(900px 360px at 18% 4%, rgba(255, 95, 200, 0.22), transparent 60%),
    radial-gradient(1000px 620px at 84% 92%, rgba(112, 58, 168, 0.15), transparent 67%),
    url("assets/legacybg.png") center top / cover no-repeat;
  mix-blend-mode: soft-light;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 13, 0) 52%,
    rgba(8, 6, 13, 0.64) 76%,
    rgba(8, 6, 13, 0.93) 90%,
    rgba(8, 6, 13, 1) 100%
  );
  mix-blend-mode: lighten;
}

.ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle-rain {
  position: absolute;
  inset: -32% 0 -12% 0;
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 8px 8px, rgba(255, 255, 255, 0.44) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 13px 13px, rgba(210, 172, 255, 0.28) 0 0.95px, transparent 1.5px),
    radial-gradient(circle at 6px 6px, rgba(255, 140, 214, 0.2) 0 0.8px, transparent 1.3px);
  background-size: 64px 102px, 88px 136px, 118px 172px;
  background-position: 0 -200px, 26px -320px, 44px -420px;
  filter: none;
  will-change: transform;
  animation: particleRainFallA 11.5s linear infinite;
}

.particle-rain--slow {
  display: none;
}

.particle-rain--drift {
  display: none;
}

.orb {
  position: absolute;
  width: clamp(220px, 30vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.38;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 30% 30%, rgba(255, 160, 224, 0.58), rgba(187, 63, 152, 0.03) 72%);
}

.orb-1 {
  top: -9%;
  left: -6%;
  animation: floatOrbA 17s ease-in-out infinite alternate;
}

.orb-2 {
  top: 24%;
  right: -12%;
  opacity: 0.3;
  animation: floatOrbB 19s ease-in-out infinite alternate;
}

.orb-3 {
  bottom: 18%;
  left: 32%;
  width: clamp(160px, 22vw, 380px);
  opacity: 0.2;
  animation: floatOrbC 13s ease-in-out infinite alternate;
}

.section-palm {
  position: absolute;
  width: clamp(280px, 25vw, 480px);
  height: auto;
  opacity: 0.46;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.14) contrast(1.16) saturate(0) drop-shadow(0 0 24px rgba(255, 122, 214, 0.22));
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
}

.hero-palm-left {
  left: -108px;
  top: 210px;
  transform: rotate(-5deg);
  animation: palmDriftLeft 13s ease-in-out infinite alternate;
}

.hero-palm-right {
  right: -124px;
  bottom: -36px;
  transform: scaleX(-1) rotate(8deg);
  opacity: 0.42;
  animation: palmDriftRight 14s ease-in-out infinite alternate;
}

.connect-palm-left {
  left: -118px;
  top: 18%;
  width: clamp(260px, 24vw, 420px);
  transform: rotate(-8deg);
  opacity: 0.36;
  animation: palmDriftLeft 15s ease-in-out infinite alternate;
}

.about-palm-right {
  right: -136px;
  top: 24%;
  width: clamp(260px, 23vw, 430px);
  transform: scaleX(-1) rotate(6deg);
  opacity: 0.34;
  animation: palmDriftRight 16s ease-in-out infinite alternate;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-inner {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: none;
  flex: 0 0 auto;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.brand:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 111, 210, 0.46);
}

.brand-logo {
  display: block;
  width: clamp(192px, 19vw, 290px);
  height: clamp(50px, 5.2vw, 70px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 12px rgba(255, 96, 200, 0.24));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 16px rgba(255, 118, 214, 0.4));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.3vw, 18px);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(171, 94, 255, 0.88), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.menu a:hover,
.menu a.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(161, 96, 255, 0.45);
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn-outline {
  width: 140px;
}

.btn {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(178, 110, 255, 0.42), rgba(132, 53, 255, 0.14) 42%, transparent 70%);
  filter: blur(8px);
  transform: scale(0.84);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.btn:hover::before {
  opacity: 0.9;
  transform: scale(1.06);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.12));
  transition: opacity 0.26s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn-outline {
  width: 160px;
  border: 1px solid rgba(164, 96, 255, 0.44);
  background: linear-gradient(120deg, #2a124d 0%, #34145f 52%, #221041 100%);
  background-size: 160% 160%;
  color: #f2e8ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 22px rgba(9, 3, 20, 0.44);
}

.btn-outline:hover {
  border-color: rgba(216, 173, 255, 0.86);
  box-shadow:
    0 0 0 1px rgba(212, 167, 255, 0.38),
    0 0 24px rgba(144, 63, 248, 0.58),
    0 12px 24px rgba(9, 1, 18, 0.62);
  background-position: 100% 0%;
}

.btn-light {
  min-width: 100px;
  height: 44px;
  padding-inline: 26px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  color: #1b102d;
  background: linear-gradient(180deg, #ffffff 0%, #f1e8ff 100%);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.36), 0 0 14px rgba(255, 255, 255, 0.38);
  font-size: 13px;
  text-transform: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, border-color 0.24s ease;
}

.btn-light::before {
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), rgba(221, 183, 255, 0.28) 45%, transparent 75%);
}

.btn-light::after {
  border-radius: 9999px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.45));
}

.btn-light:hover {
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.86),
    0 0 22px rgba(255, 255, 255, 0.64),
    0 12px 22px rgba(0, 0, 0, 0.5);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding-top: 92px;
}

.hero-content {
  max-width: 680px;
  text-align: center;
  padding-top: 170px;
}

.hero-status-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-content h1 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 68px);
  letter-spacing: 0.2px;
  text-wrap: balance;
  text-shadow: 0 0 18px rgba(255, 101, 206, 0.36);
  animation: titleGlow 5s ease-in-out infinite;
}

.legacy-highlight {
  display: inline-block;
  background: linear-gradient(90deg, #ff7ad8 0%, #ff49bf 58%, #b08dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 14px rgba(228, 108, 231, 0.45));
  animation: legacyPulse 4.2s ease-in-out infinite;
}

.hero-motto {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 18px 11px;
  border-radius: 16px;
  border: 1px solid rgba(216, 175, 255, 0.45);
  background:
    linear-gradient(125deg, rgba(176, 108, 255, 0.2), rgba(249, 123, 218, 0.14)),
    rgba(27, 12, 48, 0.5);
  box-shadow:
    0 10px 26px rgba(9, 3, 20, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: #f8f6ff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.22);
  animation: mottoFloat 6s ease-in-out infinite;
}

.hero-motto::after {
  content: none;
}

.hero-content p {
  margin: 16px auto 0;
  max-width: 660px;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
}

.live-stats {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: 78px 0 72px;
}

.live-stats::before {
  content: none;
}

.live-stats::after {
  content: none;
}

.live-stats-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.live-stats-wrap::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 56px;
  bottom: 26px;
  border-radius: 34px;
  pointer-events: none;
  background:
    radial-gradient(58% 44% at 50% 34%, rgba(255, 101, 206, 0.12), rgba(255, 101, 206, 0) 74%),
    radial-gradient(54% 42% at 50% 88%, rgba(173, 96, 255, 0.1), rgba(173, 96, 255, 0) 78%);
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: 0;
}

.live-stats-wrap > * {
  position: relative;
  z-index: 1;
}

.live-stats-kicker {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 134, 218, 0.96);
  text-shadow: 0 0 12px rgba(210, 94, 255, 0.3);
}

.live-stats-title {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 0 20px rgba(174, 93, 255, 0.32);
}

.live-stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
  margin-top: 8px;
}

.live-stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(138deg, rgba(48, 28, 74, 0.56), rgba(28, 12, 47, 0.52));
  padding: clamp(18px, 2vw, 26px);
  min-height: 212px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 11px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.live-stat-card:hover {
  --ty: -4px;
  border-color: rgba(181, 113, 255, 0.58);
  box-shadow: var(--card-shadow), 0 0 26px rgba(140, 62, 232, 0.3);
  background: linear-gradient(138deg, rgba(58, 34, 90, 0.72), rgba(34, 16, 58, 0.68));
}

.live-stat-card-main {
  background: linear-gradient(138deg, rgba(63, 30, 96, 0.66), rgba(39, 16, 66, 0.64));
  border-color: rgba(199, 141, 255, 0.44);
}

.live-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(182, 98, 255, 0.44), rgba(106, 43, 184, 0.2) 58%, transparent 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 185, 238, 0.18);
}

.live-stat-icon svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 224, 247, 0.96);
  filter: drop-shadow(0 0 8px rgba(214, 136, 255, 0.34));
}

.live-stat-label {
  margin: 0;
  font-size: 16px;
  color: rgba(235, 228, 247, 0.92);
}

.live-stat-value {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 50px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 157, 228, 0.2);
}

.live-stat-status {
  font-size: clamp(32px, 3.8vw, 46px);
  transition: color 0.24s ease, text-shadow 0.24s ease;
}

.live-stat-status.is-loading {
  color: rgba(234, 225, 245, 0.94);
  text-shadow: 0 0 10px rgba(231, 207, 255, 0.28);
}

.live-stat-status.is-online {
  color: #8dffbb;
  text-shadow: 0 0 14px rgba(94, 255, 161, 0.4);
}

.live-stat-status.is-offline {
  color: #ffacac;
  text-shadow: 0 0 14px rgba(255, 108, 108, 0.34);
}

.live-stats-meta {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  font-size: 15px;
  color: rgba(236, 228, 247, 0.88);
}

.live-stats-meta strong {
  font-weight: 700;
  color: #fff;
}

.live-stats-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 132, 255, 0.48);
  background: linear-gradient(135deg, rgba(77, 36, 122, 0.8), rgba(50, 21, 87, 0.78));
  color: rgba(255, 240, 250, 0.94);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.live-stats-refresh svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.92;
  transform-origin: center;
}

.live-stats-refresh:hover {
  transform: translateY(-1px);
  border-color: rgba(236, 188, 255, 0.84);
  box-shadow: 0 0 16px rgba(176, 86, 255, 0.28);
}

.live-stats-refresh:disabled {
  cursor: wait;
  opacity: 0.7;
}

.live-stats-refresh.is-loading svg {
  animation: spinRefresh 0.85s linear infinite;
}

.connect {
  overflow: hidden;
  padding-top: 36px;
  padding-bottom: 88px;
}

.connect,
.phone-info,
.about,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.connect-watermark {
  position: absolute;
  inset: 30px 0 auto;
  text-align: center;
  font-size: clamp(100px, 14vw, 250px);
  line-height: 0.92;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  animation: ghostPulse 8s ease-in-out infinite;
}

.connect-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 442px);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
}

.steps {
  display: grid;
  gap: 22px;
}

.connect-title {
  margin: 0 0 2px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(246, 239, 255, 0.98);
  text-shadow: 0 0 10px rgba(182, 96, 255, 0.28);
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(48, 28, 74, 0.75), rgba(35, 20, 59, 0.72));
  padding: 28px 28px 24px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.step-card:hover {
  --ty: -4px;
  border-color: rgba(172, 95, 255, 0.58);
  box-shadow: var(--card-shadow), 0 0 28px rgba(124, 39, 248, 0.32);
  background: linear-gradient(130deg, rgba(54, 30, 85, 0.86), rgba(41, 22, 70, 0.84));
}

.step-card h3 {
  margin: 0;
  color: var(--accent);
  font-size: 16px;
  text-transform: uppercase;
}

.step-card p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
}

.btn-status {
  min-width: 248px;
  height: 38px;
  padding-inline: 12px;
  justify-content: space-between;
  gap: 12px;
  text-transform: none;
  border-color: rgba(183, 121, 255, 0.46);
  background: linear-gradient(140deg, rgba(89, 46, 143, 0.92), rgba(58, 29, 95, 0.92));
  color: rgba(245, 238, 255, 0.95);
  box-shadow: 0 8px 18px rgba(8, 3, 16, 0.46), 0 0 18px rgba(151, 75, 255, 0.18);
  font-size: 12px;
  font-weight: 700;
  cursor: default;
  user-select: none;
  transition: none;
  transform: none;
  filter: none;
}

.btn-status::before,
.btn-status::after {
  display: none;
}

.btn-status-hero {
  height: 42px;
  min-width: 282px;
  padding-inline: 14px;
}

.btn-status:hover {
  border-color: rgba(183, 121, 255, 0.46);
  box-shadow: 0 8px 18px rgba(8, 3, 16, 0.46), 0 0 18px rgba(151, 75, 255, 0.18);
  transform: none;
  filter: none;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 9px;
}

.status-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.status-players {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 243, 255, 0.96);
  font-weight: 800;
}

.status-player-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.9;
}

.status-loading {
  background: #d8d8d8;
  box-shadow: 0 0 0 3px rgba(216, 216, 216, 0.22);
  animation: statusPulse 1.35s ease-in-out infinite;
}

.status-online {
  background: #2fe284;
  box-shadow:
    0 0 0 3px rgba(47, 226, 132, 0.25),
    0 0 10px rgba(47, 226, 132, 0.45);
  animation: statusPulseOnline 1.5s ease-in-out infinite;
}

.status-offline {
  background: #ff4b4b;
  box-shadow:
    0 0 0 3px rgba(255, 75, 75, 0.24),
    0 0 10px rgba(255, 75, 75, 0.42);
  animation: statusPulseOffline 1.5s ease-in-out infinite;
}

.status-main .status-online + #server-status-text {
  color: #9fffd0;
  text-shadow: 0 0 10px rgba(47, 226, 132, 0.34);
}

.status-main .status-offline + #server-status-text {
  color: #ffb4b4;
  text-shadow: 0 0 10px rgba(255, 75, 75, 0.3);
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.step-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.girl-wrap {
  position: relative;
  display: grid;
  align-items: end;
}

.girl-wrap img {
  width: 100%;
  max-width: 442px;
  margin-inline: auto;
  display: block;
  mix-blend-mode: luminosity;
  opacity: 0.66;
  filter: brightness(1.1) contrast(1.03) drop-shadow(0 16px 34px rgba(0, 0, 0, 0.5));
  animation: floatGirl 6.5s ease-in-out infinite;
}

.girl-wrap::after {
  content: "";
  position: absolute;
  inset: 10% 8% 5% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 56, 243, 0.28), transparent 68%);
  filter: blur(26px);
  pointer-events: none;
  animation: auraPulse 5s ease-in-out infinite;
}

.about {
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 84px;
}

.phone-info {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 76px) 0 clamp(30px, 4vw, 58px);
}

.phone-info::before {
  content: "";
  position: absolute;
  inset: 8% 0 0;
  pointer-events: none;
  background:
    radial-gradient(760px 340px at 28% 48%, rgba(255, 84, 205, 0.17), transparent 68%),
    radial-gradient(700px 340px at 78% 48%, rgba(147, 94, 255, 0.12), transparent 70%);
  mix-blend-mode: screen;
  z-index: 1;
}

.phone-info-watermark {
  position: absolute;
  inset: 4px 0 auto;
  z-index: 1;
  text-align: center;
  font-size: clamp(96px, 15vw, 230px);
  line-height: 0.8;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

.phone-info-layout {
  min-height: clamp(420px, 34vw, 570px);
  border: 0;
  border-radius: 22px;
  padding: clamp(20px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    radial-gradient(680px 280px at 32% 72%, rgba(255, 72, 203, 0.12), transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 70px rgba(4, 3, 12, 0.3);
}

.phone-info-art {
  position: relative;
  min-height: clamp(320px, 28vw, 500px);
  display: grid;
  place-items: center;
}

.phone-info-art::before {
  content: "";
  position: absolute;
  width: min(92%, 560px);
  aspect-ratio: 1.25;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 80, 205, 0.28), rgba(118, 85, 255, 0.12) 45%, transparent 72%);
  filter: blur(26px);
  transform: translateY(28px);
}

.phone-info-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  display: block;
  filter:
    saturate(1.08)
    brightness(1.08)
    drop-shadow(0 28px 46px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 26px rgba(255, 72, 203, 0.18));
  animation: startArtFloat 7.6s ease-in-out infinite;
}

.phone-info-copy {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 0;
  background:
    radial-gradient(420px 190px at 75% 18%, rgba(255, 91, 205, 0.12), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 52px rgba(2, 3, 12, 0.22);
  padding: clamp(20px, 2.8vw, 34px);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.phone-info-kicker {
  margin: 0 0 8px;
  color: #ff5cca;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-info-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.15), 0 0 28px rgba(255, 91, 205, 0.18);
}

.phone-info-copy p {
  margin: 0 0 16px;
}

.phone-info-copy p:last-child {
  margin-bottom: 0;
}

.phone-info-copy strong {
  color: #fff;
  font-weight: 900;
}

.electron-info {
  padding-bottom: clamp(18px, 2.4vw, 34px);
}

.electron-info-layout {
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
}

.electron-info-copy {
  order: 1;
}

.eac-stage {
  order: 2;
  position: relative;
  z-index: 2;
  min-height: clamp(360px, 30vw, 520px);
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1000px;
}

.eac-stage::before,
.eac-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.eac-stage::before {
  inset: 6% 4%;
  border-radius: 44px;
  background:
    linear-gradient(rgba(84, 213, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 86, 205, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 0 45%, transparent 74%);
  opacity: 0.72;
  animation: eacMatrixDrift 11s linear infinite;
}

.eac-stage::after {
  width: min(90%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(45, 203, 255, 0.2), transparent 60%),
    conic-gradient(from 0deg, transparent 0 16%, rgba(255, 72, 203, 0.34), transparent 25% 58%, rgba(45, 203, 255, 0.26), transparent 72%);
  filter: blur(16px);
  opacity: 0.82;
  animation: eacScannerSpin 8s linear infinite;
}

.eac-radar {
  position: absolute;
  width: min(80%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(88, 218, 255, 0.24);
  background:
    radial-gradient(circle, transparent 0 28%, rgba(88, 218, 255, 0.09) 29% 30%, transparent 31% 48%, rgba(255, 92, 202, 0.1) 49% 50%, transparent 51%),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.18) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.12) 50%, transparent 50.2%);
  box-shadow:
    inset 0 0 34px rgba(45, 203, 255, 0.11),
    0 0 40px rgba(255, 72, 203, 0.12);
  opacity: 0.9;
  animation: eacRadarPulse 4s ease-in-out infinite;
}

.eac-scan-line {
  position: absolute;
  width: min(74%, 460px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(70, 225, 255, 0.94), rgba(255, 78, 205, 0.8), transparent);
  box-shadow:
    0 0 20px rgba(70, 225, 255, 0.7),
    0 0 30px rgba(255, 78, 205, 0.32);
  transform: rotate(-16deg);
  animation: eacScanSweep 3.4s ease-in-out infinite;
}

.eac-logo-card {
  position: relative;
  z-index: 3;
  width: min(84%, 500px);
  min-height: clamp(150px, 13vw, 210px);
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 2.8vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(92, 219, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(10, 13, 26, 0.76), rgba(35, 18, 50, 0.62)),
    radial-gradient(240px 120px at 16% 20%, rgba(71, 221, 255, 0.16), transparent 72%),
    radial-gradient(260px 150px at 86% 80%, rgba(255, 70, 205, 0.13), transparent 76%);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(55, 210, 255, 0.2),
    0 0 42px rgba(255, 70, 205, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateX(9deg) rotateY(-12deg);
  animation: eacCoreFloat 6.6s ease-in-out infinite;
}

.eac-logo-card::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
  transform: translateX(-50%);
  animation: eacGlassSweep 4.2s ease-in-out infinite;
}

.eac-logo-card img {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter:
    brightness(1.2)
    contrast(1.08)
    drop-shadow(0 0 18px rgba(74, 203, 255, 0.34))
    drop-shadow(0 0 26px rgba(255, 70, 205, 0.12));
}

.eac-alert {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 8px 1fr;
  grid-template-areas:
    "dot title"
    "dot meta";
  column-gap: 10px;
  min-width: 168px;
  border-radius: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 106, 205, 0.24);
  background:
    linear-gradient(145deg, rgba(31, 16, 40, 0.88), rgba(11, 13, 25, 0.76)),
    radial-gradient(130px 80px at 20% 20%, rgba(255, 78, 205, 0.18), transparent 72%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(255, 70, 205, 0.16);
  backdrop-filter: none;
}

.eac-alert span {
  grid-area: dot;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #ff4f8e;
  box-shadow: 0 0 18px rgba(255, 79, 142, 0.78);
}

.eac-alert strong {
  grid-area: title;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eac-alert small {
  grid-area: meta;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.eac-alert-a {
  left: 1%;
  top: 20%;
  animation: eacAlertFloatA 5.6s ease-in-out infinite;
}

.eac-alert-b {
  right: 2%;
  top: 26%;
  animation: eacAlertFloatB 6.1s ease-in-out infinite;
}

.eac-alert-c {
  right: 11%;
  bottom: 14%;
  animation: eacAlertFloatC 5.8s ease-in-out infinite;
}

.eac-ping {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #4ee7ff;
  box-shadow:
    0 0 16px rgba(78, 231, 255, 0.78),
    0 0 30px rgba(255, 72, 203, 0.3);
  animation: eacPingPulse 2.8s ease-in-out infinite;
}

.eac-ping::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(78, 231, 255, 0.34);
  animation: eacPingRing 2.8s ease-out infinite;
}

.eac-ping-a {
  left: 20%;
  bottom: 26%;
}

.eac-ping-b {
  right: 19%;
  top: 14%;
  animation-delay: -0.9s;
}

.eac-ping-c {
  left: 46%;
  top: 11%;
  animation-delay: -1.8s;
}

.lb-phone-stage {
  perspective: 1000px;
  isolation: isolate;
}

.lb-phone-stage::before {
  width: min(96%, 620px);
  aspect-ratio: 1.1;
  background:
    radial-gradient(circle at 48% 52%, rgba(255, 88, 205, 0.28), transparent 42%),
    radial-gradient(circle, rgba(79, 226, 255, 0.16), rgba(118, 85, 255, 0.1) 48%, transparent 74%);
  animation: lbPhoneAura 5.6s ease-in-out infinite;
}

.lb-network-ring {
  position: absolute;
  width: min(76%, 480px);
  aspect-ratio: 1;
  border-radius: 34% 66% 54% 46% / 44% 42% 58% 56%;
  border: 1px solid rgba(255, 145, 228, 0.16);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.11), transparent 4%),
    radial-gradient(circle at 72% 28%, rgba(78, 226, 255, 0.16), transparent 5%),
    radial-gradient(circle at 68% 74%, rgba(255, 82, 205, 0.16), transparent 5%),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.14) 47% 47.5%, transparent 48% 100%),
    linear-gradient(24deg, transparent 0 42%, rgba(255, 255, 255, 0.11) 43% 43.5%, transparent 44% 100%);
  box-shadow:
    inset 0 0 30px rgba(255, 82, 205, 0.1),
    0 0 34px rgba(75, 220, 255, 0.12);
  transform: rotateX(62deg) rotateZ(-10deg);
  animation: lbConnectionPulse 5.4s ease-in-out infinite;
  pointer-events: none;
}

.lb-phone-core {
  position: relative;
  z-index: 3;
  width: min(100%, 560px);
  height: auto;
  display: block;
  filter:
    saturate(1.1)
    brightness(1.08)
    drop-shadow(0 28px 48px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 24px rgba(255, 72, 203, 0.2));
  animation: lbPhoneFloat 7s ease-in-out infinite;
}

.lb-app-card,
.lb-notification {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 151, 228, 0.23);
  background:
    linear-gradient(145deg, rgba(36, 24, 58, 0.86), rgba(12, 14, 28, 0.76)),
    radial-gradient(120px 80px at 18% 18%, rgba(255, 88, 205, 0.18), transparent 72%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(255, 82, 205, 0.15);
  backdrop-filter: none;
}

.lb-app-card {
  min-width: 166px;
  border-radius: 17px;
  padding: 13px 14px 13px 44px;
}

.lb-app-card span {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ff4cc8, #735fff);
  box-shadow: 0 0 18px rgba(255, 76, 200, 0.58);
}

.lb-app-card strong,
.lb-notification strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lb-app-card small,
.lb-notification small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 900;
}

.lb-app-messages {
  left: 0;
  top: 42%;
  animation: lbCardFloatA 5.8s ease-in-out infinite;
}

.lb-app-calls {
  right: 0;
  top: 44%;
  animation: lbCardFloatB 6.2s ease-in-out infinite;
}

.lb-app-business {
  left: 5%;
  bottom: 10%;
  animation: lbCardFloatC 6s ease-in-out infinite;
}

.lb-app-gps {
  right: 8%;
  bottom: 8%;
  animation: lbCardFloatD 6.4s ease-in-out infinite;
}

.lb-app-calls span {
  background: linear-gradient(135deg, #44efc6, #49c9ff);
  box-shadow: 0 0 18px rgba(68, 239, 198, 0.52);
}

.lb-app-business span {
  background: linear-gradient(135deg, #7d6cff, #49c9ff);
  box-shadow: 0 0 18px rgba(125, 108, 255, 0.52);
}

.lb-app-gps span {
  background: linear-gradient(135deg, #ffcf5a, #ff4cc8);
  box-shadow: 0 0 18px rgba(255, 207, 90, 0.44);
}

.lb-notification {
  right: 18%;
  top: 30%;
  min-width: 196px;
  border-radius: 18px;
  padding: 14px 16px;
  transform: rotateX(8deg) rotateY(-16deg);
  animation: lbNotificationIn 4.8s ease-in-out infinite;
}

.lb-notification::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4cc8;
  box-shadow: 0 0 16px rgba(255, 76, 200, 0.8);
}

.lb-type-text {
  position: relative;
  width: 19ch;
  height: 1.25em;
  overflow: hidden;
  white-space: nowrap;
}

.lb-type-text span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  max-width: var(--type-width);
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  animation:
    lbTypeMessage 12.8s steps(var(--type-steps), end) infinite,
    lbTypeCursor 0.8s steps(1, end) infinite;
  animation-delay: var(--type-delay), var(--type-delay);
}

.lb-signal {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.78),
    0 0 28px rgba(75, 220, 255, 0.5);
  animation: lbSignalPulse 2.8s ease-in-out infinite;
}

.lb-signal::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 1px;
  left: 6px;
  top: 4px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent);
}

.lb-signal-a {
  left: 22%;
  top: 49%;
}

.lb-signal-a::after {
  transform: rotate(26deg);
}

.lb-signal-b {
  right: 22%;
  top: 47%;
  animation-delay: -0.9s;
}

.lb-signal-b::after {
  transform: rotate(154deg);
}

.lb-signal-c {
  left: 40%;
  bottom: 16%;
  animation-delay: -1.6s;
}

.lb-signal-c::after {
  transform: rotate(-28deg);
}

.nui-info {
  padding-top: clamp(18px, 2.6vw, 38px);
}

.nui-info-layout {
  grid-template-columns: minmax(430px, 1fr) minmax(430px, 1fr);
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    radial-gradient(620px 300px at 75% 48%, rgba(42, 214, 255, 0.13), transparent 72%),
    radial-gradient(600px 280px at 32% 72%, rgba(255, 72, 203, 0.13), transparent 74%);
}

.nui-info-copy {
  max-width: 650px;
}

.nui-stage {
  position: relative;
  z-index: 2;
  min-height: clamp(360px, 30vw, 520px);
  display: grid;
  place-items: center;
  perspective: 1000px;
  isolation: isolate;
}

.nui-stage::before,
.nui-stage::after {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 42px;
  pointer-events: none;
}

.nui-stage::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 0 44%, transparent 72%);
  opacity: 0.55;
  animation: nuiGridDrift 12s linear infinite;
}

.nui-stage::after {
  background:
    conic-gradient(from 120deg, transparent 0 18%, rgba(255, 77, 205, 0.34), transparent 36% 64%, rgba(57, 218, 255, 0.2), transparent 82%),
    radial-gradient(circle, rgba(255, 92, 202, 0.17), transparent 66%);
  filter: blur(18px);
  opacity: 0.68;
  animation: nuiAuraSpin 10s linear infinite;
}

.nui-panel {
  position: absolute;
  border: 1px solid rgba(255, 161, 236, 0.22);
  background:
    linear-gradient(145deg, rgba(36, 24, 58, 0.82), rgba(14, 12, 27, 0.7)),
    radial-gradient(260px 160px at 80% 15%, rgba(73, 220, 255, 0.12), transparent 72%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(255, 75, 205, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.nui-panel-main {
  width: min(86%, 470px);
  min-height: 300px;
  border-radius: 22px;
  padding: 20px;
  transform: rotateX(8deg) rotateY(-12deg);
  animation: nuiPanelFloat 6.8s ease-in-out infinite;
}

.nui-panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.nui-panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5cca;
  box-shadow: 0 0 18px rgba(255, 92, 202, 0.75);
}

.nui-panel-top span:nth-child(2) {
  background: #7e6cff;
  box-shadow: 0 0 18px rgba(126, 108, 255, 0.7);
}

.nui-panel-top span:nth-child(3) {
  background: #40f1c4;
  box-shadow: 0 0 18px rgba(64, 241, 196, 0.66);
}

.nui-panel-title {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 91, 205, 0.22);
}

.nui-search {
  height: 40px;
  margin: 18px 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  background-size: 100% 100%, 80px 100%;
  background-position: 0 0, -90px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: nuiShimmer 2.6s ease-in-out infinite;
}

.nui-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.nui-grid span {
  min-height: 62px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(110px 70px at 18% 20%, rgba(255, 92, 202, 0.22), transparent 70%);
  animation: nuiTilePulse 4s ease-in-out infinite;
}

.nui-grid span:nth-child(2),
.nui-grid span:nth-child(3) {
  animation-delay: -1.4s;
}

.nui-progress {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.nui-progress span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff41c2, #7d6cff, #41e4ff);
  box-shadow: 0 0 18px rgba(255, 73, 203, 0.5);
  animation: nuiProgress 3.6s ease-in-out infinite;
}

.nui-panel-side {
  right: 4%;
  top: 18%;
  width: 188px;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
  transform: rotateX(8deg) rotateY(-18deg) translateZ(60px);
  animation: nuiSideFloat 6.4s ease-in-out infinite;
}

.nui-chip {
  display: block;
  border-radius: 12px;
  padding: 11px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nui-panel-mini {
  left: 5%;
  bottom: 18%;
  width: 154px;
  min-height: 118px;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 4px;
  transform: rotateX(10deg) rotateY(14deg) translateZ(50px);
  animation: nuiMiniFloat 5.8s ease-in-out infinite;
}

.nui-panel-mini span {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: #40f1c4;
  box-shadow: 0 0 18px rgba(64, 241, 196, 0.62);
}

.nui-panel-mini strong {
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.nui-panel-mini small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nui-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.75),
    0 0 30px rgba(255, 82, 205, 0.52);
  animation: nuiNodePulse 2.8s ease-in-out infinite;
}

.nui-node::after {
  content: "";
  position: absolute;
  inset: 4px auto auto 6px;
  width: 120px;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent);
}

.nui-node-a {
  top: 21%;
  left: 20%;
}

.nui-node-a::after {
  transform: rotate(22deg);
}

.nui-node-b {
  right: 17%;
  bottom: 19%;
  animation-delay: -0.8s;
}

.nui-node-b::after {
  transform: rotate(198deg);
}

.nui-node-c {
  right: 26%;
  top: 9%;
  animation-delay: -1.6s;
}

.nui-node-c::after {
  transform: rotate(132deg);
}

.about::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 45px;
  width: min(820px, 74vw);
  aspect-ratio: 942 / 320;
  transform: translateX(-54%);
  background: url("assets/car.webp") center / contain no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.about-watermark {
  position: absolute;
  inset: -24px 0 auto;
  text-align: center;
  font-size: clamp(100px, 12vw, 208px);
  line-height: 0.9;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  animation: ghostPulse 10s ease-in-out infinite reverse;
}

.about-layout {
  border: 0;
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 32px);
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(24px, 3vw, 52px);
  background:
    radial-gradient(760px 260px at 58% 54%, rgba(255, 92, 202, 0.1), transparent 76%),
    linear-gradient(120deg, rgba(49, 29, 76, 0.14), rgba(27, 12, 43, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.about-title {
  display: flex;
  align-items: center;
}

.about-title h2 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-shadow: 0 0 18px rgba(119, 39, 219, 0.32);
}

.about-box {
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(140deg, rgba(48, 28, 74, 0.48), rgba(31, 14, 56, 0.5));
  padding: clamp(18px, 2.6vw, 30px);
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.62;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-box:hover {
  --ty: -4px;
  box-shadow: var(--card-shadow), 0 0 26px rgba(130, 53, 230, 0.32);
  background: linear-gradient(140deg, rgba(58, 32, 86, 0.56), rgba(37, 17, 64, 0.56));
}

.about-box.glow-card::after,
.phone-info-copy.glow-card::after {
  display: none;
}

.about-box p {
  margin: 0 0 18px;
}

.about-box p strong {
  color: #fff;
  font-weight: 900;
}

.btn-readmore {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  color: #000;
  box-shadow: var(--shadow);
  height: 36px;
  font-size: 12px;
}

.socials {
  padding-top: 12px;
  padding-bottom: 52px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(12px, 2.2vw, 24px);
}

.social-card {
  --social-main: #ff4fd4;
  --social-alt: #7b61ff;
  --social-soft: rgba(255, 79, 212, 0.18);
  --social-deep: rgba(24, 13, 43, 0.7);
  position: relative;
  overflow: visible;
  isolation: isolate;
  border-radius: 18px;
  border: 0;
  min-height: 324px;
  display: grid;
  grid-template-rows: 1fr;
  align-items: end;
  text-align: center;
  gap: 8px;
  padding: 20px 22px 18px;
  background:
    radial-gradient(360px 210px at 24% 20%, var(--social-soft), transparent 68%),
    radial-gradient(420px 230px at 72% 82%, rgba(255, 255, 255, 0.08), transparent 70%),
    linear-gradient(145deg, rgba(46, 27, 72, 0.5), var(--social-deep));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 64px rgba(2, 3, 12, 0.28),
    0 0 36px color-mix(in srgb, var(--social-main) 18%, transparent);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.1) 30%, transparent 52%) -130% 0 / 90% 100% no-repeat,
    radial-gradient(circle at 22% 100%, color-mix(in srgb, var(--social-main) 34%, transparent), transparent 48%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  animation: socialCardSweep 5.8s ease-in-out infinite;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(to top, rgba(10, 5, 18, 0.48) 0%, rgba(10, 5, 18, 0.2) 42%, rgba(10, 5, 18, 0) 72%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
}

.social-card:hover {
  --ty: -5px;
  background:
    radial-gradient(390px 230px at 24% 20%, color-mix(in srgb, var(--social-main) 30%, transparent), transparent 70%),
    radial-gradient(460px 250px at 72% 82%, rgba(255, 255, 255, 0.12), transparent 72%),
    linear-gradient(145deg, rgba(58, 34, 90, 0.56), rgba(22, 11, 40, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 78px rgba(2, 3, 12, 0.34),
    0 0 48px color-mix(in srgb, var(--social-main) 28%, transparent);
}

.social-card .social-art {
  --art-offset: 0px;
  position: absolute;
  left: clamp(6px, 1vw, 16px);
  bottom: 0;
  width: clamp(230px, 27vw, 360px);
  max-width: 360px;
  max-height: none;
  margin: 0;
  display: block;
  justify-self: auto;
  align-self: auto;
  opacity: 0.95;
  object-fit: contain;
  object-position: left bottom;
  mix-blend-mode: normal;
  filter: brightness(0.97) contrast(1.05) saturate(0.96);
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate3d(0, var(--art-offset), 0);
  transition: transform 0.34s ease, opacity 0.3s ease, filter 0.3s ease;
  animation: socialArtFloat 7.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.social-card .social-brand-logo {
  position: absolute;
  top: 34px;
  left: 50%;
  width: clamp(98px, 16vw, 176px);
  max-width: 176px;
  transform: translate(-50%, 0);
  opacity: 0.52;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 14px rgba(182, 96, 255, 0.3));
  transition: transform 0.32s ease, opacity 0.32s ease, filter 0.32s ease;
  z-index: 2;
  pointer-events: none;
}

.social-card:hover .social-art {
  transform: translate3d(0, calc(var(--art-offset) - 6px), 0) scale(1.04);
  opacity: 1;
  filter: brightness(1) contrast(1.08) saturate(1);
}

.social-card:hover .social-brand-logo {
  transform: translate(-50%, -5px) scale(1.04);
  opacity: 0.74;
  filter: drop-shadow(0 0 20px rgba(199, 118, 255, 0.45));
}

.social-title {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.92;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 3;
  margin-top: 2px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.social-card:hover .social-title {
  color: #fff;
  text-shadow: 0 0 18px color-mix(in srgb, var(--social-main) 52%, transparent);
}

.social-card-content {
  position: relative;
  z-index: 4;
  text-align: left;
  width: min(62%, 380px);
  padding: 0 0 2px;
}

.social-discord .social-card-content {
  margin-left: auto;
}

.social-youtube .social-card-content {
  margin-right: auto;
}

.social-kicker {
  margin: 0 0 7px;
  color: var(--social-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px color-mix(in srgb, var(--social-main) 36%, transparent);
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.social-youtube .social-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 260px;
}

.social-stat {
  min-width: 0;
  border-radius: 12px;
  padding: 10px 8px 9px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--social-main) 18%, transparent), transparent 74%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 0.98;
  font-weight: 900;
}

.social-stat small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.social-stat.is-online strong::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #36ff88;
  box-shadow: 0 0 12px rgba(54, 255, 136, 0.72);
  vertical-align: 0.18em;
}

.social-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.social-discord .social-note {
  max-width: 360px;
  min-height: 38px;
}

.social-signal {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.social-signal i {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.social-discord {
  --social-main: #6f78ff;
  --social-alt: #41ffd1;
  --social-soft: rgba(88, 101, 242, 0.24);
  --social-deep: rgba(24, 18, 58, 0.72);
}

.social-youtube {
  --social-main: #ff3154;
  --social-alt: #ff7adc;
  --social-soft: rgba(255, 49, 84, 0.23);
  --social-deep: rgba(48, 12, 31, 0.72);
}

.social-discord .social-signal {
  right: clamp(18px, 1.8vw, 30px);
  top: clamp(18px, 1.8vw, 30px);
  width: 138px;
  height: 112px;
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(65, 255, 209, 0.12) 26.4% 26.8%, transparent 27.2% 100%),
    linear-gradient(31deg, transparent 0 44%, rgba(111, 120, 255, 0.16) 44.5% 45%, transparent 45.5% 100%),
    linear-gradient(145deg, transparent 0 48%, rgba(65, 255, 209, 0.13) 48.5% 49%, transparent 49.5% 100%);
  filter: drop-shadow(0 0 14px rgba(65, 255, 209, 0.16));
}

.social-discord .social-signal i {
  width: 11px;
  height: 11px;
  background: var(--social-alt);
  box-shadow: 0 0 18px rgba(65, 255, 209, 0.58);
  animation: discordNodePulse 2.4s ease-in-out infinite;
}

.social-discord .social-signal i:nth-child(1) {
  left: 10px;
  top: 24px;
}

.social-discord .social-signal i:nth-child(2) {
  left: 83px;
  top: 8px;
  animation-delay: -0.55s;
}

.social-discord .social-signal i:nth-child(3) {
  left: 58px;
  top: 74px;
  animation-delay: -1.1s;
}

.social-discord .social-signal::before,
.social-discord .social-signal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 15px 29px, rgba(65, 255, 209, 0.85) 0 4px, transparent 5px),
    radial-gradient(circle at 88px 13px, rgba(111, 120, 255, 0.85) 0 4px, transparent 5px),
    radial-gradient(circle at 63px 79px, rgba(65, 255, 209, 0.75) 0 4px, transparent 5px),
    linear-gradient(102deg, transparent 0 18%, rgba(65, 255, 209, 0.38) 18.4% 18.9%, transparent 19.4% 100%),
    linear-gradient(23deg, transparent 0 44%, rgba(111, 120, 255, 0.38) 44.4% 44.9%, transparent 45.4% 100%);
  opacity: 0.56;
  animation: socialLineFlow 2.8s linear infinite;
}

.social-discord .social-signal::after {
  inset: 10px -8px -6px 14px;
  background:
    radial-gradient(circle at 92px 60px, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px),
    linear-gradient(146deg, transparent 0 51%, rgba(65, 255, 209, 0.36) 51.5% 52%, transparent 52.5% 100%),
    linear-gradient(72deg, transparent 0 38%, rgba(111, 120, 255, 0.28) 38.5% 39%, transparent 39.5% 100%);
  opacity: 0.46;
  animation-delay: -1.1s;
}

.social-youtube .social-signal {
  left: clamp(24px, 2.1vw, 38px);
  top: clamp(24px, 2.1vw, 38px);
  width: 108px;
  height: 78px;
}

.social-youtube .social-signal::before {
  content: "";
  position: absolute;
  inset: 7px 4px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 38%, rgba(255, 255, 255, 0.16)),
    color-mix(in srgb, var(--social-main) 42%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--social-main) 28%, transparent);
  opacity: 0.54;
}

.social-youtube .social-signal::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid rgba(255, 255, 255, 0.82);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.36));
  animation: youtubePlayPulse 2.1s ease-in-out infinite;
}

.social-youtube .social-signal i {
  position: absolute;
  display: block;
}

.social-youtube .social-signal i:nth-child(1) {
  --youtube-trace-angle: 0deg;
  inset: 4px 1px 3px;
  height: auto;
  border-radius: 26px;
  padding: 2px;
  background:
    conic-gradient(from var(--youtube-trace-angle), transparent 0 64%, rgba(255, 49, 84, 0.95) 72%, #ffffff 78%, rgba(255, 122, 220, 0.95) 84%, transparent 92% 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: youtubeTraceSpin 2.4s linear infinite;
  filter: drop-shadow(0 0 11px rgba(255, 49, 84, 0.48));
}

.social-youtube .social-signal i:nth-child(2) {
  display: none;
}

.social-youtube .social-signal i:nth-child(3) {
  right: 12px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  animation: youtubeSpark 2.4s ease-in-out infinite;
}

.social-discord .social-art {
  --art-offset: -2px;
  left: clamp(-56px, -3.1vw, -30px);
  bottom: 0;
  width: clamp(172px, 20vw, 252px);
  max-width: 252px;
  -webkit-mask-image: none;
  mask-image: none;
  animation: none;
}

.social-youtube .social-art {
  width: clamp(266px, 34vw, 470px);
  max-width: 470px;
  object-fit: contain;
  object-position: right bottom;
  left: auto;
  right: clamp(-188px, -9.8vw, -122px);
  bottom: -62px;
  --art-offset: -3px;
  -webkit-mask-image: none;
  mask-image: none;
  animation-duration: 7.2s;
  animation-delay: -1.2s;
}

.social-discord .social-brand-logo {
  top: 34px;
  left: 50%;
}

.social-youtube .social-brand-logo {
  width: clamp(94px, 15vw, 162px);
  top: 34px;
  left: 50%;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 12px 0 36px;
}

.footer-line {
  height: 1px;
  margin-bottom: 2px;
  background: linear-gradient(90deg, rgba(134, 46, 255, 0) 0%, rgba(134, 46, 255, 0.33) 12%, rgba(134, 46, 255, 0.33) 88%, rgba(134, 46, 255, 0) 100%);
  opacity: 0.55;
}

.footer-inner {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  line-height: 1.5;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.25fr) minmax(360px, 0.95fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: end;
}

.footer-left {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding-left: 0;
  max-width: min(100%, 920px);
}

.footer-left::before {
  content: "";
  position: absolute;
  left: clamp(-220px, -15vw, -160px);
  bottom: -18px;
  width: clamp(170px, 13vw, 250px);
  height: clamp(170px, 13vw, 250px);
  top: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 109, 255, 0.16) 0%, rgba(171, 109, 255, 0) 74%);
  filter: blur(13px);
  pointer-events: none;
  z-index: 0;
}

.footer-links,
.footer-note,
.footer-disclaimer {
  position: relative;
  z-index: 1;
  margin: 0;
}

.footer-note,
.footer-links {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  position: relative;
  transition: color 0.24s ease, text-shadow 0.24s ease;
}

.footer-links a + a {
  padding-left: 14px;
}

.footer-links a + a::before {
  content: "|";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.28);
}

.footer-links a:hover {
  color: rgba(219, 186, 255, 0.95);
  text-shadow: 0 0 10px rgba(163, 86, 255, 0.45);
}

.footer-disclaimer {
  max-width: min(100%, 720px);
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.4);
}

.footer-right {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 14px;
}

.footer-right::before {
  content: "";
  position: absolute;
  left: clamp(38px, 3.6vw, 84px);
  right: auto;
  bottom: 2px;
  width: clamp(230px, 24vw, 340px);
  height: clamp(132px, 15vw, 210px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 45% 58%,
    rgba(182, 112, 255, 0.4) 0%,
    rgba(146, 86, 236, 0.24) 38%,
    rgba(77, 38, 130, 0) 82%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.footer-palm {
  position: absolute;
  left: clamp(-248px, -16.5vw, -182px);
  bottom: -74px;
  width: clamp(218px, 16.4vw, 294px);
  top: auto;
  height: auto;
  z-index: 0;
  opacity: 0.33;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.16) contrast(1.18) saturate(0) drop-shadow(0 0 18px rgba(255, 148, 222, 0.24));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.footer-character {
  position: relative;
  z-index: 2;
  width: clamp(300px, 33vw, 470px);
  display: block;
  opacity: 0.83;
  filter: grayscale(1) contrast(1.1) brightness(0.96) drop-shadow(0 20px 34px rgba(0, 0, 0, 0.52));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 80%, transparent 100%);
}

.footer-payments {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.payment-chip {
  width: 120px;
  min-width: 120px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.payment-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.38), 0 0 18px rgba(196, 118, 255, 0.2);
}

.payment-logo {
  width: 74%;
  height: 62%;
  object-fit: contain;
  opacity: 0.94;
  filter: grayscale(1) brightness(2.02) contrast(1.08) sepia(0.86) hue-rotate(234deg) saturate(1.14);
  mix-blend-mode: screen;
  pointer-events: none;
}

.payment-logo-paypal {
  width: 74%;
  height: 78%;
}

.payment-logo-visa {
  width: 82%;
  height: 56%;
}

.payment-logo-maestro {
  width: 52%;
  height: 46%;
  object-fit: contain;
  clip-path: none;
  filter: grayscale(1) brightness(1.78) contrast(1.16) sepia(0.74) hue-rotate(236deg) saturate(1.08);
}

.payment-chip:hover .payment-logo {
  filter: grayscale(1) brightness(2.16) contrast(1.12) sepia(0.92) hue-rotate(234deg) saturate(1.2);
}

.payment-chip:hover .payment-logo-maestro {
  filter: grayscale(1) brightness(1.92) contrast(1.2) sepia(0.82) hue-rotate(236deg) saturate(1.14);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 118, 210, 0.24),
    rgba(255, 118, 210, 0.08) 32%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.social-card.glow-card::before {
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 118, 210, 0.24),
    rgba(255, 118, 210, 0.08) 36%,
    transparent 72%
  );
}

.tilt-card {
  --rx: 0deg;
  --ry: 0deg;
  --ty: 0px;
  transform: perspective(920px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty));
  transform-style: preserve-3d;
  will-change: transform;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 130, 214, 0.12);
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes auroraShift {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-18px);
    opacity: 0.86;
  }
}

@keyframes floatOrbA {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(70px, 100px);
  }
}

@keyframes floatOrbB {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, 60px) scale(1.08);
  }
}

@keyframes floatOrbC {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, -82px);
  }
}

@keyframes socialArtFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes socialCardSweep {
  0%,
  58%,
  100% {
    background-position: -130% 0, 0 0;
  }

  76% {
    background-position: 150% 0, 0 0;
  }
}

@keyframes discordNodePulse {
  0%,
  100% {
    opacity: 0.62;
    scale: 0.86;
  }

  50% {
    opacity: 1;
    scale: 1.18;
  }
}

@keyframes socialLineFlow {
  0% {
    opacity: 0.2;
    filter: drop-shadow(0 0 0 rgba(65, 255, 209, 0));
  }

  50% {
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(65, 255, 209, 0.42));
  }

  100% {
    opacity: 0.2;
    filter: drop-shadow(0 0 0 rgba(65, 255, 209, 0));
  }
}

@keyframes youtubePlayPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.76;
  }

  48% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes youtubeProgress {
  0%,
  100% {
    transform: scaleX(0.18);
    opacity: 0.48;
  }

  54% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes youtubeTraceSpin {
  0% {
    --youtube-trace-angle: 0deg;
  }

  100% {
    --youtube-trace-angle: 360deg;
  }
}

@keyframes youtubeSpark {
  0%,
  100% {
    opacity: 0;
    transform: translate(-2px, 18px) scale(0.7);
  }

  45% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  72% {
    opacity: 0.55;
    transform: translate(-42px, 45px) scale(0.8);
  }
}

@keyframes palmDriftLeft {
  0% {
    transform: translateY(0) rotate(-2deg);
  }

  100% {
    transform: translateY(-14px) rotate(-6deg);
  }
}

@keyframes palmDriftRight {
  0% {
    transform: scaleX(-1) translateY(0) rotate(6deg);
  }

  100% {
    transform: scaleX(-1) translateY(-14px) rotate(10deg);
  }
}

@keyframes particleRainFallA {
  0% {
    transform: translate3d(0, -12%, 0);
  }

  32% {
    transform: translate3d(-7px, 18%, 0);
  }

  68% {
    transform: translate3d(6px, 52%, 0);
  }

  100% {
    transform: translate3d(-3px, 88%, 0);
  }
}

@keyframes particleRainFallB {
  0% {
    transform: translate3d(0, -12%, 0);
  }

  45% {
    transform: translate3d(10px, 38%, 0);
  }

  100% {
    transform: translate3d(-8px, 88%, 0);
  }
}

@keyframes particleRainFallC {
  0% {
    transform: translate3d(0, -12%, 0);
  }

  28% {
    transform: translate3d(12px, 24%, 0);
  }

  62% {
    transform: translate3d(-10px, 56%, 0);
  }

  100% {
    transform: translate3d(7px, 88%, 0);
  }
}

@keyframes ghostPulse {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 16px rgba(255, 107, 208, 0.35);
  }

  50% {
    text-shadow: 0 0 28px rgba(255, 120, 214, 0.58);
  }
}

@keyframes legacyPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(202, 103, 255, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(255, 124, 214, 0.62));
  }
}

@keyframes mottoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes floatGirl {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes startArtFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes startGlowPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.48;
  }

  50% {
    opacity: 0.24;
  }
}

@keyframes nuiGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 34px 34px, 34px 34px;
  }
}

@keyframes nuiAuraSpin {
  from {
    transform: rotate(0deg) scale(0.96);
  }

  to {
    transform: rotate(360deg) scale(0.96);
  }
}

@keyframes nuiPanelFloat {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-12deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(10deg) rotateY(-8deg) translate3d(0, -18px, 24px);
  }
}

@keyframes nuiSideFloat {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-18deg) translate3d(0, 0, 60px);
  }

  50% {
    transform: rotateX(12deg) rotateY(-14deg) translate3d(-8px, 18px, 76px);
  }
}

@keyframes nuiMiniFloat {
  0%,
  100% {
    transform: rotateX(10deg) rotateY(14deg) translate3d(0, 0, 50px);
  }

  50% {
    transform: rotateX(7deg) rotateY(18deg) translate3d(10px, -14px, 68px);
  }
}

@keyframes nuiShimmer {
  0%,
  100% {
    background-position: 0 0, -90px 0;
  }

  50% {
    background-position: 0 0, 360px 0;
  }
}

@keyframes nuiTilePulse {
  0%,
  100% {
    opacity: 0.74;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes nuiProgress {
  0%,
  100% {
    width: 54%;
  }

  50% {
    width: 92%;
  }
}

@keyframes nuiNodePulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes eacMatrixDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 32px 32px, 32px 32px;
  }
}

@keyframes eacScannerSpin {
  from {
    transform: rotate(0deg) scale(0.96);
  }

  to {
    transform: rotate(360deg) scale(0.96);
  }
}

@keyframes eacRadarPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes eacScanSweep {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-130px) rotate(-16deg) scaleX(0.78);
  }

  16%,
  82% {
    opacity: 1;
  }

  50% {
    transform: translateY(128px) rotate(-16deg) scaleX(1);
  }
}

@keyframes eacCoreFloat {
  0%,
  100% {
    transform: rotateX(9deg) rotateY(-12deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(11deg) rotateY(-8deg) translate3d(0, -18px, 24px);
  }
}

@keyframes eacGlassSweep {
  0%,
  100% {
    transform: translateX(-60%) rotate(0deg);
    opacity: 0;
  }

  45%,
  58% {
    opacity: 1;
  }

  70% {
    transform: translateX(70%) rotate(0deg);
    opacity: 0;
  }
}

@keyframes eacAlertFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 34px);
  }

  50% {
    transform: translate3d(10px, -13px, 50px);
  }
}

@keyframes eacAlertFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 42px);
  }

  50% {
    transform: translate3d(-12px, 14px, 58px);
  }
}

@keyframes eacAlertFloatC {
  0%,
  100% {
    transform: translate3d(0, 0, 38px);
  }

  50% {
    transform: translate3d(-8px, -16px, 54px);
  }
}

@keyframes eacPingPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes eacPingRing {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes lbPhoneAura {
  0%,
  100% {
    opacity: 0.68;
    transform: translateY(24px) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translateY(18px) scale(1.04);
  }
}

@keyframes lbConnectionPulse {
  0%,
  100% {
    opacity: 0.54;
    transform: rotateX(62deg) rotateZ(-10deg) scale(0.95);
    border-radius: 34% 66% 54% 46% / 44% 42% 58% 56%;
  }

  50% {
    opacity: 0.92;
    transform: rotateX(62deg) rotateZ(-10deg) scale(1.04);
    border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%;
  }
}

@keyframes lbPhoneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }

  50% {
    transform: translate3d(0, -14px, 22px) rotateZ(-1.5deg);
  }
}

@keyframes lbCardFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 48px);
  }

  50% {
    transform: translate3d(12px, -14px, 66px);
  }
}

@keyframes lbCardFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 52px);
  }

  50% {
    transform: translate3d(-14px, 12px, 70px);
  }
}

@keyframes lbCardFloatC {
  0%,
  100% {
    transform: translate3d(0, 0, 44px);
  }

  50% {
    transform: translate3d(10px, 13px, 60px);
  }
}

@keyframes lbCardFloatD {
  0%,
  100% {
    transform: translate3d(0, 0, 46px);
  }

  50% {
    transform: translate3d(-12px, -13px, 64px);
  }
}

@keyframes lbNotificationIn {
  0%,
  100% {
    opacity: 0.74;
    transform: rotateX(8deg) rotateY(-16deg) translate3d(0, 8px, 44px);
  }

  18%,
  70% {
    opacity: 1;
  }

  50% {
    transform: rotateX(10deg) rotateY(-12deg) translate3d(-8px, -10px, 64px);
  }
}

@keyframes lbSignalPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes lbTypeMessage {
  0%,
  3% {
    opacity: 0;
    width: 0;
  }

  5% {
    opacity: 1;
    width: 0;
  }

  15%,
  18% {
    opacity: 1;
    width: var(--type-width);
  }

  22% {
    opacity: 0;
    width: var(--type-width);
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes lbTypeCursor {
  0%,
  48% {
    border-right-color: rgba(255, 255, 255, 0.82);
  }

  49%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes teamGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 36px 36px, 36px 36px;
  }
}

@keyframes teamAuraTurn {
  from {
    transform: translateX(-50%) rotate(0deg) scale(0.96);
  }

  to {
    transform: translateX(-50%) rotate(360deg) scale(0.96);
  }
}

@keyframes teamNodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 18px);
  }
}

@keyframes teamCardSheen {
  0%,
  100% {
    transform: translateX(-70%);
    opacity: 0;
  }

  44%,
  56% {
    opacity: 1;
  }

  72% {
    transform: translateX(74%);
    opacity: 0;
  }
}

@keyframes teamRoleMarkPulse {
  0%,
  100% {
    filter: brightness(1);
    transform: translateY(0) scale(1);
  }

  50% {
    filter: brightness(1.22);
    transform: translateY(-2px) scale(1.06);
  }
}

@keyframes teamRoleLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes teamPathGrid {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 0 0, 0 0, 38px 38px, 38px 38px;
  }
}

@keyframes teamPathAura {
  from {
    transform: translate(-50%, -50%) rotate(-8deg) scale(0.96);
  }

  to {
    transform: translate(-50%, -50%) rotate(352deg) scale(0.96);
  }
}

@keyframes teamPathBacklight {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes teamPathFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -734;
  }
}

@keyframes teamPathPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes teamPathPing {
  0% {
    opacity: 0.7;
    transform: scale(0.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes teamCommandGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 26px 0;
  }
}

@keyframes teamCommandSweep {
  0%,
  100% {
    opacity: 0.22;
    transform: translateY(0) scaleX(0.7);
  }

  50% {
    opacity: 1;
    transform: translateY(70px) scaleX(1);
  }
}

@keyframes teamCommandRing {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.84) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.08) rotate(90deg);
  }
}

@keyframes teamAdminPattern {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 54px 54px;
  }
}

@keyframes teamAdminScan {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(-18deg);
  }

  22%,
  78% {
    opacity: 1;
  }

  50% {
    transform: translateX(220px) rotate(-18deg);
  }
}

@keyframes teamAdminDot {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes teamModGlow {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes teamModWave {
  0%,
  100% {
    opacity: 0.28;
    transform: rotate(-12deg) scale(0.86);
  }

  50% {
    opacity: 0.88;
    transform: rotate(-12deg) scale(1.12);
  }
}

@keyframes teamModSignal {
  0%,
  100% {
    opacity: 0.26;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(34px);
  }
}

@keyframes teamSupportGlow {
  0%,
  100% {
    opacity: 0.66;
  }

  50% {
    opacity: 1;
  }
}

@keyframes teamSupportSweep {
  0%,
  100% {
    opacity: 0.22;
    transform: translateY(-20px) scaleX(0.64);
  }

  50% {
    opacity: 1;
    transform: translateY(38px) scaleX(1);
  }
}

@keyframes teamSupportBubble {
  0%,
  100% {
    opacity: 0.36;
    transform: translateY(0) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes teamDevGrid {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 22px 22px, 22px 22px;
  }
}

@keyframes teamDevCode {
  0%,
  100% {
    opacity: 0.24;
    transform: translateY(0);
  }

  50% {
    opacity: 0.72;
    transform: translateY(-6px);
  }
}

@keyframes teamDevCompile {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.62);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes statusPulseOnline {
  0% {
    transform: scale(0.9);
    box-shadow:
      0 0 0 3px rgba(47, 226, 132, 0.24),
      0 0 0 0 rgba(47, 226, 132, 0.5);
  }

  70% {
    transform: scale(1);
    box-shadow:
      0 0 0 3px rgba(47, 226, 132, 0.14),
      0 0 0 8px rgba(47, 226, 132, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow:
      0 0 0 3px rgba(47, 226, 132, 0.24),
      0 0 0 0 rgba(47, 226, 132, 0);
  }
}

@keyframes statusPulseOffline {
  0% {
    transform: scale(0.9);
    box-shadow:
      0 0 0 3px rgba(255, 75, 75, 0.24),
      0 0 0 0 rgba(255, 75, 75, 0.5);
  }

  70% {
    transform: scale(1);
    box-shadow:
      0 0 0 3px rgba(255, 75, 75, 0.14),
      0 0 0 8px rgba(255, 75, 75, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow:
      0 0 0 3px rgba(255, 75, 75, 0.24),
      0 0 0 0 rgba(255, 75, 75, 0);
  }
}

@keyframes spinRefresh {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.legal-main {
  position: relative;
  z-index: 3;
  padding: clamp(110px, 14vw, 160px) 0 56px;
}

.legal-wrap {
  display: grid;
  gap: 22px;
}

.legal-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(154, 73, 255, 0.45);
}

.legal-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(48, 28, 74, 0.54), rgba(28, 12, 47, 0.52));
  box-shadow: 0 18px 30px rgba(4, 2, 10, 0.5);
  padding: clamp(18px, 2.6vw, 30px);
  display: grid;
  gap: 16px;
}

.legal-card h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
}

.legal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  line-height: 1.7;
  font-weight: 300;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.83);
  line-height: 1.7;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-head {
  display: grid;
  gap: 14px;
}

.portal-kicker {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178, 111, 255, 0.42);
  background: rgba(48, 24, 76, 0.52);
  color: rgba(244, 230, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 95, 200, 0.56);
}

.portal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 12px;
  border: 1px solid rgba(175, 109, 255, 0.34);
  background: rgba(51, 27, 82, 0.56);
  color: rgba(247, 238, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
}

.meta-badge strong {
  color: #fff;
}

.rules-jump-cta {
  width: auto;
  min-width: 188px;
  height: 34px;
  padding-inline: 14px;
  font-size: 12px;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(158, 84, 255, 0.42);
  background: rgba(43, 21, 70, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.legal-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 164, 255, 0.82);
  box-shadow: 0 0 18px rgba(141, 63, 241, 0.4);
}

.legal-chip.active {
  border-color: rgba(220, 178, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(220, 178, 255, 0.4);
}

.rules-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 20px;
  align-items: start;
}

.rules-wrap > h1,
.rules-wrap > .rules-subtitle,
.rules-wrap > .portal-head,
.rules-wrap > .legal-nav,
.rules-wrap > .rules-overview,
.rules-wrap > .rules-tools,
.rules-wrap > .filter-chips {
  grid-column: 1 / -1;
}

.rules-subtitle {
  max-width: min(100%, 960px);
}

.rules-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rules-metric {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transition: color 0.2s ease;
}

.rules-metric + .rules-metric {
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.rules-metric strong {
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  transition: text-shadow 0.2s ease, transform 0.2s ease;
}

.rules-metric span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.rules-metric:hover strong {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.rules-metric:hover span {
  color: rgba(255, 255, 255, 0.94);
}

.rules-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 12px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  appearance: none;
  border: 1px solid rgba(165, 95, 255, 0.34);
  background: rgba(44, 22, 71, 0.72);
  color: rgba(239, 231, 250, 0.92);
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-chip:hover {
  border-color: rgba(225, 186, 255, 0.72);
  color: #fff;
}

.filter-chip.is-active {
  border-color: rgba(229, 190, 255, 0.9);
  background: rgba(82, 39, 126, 0.86);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(224, 182, 255, 0.34);
}

.rules-search,
.rules-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rules-search input,
.rules-select select {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(173, 106, 255, 0.28);
  background: linear-gradient(145deg, rgba(48, 24, 76, 0.42), rgba(21, 10, 37, 0.5));
  color: rgba(252, 247, 255, 0.95);
  font: inherit;
  font-size: 15px;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rules-search input::placeholder {
  color: rgba(222, 208, 240, 0.62);
}

.rules-search input:focus,
.rules-select select:focus {
  border-color: rgba(227, 189, 255, 0.76);
  box-shadow: 0 0 0 1px rgba(227, 189, 255, 0.26), 0 0 18px rgba(146, 74, 244, 0.18);
}

.rules-sidebar {
  grid-column: 1;
  min-width: 0;
  position: sticky;
  top: 118px;
  align-self: start;
}

.rules-content {
  grid-column: 2;
  min-width: 0;
  display: grid;
  gap: 20px;
  align-content: start;
}

.rules-toc {
  position: static;
  top: auto;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 12px 10px 10px;
  border-radius: 18px;
  border: 1px solid rgba(164, 94, 255, 0.26);
  background:
    linear-gradient(168deg, rgba(55, 28, 90, 0.52), rgba(23, 10, 39, 0.66)),
    rgba(16, 9, 29, 0.58);
  box-shadow:
    0 18px 36px rgba(4, 2, 9, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-height: calc(100vh - 150px);
  overflow: auto;
  scrollbar-width: thin;
  backdrop-filter: blur(12px);
  counter-reset: rulechapters;
}

.rules-toc::-webkit-scrollbar {
  width: 6px;
}

.rules-toc::-webkit-scrollbar-thumb {
  background: rgba(198, 143, 255, 0.34);
  border-radius: 999px;
}

.rules-toc-head {
  display: grid;
  gap: 3px;
  margin: 0 2px 8px;
  padding: 2px 2px 10px;
  border-bottom: 1px solid rgba(189, 126, 255, 0.22);
}

.rules-toc-kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(230, 190, 255, 0.8);
}

.rules-toc-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: rgba(250, 244, 255, 0.96);
}

.rules-toc-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  column-gap: 8px;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(165, 95, 255, 0.18);
  background: rgba(128, 75, 196, 0.04);
  color: rgba(238, 228, 250, 0.9);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  line-height: 1.25;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.rules-toc-item::before {
  counter-increment: rulechapters;
  content: counter(rulechapters, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(173, 111, 255, 0.28);
  background: linear-gradient(140deg, rgba(123, 66, 198, 0.26), rgba(69, 33, 118, 0.16));
  color: rgba(240, 224, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.rules-toc-item:hover {
  transform: translateX(2px);
  border-color: rgba(222, 180, 255, 0.46);
  background: rgba(188, 121, 255, 0.14);
  color: rgba(252, 247, 255, 0.98);
  box-shadow: 0 0 18px rgba(147, 70, 238, 0.22);
}

.rules-toc-item.is-active {
  border-color: rgba(234, 202, 255, 0.65);
  background: linear-gradient(138deg, rgba(188, 120, 255, 0.26), rgba(90, 45, 150, 0.18));
  color: rgba(255, 253, 255, 1);
  box-shadow:
    0 0 0 1px rgba(236, 199, 255, 0.24),
    0 0 22px rgba(165, 86, 255, 0.26);
}

.rules-toc-item.is-active::before {
  border-color: rgba(242, 211, 255, 0.7);
  background: linear-gradient(140deg, rgba(212, 151, 255, 0.44), rgba(111, 58, 181, 0.32));
  color: rgba(255, 255, 255, 1);
}

.rules-toc-item:focus-visible {
  outline: none;
  border-color: rgba(229, 194, 255, 0.94);
  background: rgba(193, 125, 255, 0.16);
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 1px rgba(229, 194, 255, 0.52);
}

.rules-toc--rulebook {
  gap: 8px;
  padding: 10px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.rules-toc--rulebook .rules-toc-head {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 0;
}

.rules-toc--rulebook .rules-toc-list {
  margin: 0;
  padding: 3px 0 3px 18px;
  list-style: none;
  display: grid;
  gap: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.rules-toc--rulebook .rules-toc-list-item {
  margin: 0;
}

.rules-toc--rulebook .rules-toc-item {
  position: relative;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 43px;
  column-gap: 10px;
  padding: 8px 12px 8px 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transform: none;
}

.rules-toc--rulebook .rules-toc-item::before {
  content: none;
}

.rules-toc--rulebook .rules-toc-item::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%) scale(0.78);
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rules-toc--rulebook .rules-toc-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.rules-toc--rulebook .rules-toc-label {
  display: block;
  color: inherit;
  font-size: 14px;
  line-height: 1.32;
}

.rules-toc--rulebook .rules-toc-item:hover {
  color: rgba(248, 232, 255, 1);
  background: transparent;
  transform: translateX(0);
  box-shadow: none;
}

.rules-toc--rulebook .rules-toc-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  background: rgba(236, 183, 255, 0.94);
}

.rules-toc--rulebook .rules-toc-item.is-active,
.rules-toc--rulebook .rules-toc-item[aria-current="true"] {
  border: 0;
  background: transparent;
  color: rgba(234, 164, 255, 1);
  box-shadow: none;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(194, 96, 255, 0.26);
}

.rules-toc--rulebook .rules-toc-item.is-active::after,
.rules-toc--rulebook .rules-toc-item[aria-current="true"]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  background: rgba(233, 144, 255, 1);
}

.rules-toc--rulebook .rules-toc-item.is-active .rules-toc-index,
.rules-toc--rulebook .rules-toc-item[aria-current="true"] .rules-toc-index {
  border: 0;
  background: transparent;
  color: rgba(238, 176, 255, 1);
}

.rules-toc--rulebook .rules-toc-item:focus-visible {
  border: 0;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(236, 182, 255, 0.6), 0 0 0 4px rgba(182, 92, 255, 0.2);
}

.rules-toc--rulebook .rules-toc-item:focus-visible .rules-toc-index {
  border: 0;
  background: transparent;
  color: rgba(236, 184, 255, 1);
}

.rules-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border-color: rgba(166, 97, 255, 0.28);
  background:
    linear-gradient(155deg, rgba(58, 32, 92, 0.52), rgba(23, 11, 40, 0.62)),
    rgba(18, 10, 31, 0.58);
  box-shadow:
    0 22px 36px rgba(4, 2, 10, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  scroll-margin-top: 140px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.rules-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 36%);
  opacity: 0.56;
}

.rules-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 172, 255, 0.44);
  box-shadow:
    0 24px 38px rgba(4, 2, 10, 0.56),
    0 0 24px rgba(149, 73, 241, 0.2);
}

.rules-card h2 {
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  letter-spacing: 0.01em;
  text-shadow: 0 0 16px rgba(180, 109, 255, 0.22);
}

.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rules-list li {
  border-radius: 14px;
  border: 1px solid rgba(177, 106, 255, 0.24);
  background: linear-gradient(140deg, rgba(62, 33, 99, 0.3), rgba(31, 15, 52, 0.36));
  padding: 12px 14px;
  color: rgba(239, 231, 250, 0.88);
  line-height: 1.58;
  font-size: 14px;
}

.rules-list li strong {
  color: #ffffff;
}

.rules-list li.rules-item-critical {
  border-color: rgba(255, 151, 151, 0.42);
  background: linear-gradient(140deg, rgba(84, 30, 54, 0.5), rgba(46, 17, 34, 0.5));
}

.rules-list li.rules-item-critical::before {
  content: "Wichtig";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  margin-right: 8px;
  margin-bottom: 6px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 178, 0.52);
  background: rgba(116, 33, 61, 0.62);
  color: rgba(255, 223, 223, 0.96);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rules-fulltext-toggle {
  border-radius: 20px;
  border: 1px solid rgba(162, 90, 255, 0.32);
  background: linear-gradient(145deg, rgba(56, 30, 92, 0.52), rgba(27, 12, 46, 0.58));
  box-shadow:
    0 18px 30px rgba(4, 2, 10, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.rules-fulltext-toggle summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 18px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(252, 247, 255, 0.96);
  letter-spacing: 0.02em;
}

.rules-fulltext-toggle summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(208, 156, 255, 0.4);
  color: rgba(248, 236, 255, 0.96);
  background: rgba(141, 80, 220, 0.2);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.rules-fulltext-toggle[open] summary::after {
  transform: rotate(45deg);
  background: rgba(189, 132, 255, 0.28);
  border-color: rgba(238, 207, 255, 0.58);
}

.rules-fulltext-toggle summary::-webkit-details-marker {
  display: none;
}

.rules-fulltext {
  border-top: 1px solid rgba(162, 90, 255, 0.28);
  padding: 16px 18px 22px;
  color: rgba(243, 236, 252, 0.88);
  line-height: 1.62;
  white-space: pre-line;
}

.rules-empty {
  margin: 0;
  border-radius: 14px;
  border: 1px dashed rgba(181, 121, 255, 0.4);
  background: rgba(45, 22, 72, 0.34);
  color: rgba(241, 231, 250, 0.9);
  padding: 14px 16px;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(173, 107, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(52, 28, 82, 0.52), rgba(25, 12, 44, 0.48)),
    rgba(16, 9, 30, 0.54);
  box-shadow: 0 12px 28px rgba(6, 3, 12, 0.34);
  overflow: clip;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item[hidden] {
  display: none !important;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 185, 255, 0.45);
  box-shadow: 0 16px 30px rgba(11, 6, 20, 0.42);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(251, 248, 255, 0.96);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid rgba(195, 139, 255, 0.32);
  background: linear-gradient(138deg, rgba(143, 80, 220, 0.3), rgba(92, 44, 154, 0.2));
  color: rgba(247, 236, 255, 0.92);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(235, 203, 255, 0.6);
  background: linear-gradient(138deg, rgba(198, 135, 255, 0.42), rgba(105, 52, 174, 0.26));
}

.faq-item p {
  margin: 0;
  border-top: 1px solid rgba(176, 109, 255, 0.24);
  padding: 13px 16px 15px;
  color: rgba(240, 231, 250, 0.88);
  line-height: 1.6;
}

.team-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.team-role-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 142, 224, 0.22);
  background:
    linear-gradient(145deg, rgba(36, 24, 58, 0.76), rgba(12, 14, 28, 0.68)),
    radial-gradient(160px 100px at 18% 18%, rgba(255, 84, 205, 0.13), transparent 72%);
  padding: 18px 16px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.team-role-card::after {
  content: none;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 84, 205, 0.7), transparent);
  box-shadow: 0 0 12px rgba(255, 84, 205, 0.36);
  animation: teamRoleLine 3.8s ease-in-out infinite;
}

.team-role-icon {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  border-radius: 14px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.9), transparent 15%),
    linear-gradient(135deg, #ff3b4f, #ff4cc8 54%, #41e7ff);
  box-shadow:
    0 0 20px rgba(255, 84, 205, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  margin-bottom: 12px;
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.team-role-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 251, 255, 0.98);
}

.team-role-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(239, 228, 250, 0.86);
  line-height: 1.58;
}

.team-main {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.team-hero {
  position: relative;
  padding: clamp(70px, 8vw, 128px) 0 clamp(32px, 5vw, 70px);
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 320px at 50% 30%, rgba(255, 65, 84, 0.12), transparent 68%),
    radial-gradient(620px 280px at 78% 54%, rgba(255, 82, 205, 0.1), transparent 72%);
  mix-blend-mode: screen;
}

.team-hero-inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}

.team-kicker {
  margin: 0 0 12px;
  color: #ff5465;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-apply-section .team-kicker {
  color: #ff5cca;
}

.team-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 9vw, 142px);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.16),
    0 0 42px rgba(255, 74, 92, 0.18);
}

.team-hero p:not(.team-kicker) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.team-tree-section {
  position: relative;
  padding: 0 0 clamp(48px, 6vw, 92px);
}

.team-tree-section > .container,
.team-apply-section > .container {
  width: min(100% - 48px, 1320px);
}

.team-tree-card {
  position: relative;
  overflow: visible;
  padding: clamp(16px, 2.4vw, 30px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.team-tree-card::before,
.team-tree-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.team-tree-card::before {
  inset: -6% -4%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 52% 44%, #000 0 52%, transparent 82%);
  opacity: 0.5;
  animation: teamGridDrift 13s linear infinite;
}

.team-tree-card::after {
  width: min(76%, 680px);
  aspect-ratio: 1;
  left: 50%;
  top: 6%;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    conic-gradient(from 120deg, transparent 0 16%, rgba(255, 82, 205, 0.2), transparent 30% 62%, rgba(73, 224, 255, 0.16), transparent 78%),
    radial-gradient(circle, rgba(255, 80, 205, 0.1), transparent 68%);
  filter: blur(18px);
  opacity: 0.72;
  animation: teamAuraTurn 12s linear infinite;
}

.team-tree-watermark {
  position: absolute;
  inset: 24px 0 auto;
  z-index: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  font-size: clamp(70px, 10vw, 160px);
  line-height: 0.78;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.team-tree-head {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 50px);
  text-align: center;
}

.team-tree-head h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.16),
    0 0 34px rgba(255, 92, 207, 0.2);
}

.team-tree-head p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.team-tree {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(34px, 4.2vw, 58px);
}

.team-tree-level {
  position: relative;
  display: grid;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 20px);
}

.team-tree-level::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(clamp(-58px, -4.2vw, -34px));
  width: 1px;
  height: clamp(30px, 3.2vw, 48px);
  background: linear-gradient(to bottom, transparent, rgba(255, 145, 228, 0.58), rgba(73, 224, 255, 0.28));
  box-shadow: 0 0 18px rgba(255, 92, 205, 0.34);
}

.team-tree-level:first-child::before {
  content: none;
}

.team-tree-level-management {
  grid-template-columns: repeat(2, minmax(220px, 310px));
}

.team-tree-level-ops {
  grid-template-columns: repeat(4, minmax(190px, 250px));
}

.team-tree-level-management::after,
.team-tree-level-ops::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: calc(clamp(-30px, -2.2vw, -18px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 145, 228, 0.58), rgba(73, 224, 255, 0.28), transparent);
  box-shadow: 0 0 18px rgba(255, 92, 205, 0.24);
}

.team-member {
  --role-color: #ff4cc8;
  --role-color-rgb: 255, 76, 200;
  --rank-color: var(--role-color);
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: 19px;
  padding: 18px;
  border: 1px solid rgba(255, 151, 228, 0.24);
  background:
    linear-gradient(145deg, rgba(36, 24, 58, 0.8), rgba(12, 14, 28, 0.72)),
    radial-gradient(160px 100px at 18% 18%, rgba(var(--role-color-rgb), 0.18), transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(var(--role-color-rgb), 0.14);
  backdrop-filter: blur(14px);
  animation: teamNodeFloat 7s ease-in-out infinite;
}

.team-member:hover {
  border-color: rgba(var(--role-color-rgb), 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(var(--role-color-rgb), 0.24);
}

.team-member:nth-child(2n) {
  animation-delay: -1.6s;
}

.team-member:nth-child(3n) {
  animation-delay: -2.8s;
}

.team-member::before {
  content: none;
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--role-color-rgb), 0.72), transparent);
  box-shadow: 0 0 18px rgba(var(--role-color-rgb), 0.48);
  animation: teamRoleLine 3.8s ease-in-out infinite;
}

.team-member::after {
  content: none;
  position: absolute;
  inset: -70% -22%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.13) 50%, transparent 62%);
  transform: translateX(-60%);
  animation: teamCardSheen 6.2s ease-in-out infinite;
}

.team-member-primary {
  width: min(100%, 360px);
  min-height: 190px;
  border-color: rgba(255, 210, 248, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 68px rgba(0, 0, 0, 0.4),
    0 0 42px rgba(255, 82, 205, 0.2);
}

.team-role-mark {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  border-radius: 12px;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.92), transparent 15%),
    linear-gradient(135deg, var(--role-color), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 20px rgba(var(--role-color-rgb), 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  animation: teamRoleMarkPulse 3.6s ease-in-out infinite;
}

.team-role-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

.team-role-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.85);
}

.team-role-effect {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.team-role-effect::before,
.team-role-effect::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.role-red .team-role-effect {
  background:
    radial-gradient(220px 120px at 78% 12%, rgba(255, 59, 79, 0.18), transparent 72%);
}

.role-red .team-role-effect::before {
  content: none;
}

.role-red .team-role-effect::after {
  content: none;
  /*
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 84, 101, 0.34);
  box-shadow:
    inset 0 0 18px rgba(255, 84, 101, 0.12),
    0 0 20px rgba(255, 84, 101, 0.2);
  animation: teamCommandRing 3.6s ease-in-out infinite;
  */
}

.role-yellow .team-role-effect {
  background:
    radial-gradient(180px 120px at 16% 80%, rgba(222, 210, 69, 0.16), transparent 72%);
}

.role-yellow .team-role-effect::before {
  content: none;
}

.role-yellow .team-role-effect::after {
  content: none;
  /*
  right: 18px;
  top: 72px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ded245;
  box-shadow:
    0 0 14px rgba(222, 210, 69, 0.85),
    0 0 0 8px rgba(222, 210, 69, 0.08);
  animation: teamAdminDot 2.6s ease-in-out infinite;
  */
}

.role-blue .team-role-effect {
  background:
    radial-gradient(200px 120px at 12% 16%, rgba(59, 125, 255, 0.18), transparent 70%),
    radial-gradient(circle at 82% 78%, rgba(73, 224, 255, 0.14), transparent 4%),
    radial-gradient(circle at 68% 62%, rgba(59, 125, 255, 0.12), transparent 4%);
  animation: teamModGlow 4.6s ease-in-out infinite;
}

.role-blue .team-role-effect::before {
  content: none;
  /*
  left: 20px;
  bottom: 22px;
  width: 118px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(93, 150, 255, 0.32);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-12deg);
  animation: teamModWave 2.8s ease-in-out infinite;
  */
}

.role-blue .team-role-effect::after {
  content: none;
}

.role-cyan .team-role-effect {
  background:
    radial-gradient(210px 120px at 18% 20%, rgba(65, 231, 255, 0.18), transparent 72%),
    radial-gradient(circle at 74% 28%, rgba(65, 231, 255, 0.18), transparent 4%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.12), transparent 4%);
  animation: teamSupportGlow 4.4s ease-in-out infinite;
}

.role-cyan .team-role-effect::before {
  content: none;
}

.role-cyan .team-role-effect::after {
  content: none;
  /*
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(65, 231, 255, 0.32);
  background: linear-gradient(90deg, rgba(65, 231, 255, 0.14), transparent);
  box-shadow: 0 0 18px rgba(65, 231, 255, 0.22);
  animation: teamSupportBubble 3.4s ease-in-out infinite;
  */
}

.role-magenta .team-role-effect {
  background:
    radial-gradient(220px 140px at 78% 18%, rgba(190, 22, 142, 0.22), transparent 72%);
}

.role-magenta .team-role-effect::before {
  content: "</>";
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(232, 61, 188, 0.42);
  animation: teamDevCode 3.2s ease-in-out infinite;
}

.role-magenta .team-role-effect::after {
  content: none;
}

.role-red {
  --role-color: #ff3b4f;
  --role-color-rgb: 255, 59, 79;
  --rank-color: #ff5465;
}

.role-dark {
  --role-color: #15161b;
  --role-color-rgb: 255, 255, 255;
  --rank-color: rgba(255, 255, 255, 0.9);
}

.role-pink {
  --role-color: #ff2bd6;
  --role-color-rgb: 255, 43, 214;
  --rank-color: #ff45dc;
}

.role-magenta {
  --role-color: #be168e;
  --role-color-rgb: 190, 22, 142;
  --rank-color: #e83dbc;
}

.role-purple {
  --role-color: #9c74ff;
  --role-color-rgb: 156, 116, 255;
  --rank-color: #b193ff;
}

.role-green {
  --role-color: #20d642;
  --role-color-rgb: 32, 214, 66;
  --rank-color: #43ee61;
}

.role-yellow {
  --role-color: #c9bc28;
  --role-color-rgb: 201, 188, 40;
  --rank-color: #ded245;
}

.role-blue {
  --role-color: #3b7dff;
  --role-color-rgb: 59, 125, 255;
  --rank-color: #5d96ff;
}

.role-cyan {
  --role-color: #41e7ff;
  --role-color-rgb: 65, 231, 255;
  --rank-color: #6deeff;
}

.team-rank {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--rank-color);
  text-shadow: 0 0 16px rgba(var(--role-color-rgb), 0.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-member h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  text-transform: uppercase;
}

.team-member p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.team-path-scene {
  position: relative;
  z-index: 3;
  min-height: clamp(840px, 68vw, 990px);
  margin-top: clamp(12px, 2vw, 28px);
  overflow: visible;
  border-radius: 26px;
  isolation: isolate;
  perspective: 1100px;
}

.team-path-scene::before,
.team-path-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.team-path-scene::before {
  inset: 4% 5%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 70, 91, 0.18), transparent 38%),
    radial-gradient(circle at 17% 78%, rgba(222, 210, 69, 0.13), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(190, 22, 142, 0.13), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: auto, auto, auto, 38px 38px, 38px 38px;
  mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 88%);
  opacity: 0.74;
  animation: teamPathGrid 14s linear infinite;
}

.team-path-scene::after {
  left: 50%;
  top: 48%;
  width: min(76%, 820px);
  aspect-ratio: 1.7;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background:
    conic-gradient(from 112deg, transparent 0 18%, rgba(255, 70, 91, 0.2), transparent 30% 52%, rgba(73, 224, 255, 0.14), transparent 66% 100%),
    radial-gradient(circle, rgba(255, 82, 205, 0.1), transparent 70%);
  filter: blur(18px);
  opacity: 0.82;
  animation: teamPathAura 11s linear infinite;
}

.team-path-backlight {
  position: absolute;
  inset: 10% 7%;
  z-index: 1;
  border-radius: 40px;
  background:
    radial-gradient(420px 240px at 50% 12%, rgba(255, 65, 84, 0.18), transparent 68%),
    radial-gradient(360px 220px at 13% 82%, rgba(222, 210, 69, 0.12), transparent 72%),
    radial-gradient(360px 220px at 88% 82%, rgba(190, 22, 142, 0.14), transparent 72%);
  filter: blur(10px);
  animation: teamPathBacklight 7s ease-in-out infinite;
}

.team-path-svg {
  position: absolute;
  inset: 4% 3% 2%;
  z-index: 2;
  width: 94%;
  height: 92%;
  overflow: visible;
  filter:
    drop-shadow(0 0 14px rgba(255, 75, 96, 0.24))
    drop-shadow(0 0 26px rgba(255, 82, 205, 0.12));
}

.team-path-base,
.team-path-flow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-path-base {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 3;
}

.team-path-flow {
  stroke-width: 5;
  stroke-dasharray: 72 660;
  animation: teamPathFlow 5.8s linear infinite;
}

.path-flow-red-left {
  stroke: #ff5465;
}

.path-flow-red-right {
  stroke: #ff5465;
  animation-delay: -1.25s;
}

.path-flow-yellow {
  stroke: #ded245;
  animation-delay: -2.5s;
}

.path-flow-green {
  stroke: #43ee61;
  animation-delay: -3.75s;
}

.path-flow-magenta {
  stroke: #e83dbc;
  animation-delay: -5s;
}

.team-path-node {
  position: absolute;
  z-index: 4;
  width: min(22vw, 282px);
  min-height: 162px;
  transform-style: preserve-3d;
}

.team-path-node::before {
  width: 92px;
}

.node-owner {
  left: calc(50% - 150px);
  top: 2%;
}

.node-project {
  left: 8%;
  top: 30%;
}

.node-stv {
  right: 8%;
  top: 30%;
}

.node-admin {
  left: 3%;
  top: 66%;
}

.node-supporter {
  left: calc(50% - 141px);
  top: 82%;
}

.node-mod {
  left: calc(50% - 141px);
  top: 58%;
}

.node-dev {
  right: 3%;
  top: 66%;
}

.team-path-pulse {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.88),
    0 0 34px rgba(255, 70, 91, 0.46);
  animation: teamPathPulse 2.8s ease-in-out infinite;
}

.team-path-pulse::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: teamPathPing 2.8s ease-out infinite;
}

.team-path-pulse-owner {
  left: 50%;
  top: 26%;
}

.team-path-pulse-left {
  left: 33%;
  top: 37%;
  animation-delay: -0.55s;
}

.team-path-pulse-right {
  right: 33%;
  top: 37%;
  animation-delay: -1.1s;
}

.team-path-pulse-admin {
  left: 15%;
  top: 78%;
  animation-delay: -1.65s;
}

.team-path-pulse-supporter {
  left: 50%;
  top: 93%;
  animation-delay: -1.95s;
}

.team-path-pulse-mod {
  left: 50%;
  top: 73%;
  animation-delay: -2.2s;
}

.team-path-pulse-dev {
  right: 15%;
  top: 78%;
  animation-delay: -2.75s;
}

.team-apply-section {
  position: relative;
  padding: clamp(42px, 5vw, 84px) 0 clamp(88px, 8vw, 136px);
  overflow: hidden;
}

.team-apply-section::before {
  content: "";
  position: absolute;
  inset: -8% 0 0;
  pointer-events: none;
  background:
    radial-gradient(780px 360px at 20% 26%, rgba(255, 84, 205, 0.14), transparent 72%),
    radial-gradient(720px 320px at 74% 58%, rgba(126, 108, 255, 0.12), transparent 70%),
    radial-gradient(620px 320px at 88% 86%, rgba(255, 84, 205, 0.08), transparent 72%);
  mix-blend-mode: screen;
}

.team-apply-section::after {
  content: "";
  position: absolute;
  inset: 10% 4%;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at center, #000 0 46%, transparent 76%);
  opacity: 0.56;
  animation: teamPathGrid 14s linear infinite;
}

.team-apply-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
}

.team-apply-copy {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: center;
}

.team-apply-copy::before {
  content: "JOIN";
  position: absolute;
  left: -4px;
  top: 2%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font-size: clamp(110px, 13vw, 210px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.team-apply-copy h2 {
  position: relative;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(40px, 5vw, 82px);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.14),
    0 0 34px rgba(255, 84, 205, 0.18);
}

.team-apply-copy p:not(.team-kicker) {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.team-apply-panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 30px);
  border-radius: 24px;
  border: 1px solid rgba(255, 142, 224, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.016)),
    radial-gradient(640px 260px at 78% 16%, rgba(255, 84, 205, 0.13), transparent 70%),
    radial-gradient(520px 220px at 18% 88%, rgba(126, 108, 255, 0.1), transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 78px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(255, 84, 205, 0.08);
  overflow: hidden;
}

.team-apply-panel::before {
  content: none;
  position: absolute;
  inset: -50% -20%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.12) 50%, transparent 62%);
  transform: translateX(-70%);
  animation: teamCardSheen 7s ease-in-out infinite;
  pointer-events: none;
}

.legal-note {
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(172, 102, 255, 0.34);
  background: linear-gradient(140deg, rgba(54, 29, 84, 0.52), rgba(30, 14, 50, 0.56));
  color: rgba(241, 232, 250, 0.9);
  padding: 12px 14px;
  line-height: 1.6;
}

.legal-note strong {
  color: #fff;
}

.team-stepper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: teamsteps;
}

.team-step {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 142, 224, 0.18);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    radial-gradient(220px 90px at 10% 50%, rgba(255, 84, 205, 0.1), transparent 70%);
  color: rgba(239, 229, 250, 0.9);
  line-height: 1.6;
  padding: 14px 16px 14px 58px;
}

.team-step::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 48px;
  bottom: -16px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 84, 205, 0.5), transparent);
  box-shadow: 0 0 12px rgba(255, 84, 205, 0.32);
}

.team-step::before {
  counter-increment: teamsteps;
  content: counter(teamsteps);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 11px;
  border: 1px solid rgba(255, 186, 235, 0.56);
  background: linear-gradient(140deg, rgba(255, 76, 200, 0.78), rgba(126, 108, 255, 0.62));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.team-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 142, 224, 0.26);
  background:
    linear-gradient(140deg, rgba(255, 76, 200, 0.14), rgba(126, 108, 255, 0.1)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018));
  padding: 18px;
}

.team-cta::before {
  content: none;
  position: absolute;
  inset: auto 18px 0 auto;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 84, 205, 0.86));
  box-shadow: 0 0 18px rgba(255, 84, 205, 0.46);
  animation: teamDevCompile 3s ease-in-out infinite;
}

.team-cta p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(244, 236, 252, 0.92);
  line-height: 1.55;
}

.btn-portal {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 168, 255, 0.74);
  background: linear-gradient(140deg, rgba(101, 46, 162, 0.9), rgba(65, 30, 106, 0.92));
  color: rgba(252, 246, 255, 0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-portal:hover {
  transform: translateY(-1px);
  border-color: rgba(236, 205, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(225, 187, 255, 0.32), 0 10px 18px rgba(8, 2, 15, 0.5);
}

.wiki-page .page {
  --wiki-builder-card-hover-y: -2px;
  --wiki-builder-card-hover-scale: 1.04;
  --wiki-builder-card-glow: 0.22;
  --wiki-builder-feature-glow: 0.18;
  background:
    linear-gradient(180deg, rgba(7, 5, 12, 0.96), rgba(7, 5, 12, 0.98)),
    url("assets/bg-main.webp") center top / cover no-repeat;
}

.wiki-main {
  padding: clamp(128px, 10vw, 156px) 0 90px;
}

.wiki-shell {
  display: grid;
  gap: 24px;
}

.wiki-subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 95, 200, 0.2);
  background: rgba(9, 8, 16, 0.86);
  padding: 10px 14px;
  box-shadow: 0 12px 24px rgba(5, 2, 11, 0.45);
}

.wiki-subnav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.wiki-subnav-links a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.wiki-subnav-links a:hover,
.wiki-subnav-links a.is-active {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 95, 200, 0.34);
}

.wiki-login {
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 95, 200, 0.48);
  background: linear-gradient(135deg, rgba(145, 63, 244, 0.92), rgba(113, 46, 202, 0.95));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wiki-header h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: #fff;
}

.wiki-feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
  border: 1px solid rgba(255, 95, 200, 0.28);
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  min-height: clamp(220px, 28vw, 340px);
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(255, 95, 200, 0.14), transparent 60%),
    radial-gradient(80% 120% at 100% 100%, rgba(173, 96, 255, 0.14), transparent 60%),
    var(--wiki-feature-image, none) center / cover no-repeat,
    linear-gradient(140deg, rgba(35, 20, 53, 0.9), rgba(16, 10, 28, 0.96));
  box-shadow:
    0 18px 36px rgba(5, 2, 11, 0.5),
    0 0 32px rgba(255, 95, 200, var(--wiki-builder-feature-glow, 0.18));
}

.wiki-feature-overlay {
  width: 100%;
  padding: clamp(22px, 3.6vw, 34px);
  background: linear-gradient(180deg, rgba(10, 8, 16, 0.12) 0%, rgba(10, 8, 16, 0.4) 100%);
}

.wiki-feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 200, 0.55);
  background: rgba(156, 60, 245, 0.84);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.wiki-feature-overlay h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.2vw, 52px);
  color: #fff;
}

.wiki-section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.7vw, 44px);
  color: #fff;
}

.wiki-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.wiki-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  min-height: 170px;
  border: 1px solid rgba(255, 95, 200, 0.24);
  background:
    linear-gradient(180deg, rgba(14, 10, 22, var(--wiki-overlay-top, 0.18)), rgba(10, 8, 16, var(--wiki-overlay-bottom, 0.78))),
    var(--wiki-bg) var(--wiki-bg-pos, center center) / var(--wiki-bg-size, cover) no-repeat;
  box-shadow: 0 10px 20px rgba(5, 2, 11, 0.42);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wiki-category-card:hover {
  transform: translateY(var(--wiki-builder-card-hover-y, -2px)) scale(var(--wiki-builder-card-hover-scale, 1.04));
  border-color: rgba(255, 95, 200, 0.64);
  box-shadow:
    0 16px 30px rgba(5, 2, 11, 0.58),
    0 0 20px rgba(255, 95, 200, var(--wiki-builder-card-glow, 0.22));
}

.wiki-page.wiki-builder-demo .wiki-category-card {
  transform: translateY(var(--wiki-builder-card-hover-y, -2px)) scale(var(--wiki-builder-card-hover-scale, 1.04));
  border-color: rgba(255, 95, 200, 0.64);
  box-shadow:
    0 16px 30px rgba(5, 2, 11, 0.58),
    0 0 20px rgba(255, 95, 200, var(--wiki-builder-card-glow, 0.22));
  animation: wikiBuilderPulse 1.8s ease-in-out infinite alternate;
}

.wiki-page.wiki-builder-demo .wiki-feature-card {
  animation: wikiBuilderPulse 2.2s ease-in-out infinite alternate;
}

@keyframes wikiBuilderPulse {
  0% {
    filter: saturate(1) brightness(1);
  }
  100% {
    filter: saturate(1.12) brightness(1.06);
  }
}

.wiki-category-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.wiki-last-list {
  display: grid;
  gap: 10px;
}

.wiki-last-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 200, 0.2);
  background: linear-gradient(140deg, rgba(38, 23, 58, 0.62), rgba(19, 12, 33, 0.74));
  padding: 14px 16px;
}

.wiki-last-date {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 157, 223, 0.94);
}

.wiki-last-item h3 {
  margin: 7px 0 5px;
  font-size: 22px;
  color: #fff;
}

.wiki-last-item p {
  margin: 0;
  color: rgba(245, 237, 252, 0.82);
  line-height: 1.6;
}

.wiki-page a:focus-visible {
  outline: 2px solid rgba(255, 95, 200, 0.95);
  outline-offset: 2px;
}

.wiki-article-page .wiki-main {
  padding: clamp(128px, 10vw, 156px) 0 90px;
}

.wiki-article-hero {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 95, 200, 0.28);
  overflow: hidden;
  min-height: clamp(260px, 30vw, 390px);
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(255, 95, 200, 0.16), transparent 62%),
    radial-gradient(80% 120% at 100% 100%, rgba(173, 96, 255, 0.16), transparent 62%),
    var(--wiki-article-hero-image, none) center / cover no-repeat,
    linear-gradient(140deg, rgba(35, 20, 53, 0.9), rgba(16, 10, 28, 0.96));
  box-shadow: 0 18px 36px rgba(5, 2, 11, 0.5);
}

.wiki-article-hero-overlay {
  width: 100%;
  min-height: inherit;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(10, 8, 16, 0.18) 0%, rgba(10, 8, 16, 0.58) 100%);
}

.wiki-article-kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255, 160, 223, 0.95);
}

.wiki-article-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  color: #fff;
}

.wiki-article-subtitle {
  margin: 0;
  max-width: 920px;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(247, 240, 255, 0.92);
}

.wiki-article-content {
  display: grid;
  gap: 12px;
}

.wiki-article-block {
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 200, 0.2);
  background: linear-gradient(140deg, rgba(38, 23, 58, 0.62), rgba(19, 12, 33, 0.74));
  padding: 16px 18px;
}

.wiki-article-block h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  color: #fff;
}

.wiki-article-block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 237, 252, 0.9);
}

.wiki-article-page a:focus-visible {
  outline: 2px solid rgba(255, 95, 200, 0.95);
  outline-offset: 2px;
}

@media (max-width: 1320px) {
  .wiki-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .wiki-subnav {
    flex-direction: column;
    align-items: stretch;
  }

  .wiki-subnav-links {
    justify-content: center;
  }

  .wiki-login {
    text-align: center;
  }

  .wiki-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wiki-main {
    padding: 22px 0 66px;
  }

  .wiki-subnav {
    border-radius: 12px;
    padding: 10px;
  }

  .wiki-subnav-links {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .wiki-subnav-links a {
    font-size: 12px;
  }

  .wiki-header h1 {
    font-size: clamp(34px, 8vw, 42px);
  }

  .wiki-feature-card {
    border-radius: 14px;
    min-height: 190px;
  }

  .wiki-feature-overlay h2 {
    font-size: clamp(28px, 7vw, 34px);
  }

  .wiki-section h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

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

  .wiki-category-card {
    min-height: 140px;
  }

  .wiki-category-card span {
    font-size: 16px;
  }

  .wiki-last-item h3 {
    font-size: 19px;
  }

  .wiki-article-hero {
    min-height: 220px;
    border-radius: 14px;
  }

  .wiki-article-hero h1 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .wiki-article-subtitle {
    font-size: 15px;
  }

  .wiki-article-block p {
    font-size: 15px;
  }
}

@media (max-width: 1120px) {
  .top-nav {
    position: static;
  }

  .nav-inner {
    height: auto;
    padding: 22px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content {
    padding-top: 110px;
  }

  .rules-wrap {
    display: block;
  }

  .rules-sidebar {
    position: static;
    top: auto;
    margin-bottom: 14px;
  }

  .rules-tools {
    grid-template-columns: 1fr;
  }

  .filter-chips {
    gap: 8px;
  }

  .rules-toc {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 10px;
  }

  .rules-toc-head {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0 2px 6px;
    border-bottom-color: rgba(181, 117, 255, 0.2);
  }

  .rules-toc-item {
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    text-align: left;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 11px;
    border: 1px solid rgba(160, 90, 255, 0.34);
    border-left-color: rgba(160, 90, 255, 0.34);
    background: linear-gradient(138deg, rgba(49, 25, 78, 0.58), rgba(31, 13, 52, 0.54));
    color: rgba(246, 239, 255, 0.92);
    font-size: 12px;
  }

  .rules-toc--rulebook {
    padding: 8px 0 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
  }

  .rules-toc--rulebook .rules-toc-head {
    margin: 0;
    padding: 0 0 8px;
    border-bottom: 0;
  }

  .rules-toc--rulebook .rules-toc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }

  .rules-toc--rulebook .rules-toc-item {
    min-height: 40px;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 10px;
    padding: 8px 10px 8px 0;
    font-size: 13.5px;
  }

  .rules-toc--rulebook .rules-toc-index {
    width: 32px;
    font-size: 10px;
  }

  .rules-toc--rulebook .rules-toc-label {
    font-size: 13.5px;
  }

  .rules-content {
    gap: 16px;
  }

  .team-role-grid {
    grid-template-columns: 1fr;
  }

  .team-tree-level-management,
  .team-tree-level-ops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-tree-level-management::after,
  .team-tree-level-ops::after {
    left: 20%;
    right: 20%;
  }

  .team-cta {
    align-items: flex-start;
  }

  .btn-portal {
    width: 100%;
  }

  .rules-fulltext-toggle summary {
    font-size: 16px;
  }

  .live-stats {
    padding: 68px 0 62px;
  }

  .live-stats-wrap::before {
    left: 1.5%;
    right: 1.5%;
    top: 44px;
    bottom: 18px;
    opacity: 0.7;
  }

  .live-stats-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .live-stat-card {
    min-height: 186px;
  }

  .live-stats-meta {
    font-size: 14px;
  }

  .brand-logo {
    width: clamp(186px, 34vw, 274px);
    height: clamp(46px, 8vw, 62px);
  }

  .connect-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .girl-wrap {
    order: -1;
  }

  .girl-wrap img {
    max-width: 360px;
  }

  .orb {
    opacity: 0.24;
  }

  .section-palm {
    width: clamp(220px, 30vw, 370px);
    opacity: 0.4;
  }

  .hero-palm-left {
    left: -92px;
    top: 188px;
  }

  .hero-palm-right {
    right: -114px;
    bottom: -34px;
  }

  .connect-palm-left {
    left: -102px;
    top: 15%;
    width: clamp(230px, 30vw, 340px);
  }

  .about-palm-right {
    right: -124px;
    top: 24%;
    width: clamp(240px, 32vw, 380px);
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-title {
    justify-content: center;
  }

  .about-title h2 {
    text-align: center;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 260px;
    padding: 18px 18px 16px;
  }

  .social-card-content {
    width: min(66%, 360px);
  }

  .social-stats {
    gap: 6px;
  }

  .social-stat {
    padding: 9px 6px 8px;
  }

  .social-note {
    font-size: 12px;
  }

  .social-card .social-art {
    width: clamp(210px, 58vw, 330px);
    max-width: 330px;
    left: clamp(2px, 0.9vw, 10px);
    bottom: 0;
  }

  .social-discord .social-art {
    width: clamp(166px, 42vw, 242px);
    left: clamp(-36px, -2.2vw, -16px);
    bottom: 0;
  }

  .social-youtube .social-art {
    width: clamp(244px, 62vw, 372px);
    left: auto;
    right: clamp(-148px, -8.2vw, -82px);
    bottom: -44px;
  }

  .social-card .social-brand-logo {
    left: 50%;
    top: 25px;
    width: clamp(90px, 23vw, 146px);
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-right {
    justify-content: flex-start;
    min-height: 230px;
  }

  .footer-right::before {
    right: auto;
    left: 34px;
    bottom: -6px;
    width: clamp(210px, 40vw, 300px);
    height: clamp(120px, 17vw, 176px);
  }

  .footer-palm {
    left: clamp(-150px, -16vw, -102px);
    bottom: -58px;
    top: auto;
    width: clamp(168px, 24vw, 250px);
    opacity: 0.28;
  }

  .footer-left {
    padding-left: 0;
    max-width: min(100%, 780px);
  }

  .footer-left::before {
    left: clamp(-126px, -14vw, -84px);
    bottom: -14px;
    width: clamp(140px, 20vw, 210px);
    height: clamp(140px, 20vw, 210px);
  }

  .footer-character {
    width: clamp(260px, 42vw, 390px);
  }

  .footer-payments {
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 30px));
  }

  .menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px 16px;
    font-size: 12px;
  }

  .brand-logo {
    width: min(64vw, 220px);
    height: clamp(42px, 11vw, 56px);
  }

  .btn-outline {
    width: 100%;
    max-width: 300px;
  }

  .nav-actions {
    width: 100%;
    gap: 10px;
  }

  .nav-actions .btn-outline {
    flex: 1 1 0;
    width: auto;
    max-width: none;
  }

  .hero {
    min-height: 460px;
  }

  .orb {
    display: none;
  }

  .particle-rain {
    opacity: 0.24;
  }

  .particle-rain--slow {
    opacity: 0.15;
  }

  .particle-rain--drift {
    opacity: 0.1;
  }

  .section-palm {
    width: min(70vw, 280px);
    opacity: 0.32;
    filter: grayscale(1) brightness(1.08) contrast(1.14) saturate(0) drop-shadow(0 0 18px rgba(255, 109, 205, 0.2));
  }

  .hero-palm-left {
    left: -102px;
    top: 170px;
  }

  .hero-palm-right {
    right: -116px;
    bottom: -42px;
  }

  .connect-palm-left {
    left: -96px;
    top: 14%;
    width: min(62vw, 240px);
    opacity: 0.28;
  }

  .about-palm-right {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-motto {
    margin-top: 12px;
    padding: 8px 14px 9px;
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.12;
    letter-spacing: 0.02em;
  }

  .hero-status-wrap {
    margin-top: 14px;
  }

  .btn-status-hero {
    width: 100%;
    max-width: 300px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .rules-toc {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .rules-toc::-webkit-scrollbar {
    height: 4px;
  }

  .rules-toc::-webkit-scrollbar-thumb {
    background: rgba(202, 147, 255, 0.5);
    border-radius: 999px;
  }

  .rules-overview {
    gap: 10px;
  }

  .portal-meta {
    gap: 8px;
  }

  .meta-badge {
    min-height: 32px;
    font-size: 12px;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .filter-chips::-webkit-scrollbar {
    height: 4px;
  }

  .filter-chips::-webkit-scrollbar-thumb {
    background: rgba(202, 147, 255, 0.5);
    border-radius: 999px;
  }

  .filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .rules-metric {
    min-width: auto;
    flex: 0 0 auto;
    padding: 0;
  }

  .rules-metric + .rules-metric {
    margin-left: 2px;
    padding-left: 14px;
  }

  .rules-metric strong {
    font-size: 30px;
  }

  .rules-toc-head {
    display: none;
  }

  .rules-toc-kicker {
    font-size: 9px;
  }

  .rules-toc-title {
    font-size: 13px;
  }

  .rules-toc-item {
    flex: 0 0 auto;
    min-width: 184px;
    min-height: 40px;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 8px;
    font-size: 12px;
  }

  .rules-toc-item::before {
    width: 24px;
    height: 20px;
    border-radius: 7px;
    font-size: 9px;
  }

  .rules-toc--rulebook {
    display: grid;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 6px 0 0;
    overflow: visible;
  }

  .rules-toc--rulebook .rules-toc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    overflow: visible;
    padding: 1px 0 1px 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }

  .rules-toc--rulebook .rules-toc-item {
    min-width: 0;
    min-height: 38px;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 8px;
    padding: 7px 8px 7px 0;
    font-size: 13px;
  }

  .rules-toc--rulebook .rules-toc-item::after {
    left: -15px;
    width: 5px;
    height: 5px;
  }

  .rules-toc--rulebook .rules-toc-index {
    width: 29px;
    height: 100%;
    border-radius: 0;
    font-size: 10px;
  }

  .rules-toc--rulebook .rules-toc-label {
    font-size: 13px;
    line-height: 1.26;
    white-space: normal;
  }

  .rules-list li {
    font-size: 13px;
  }

  .rules-fulltext-toggle summary {
    padding: 14px;
    font-size: 14px;
  }

  .rules-fulltext {
    padding: 14px;
    font-size: 13px;
  }

  .live-stats {
    padding: 52px 0 50px;
  }

  .live-stats-wrap::before {
    left: 0;
    right: 0;
    top: 38px;
    bottom: 14px;
    opacity: 0.58;
  }

  .live-stats-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .live-stat-card {
    min-height: 168px;
    padding: 16px;
    gap: 9px;
  }

  .live-stat-label {
    font-size: 14px;
  }

  .live-stat-value {
    font-size: clamp(28px, 10vw, 40px);
  }

  .live-stats-meta {
    font-size: 13px;
    gap: 6px 12px;
  }

  .step-card {
    padding: 18px;
    flex-wrap: wrap;
  }

  .step-card h3 {
    font-size: 14px;
  }

  .step-card p {
    font-size: 13px;
  }

  .step-icon-wrap {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding-top: 8px;
  }

  .footer-right::before {
    left: -24px;
    bottom: -10px;
    width: min(94vw, 420px);
    height: 170px;
  }

  .footer-palm {
    display: none;
  }

  .footer-left {
    padding-left: 0;
  }

  .footer-left::before {
    content: none;
  }

  .footer-character {
    width: min(88vw, 350px);
  }

  .footer-payments {
    margin-bottom: 0;
  }

  .about-box {
    font-size: 13px;
  }

  .social-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .social-card {
    min-height: 246px;
    padding: 16px 15px 14px;
  }

  .social-card-content,
  .social-discord .social-card-content,
  .social-youtube .social-card-content {
    width: 100%;
    margin: 0;
    padding-top: 72px;
  }

  .social-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 13px;
  }

  .social-stat strong {
    font-size: clamp(17px, 6vw, 24px);
  }

  .social-stat small {
    font-size: 9px;
  }

  .social-note {
    max-width: 68%;
  }

  .social-card .social-art {
    width: clamp(186px, 70vw, 278px);
    left: clamp(-2px, 0.5vw, 6px);
    bottom: 0;
    opacity: 0.88;
  }

  .social-discord .social-art {
    width: clamp(154px, 54vw, 216px);
    left: -16px;
    bottom: 0;
  }

  .social-youtube .social-art {
    width: clamp(208px, 74vw, 300px);
    left: auto;
    right: -86px;
    bottom: -36px;
  }

  .social-card .social-brand-logo {
    left: 50%;
    top: 23px;
    width: clamp(80px, 26vw, 122px);
    opacity: 0.5;
  }

  .social-signal {
    transform: scale(0.76);
    transform-origin: top left;
    opacity: 0.78;
  }
}

/* Screenshot-matched landing/header pass */
.page {
  background:
    linear-gradient(90deg, rgba(8, 12, 22, 0.56) 0%, rgba(17, 12, 26, 0.48) 45%, rgba(45, 18, 50, 0.5) 100%),
    url("assets/legacybg.png") center top / cover no-repeat,
    #100d19;
}

.page::before {
  opacity: 0.42;
  background:
    radial-gradient(620px 300px at 82% -8%, rgba(244, 67, 197, 0.22), transparent 62%),
    radial-gradient(760px 420px at 40% 38%, rgba(139, 70, 255, 0.14), transparent 70%);
  mix-blend-mode: screen;
}

.page::after {
  background: linear-gradient(
    to bottom,
    rgba(2, 5, 10, 0.02) 0%,
    rgba(9, 10, 20, 0.1) 38%,
    rgba(9, 9, 18, 0.42) 76%,
    rgba(8, 8, 16, 0.78) 100%
  );
}

.orb {
  display: none;
}

.top-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.team-page .top-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.top-nav .container {
  width: min(1184px, calc(100% - 48px));
}

.nav-inner {
  height: 108px;
}

.brand-logo {
  width: 188px;
  height: 48px;
  object-fit: cover;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 12px rgba(255, 82, 205, 0.28));
}

.team-page .brand-logo {
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.38))
    drop-shadow(0 0 7px rgba(255, 82, 205, 0.18));
}

.team-page .brand:hover .brand-logo {
  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.48))
    drop-shadow(0 0 9px rgba(255, 82, 205, 0.22));
}

.menu {
  gap: 34px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.menu a {
  color: rgba(255, 255, 255, 0.48);
}

.menu a::after {
  content: none;
}

.menu a:hover,
.menu a.active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.nav-actions {
  gap: 14px;
}

.nav-actions .btn {
  width: 132px;
  height: 40px;
  border: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.btn-discord {
  background: linear-gradient(135deg, #5964e8 0%, #6556dc 100%);
}

.btn-start,
.btn-primary {
  background: linear-gradient(135deg, #ff46c7 0%, #e849b9 100%);
  box-shadow: 0 12px 28px rgba(237, 70, 191, 0.38);
}

.btn-ghost {
  min-width: 188px;
  padding-inline: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 9, 18, 0.36);
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 12, 22, 0.62) 0%, rgba(12, 10, 20, 0.38) 47%, rgba(22, 10, 28, 0.2) 100%),
    radial-gradient(760px 470px at 78% 62%, rgba(255, 73, 200, 0.22), transparent 67%);
}

.hero::after {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  height: 170px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 17, 0) 0%, rgba(10, 9, 18, 0.38) 72%, rgba(8, 8, 16, 0.7) 100%),
    radial-gradient(780px 180px at 70% 75%, rgba(255, 78, 202, 0.2), transparent 70%);
}

.hero-layout {
  min-height: 100vh;
  display: block;
  max-width: 1152px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(138px, 15vh, 190px) 0 38px;
  text-align: left;
}

.hero-status-wrap {
  justify-content: flex-start;
  margin: 0 0 24px;
}

.btn-status {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 12, 20, 0.64);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.36);
  color: #fff;
}

.btn-status-hero {
  min-width: 284px;
  height: 40px;
  padding-inline: 16px;
  border-radius: 999px;
}

.status-main .status-online + #server-status-text,
.status-main .status-loading + #server-status-text {
  color: #8dffbc;
  text-shadow: 0 0 10px rgba(70, 255, 145, 0.35);
}

.hero-kicker {
  margin: 0 0 14px;
  color: #ff5cca;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 92, 202, 0.28);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.35vw, 74px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.hero-copy .legacy-highlight {
  background: linear-gradient(90deg, #ffffff 0%, #edcfff 42%, #f169d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p:not(.hero-kicker) {
  margin: 24px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .btn {
  height: 48px;
  min-width: 156px;
  padding-inline: 26px;
  font-size: 13px;
  font-weight: 900;
}

.hero-metrics {
  display: flex;
  gap: 42px;
  margin-top: 38px;
}

.hero-metrics div {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics strong {
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  right: clamp(72px, 8vw, 170px);
  top: clamp(430px, 54vh, 610px);
  bottom: auto;
  z-index: 2;
  width: min(48vw, 760px);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  filter:
    saturate(1.18)
    brightness(1.14)
    contrast(1.04)
    drop-shadow(0 28px 46px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 28px rgba(255, 57, 194, 0.22));
  animation: startArtFloat 7s ease-in-out infinite;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  inset: 17% 4% 7% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 64, 198, 0.2), rgba(104, 56, 255, 0.08) 45%, transparent 72%);
  filter: blur(24px);
  animation: startGlowPulse 4.8s ease-in-out infinite;
}

.hero-visual::after {
  content: none;
}

.hero-content,
.hero-motto,
.hero-palm-left,
.hero-palm-right {
  display: none;
}

.connect {
  min-height: 700px;
  padding: 6px 0 64px;
  background: transparent;
}

.connect::before {
  content: none;
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 16, 0.72) 0%, rgba(10, 9, 18, 0.34) 48%, rgba(10, 9, 18, 0) 100%);
}

.connect::after {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 8, 16, 0), rgba(8, 8, 16, 0.56)),
    radial-gradient(760px 220px at 34% 90%, rgba(255, 66, 198, 0.22), transparent 72%);
}

.connect-watermark {
  inset: 34px 0 auto;
  font-size: clamp(118px, 15vw, 252px);
  line-height: 0.72;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.045);
}

.connect-layout {
  max-width: 1180px;
  grid-template-columns: minmax(410px, 0.75fr) minmax(570px, 1fr);
  align-items: center;
  gap: 54px;
}

.steps {
  grid-column: 2;
  gap: 22px;
}

.girl-wrap {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  min-height: 560px;
  overflow: visible;
  isolation: isolate;
}

.connect-title {
  margin-bottom: 2px;
  font-size: clamp(28px, 2.4vw, 36px);
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
}

.step-card {
  min-height: 150px;
  border-radius: 15px;
  border-color: rgba(255, 70, 204, 0.36);
  background: linear-gradient(135deg, rgba(44, 25, 70, 0.82), rgba(31, 18, 52, 0.82));
  padding: 26px 28px 24px 40px;
}

.step-card h3 {
  color: #ff5cca;
  font-size: 16px;
  font-weight: 900;
}

.step-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 500;
}

.step-content {
  align-items: center;
  gap: 18px;
}

.step-icon-wrap {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.girl-wrap img {
  position: relative;
  z-index: 2;
  max-width: 430px;
  width: min(30vw, 430px);
  margin: 0 auto;
  mix-blend-mode: normal;
  opacity: 1;
  filter:
    saturate(1.05)
    brightness(1.04)
    drop-shadow(0 24px 42px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 18px rgba(255, 73, 197, 0.13));
  transform: translateY(-8px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.58) 82%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.58) 82%, transparent 96%);
}

.girl-wrap::after {
  z-index: 1;
  inset: 28% 2% 0 8%;
  background:
    radial-gradient(circle at 48% 54%, rgba(255, 67, 199, 0.24), transparent 58%),
    linear-gradient(180deg, transparent 48%, rgba(5, 7, 14, 0.68) 88%, rgba(5, 7, 14, 0.96) 100%);
  filter: blur(24px);
}

.girl-wrap::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 22px;
  z-index: 3;
  height: 190px;
  pointer-events: none;
  background: radial-gradient(ellipse at 48% 66%, rgba(5, 7, 14, 0.88) 0%, rgba(5, 7, 14, 0.5) 42%, transparent 72%);
}

@media (min-width: 2200px) {
  .top-nav .container {
    width: min(1500px, calc(100% - 80px));
  }

  .hero-layout {
    width: min(1500px, calc(100% - 80px));
    max-width: 1500px;
  }

  .hero-copy {
    max-width: 840px;
    padding-top: 170px;
  }

  .hero-copy h1 {
    font-size: 80px;
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 720px;
    font-size: 19px;
  }

  .hero-visual {
    right: 70px;
    top: clamp(520px, 55vh, 690px);
    bottom: auto;
    width: min(38vw, 820px);
  }

  .connect-layout {
    width: min(1500px, calc(100% - 80px));
    max-width: 1500px;
    grid-template-columns: minmax(430px, 0.78fr) minmax(680px, 1fr);
  }

  .girl-wrap img {
    width: min(28vw, 500px);
    max-width: 500px;
  }

  .step-card {
    min-height: 158px;
  }
}

@media (max-width: 1120px) {
  .top-nav {
    position: relative;
  }

  .nav-inner {
    height: auto;
    min-height: 92px;
    padding: 16px 0;
  }

  .menu {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 58px;
    min-height: 760px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    right: -48px;
    bottom: 8px;
    width: min(76vw, 640px);
  }

  .connect-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .phone-info-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .phone-info-art {
    min-height: 320px;
  }

  .phone-info-art img {
    width: min(80vw, 460px);
  }

  .lb-phone-stage {
    min-height: 430px;
  }

  .lb-phone-core {
    width: min(80vw, 480px);
  }

  .lb-app-card {
    min-width: 146px;
  }

  .lb-notification {
    right: 8%;
  }

  .electron-info-layout {
    grid-template-columns: 1fr;
  }

  .electron-info-copy,
  .eac-stage {
    order: initial;
  }

  .eac-stage {
    min-height: 420px;
  }

  .eac-logo-card {
    width: min(78vw, 500px);
  }

  .nui-info-layout {
    grid-template-columns: 1fr;
  }

  .nui-info-copy {
    max-width: none;
  }

  .nui-stage {
    min-height: 420px;
  }

  .nui-panel-main {
    width: min(78vw, 470px);
  }

  .steps,
  .girl-wrap {
    grid-column: 1;
  }

  .girl-wrap {
    order: 0;
    min-height: 440px;
  }

  .girl-wrap img {
    width: min(62vw, 360px);
    transform: translateY(-24px);
  }
}

@media (max-width: 760px) {
  .nav-inner {
    min-height: 0;
  }

  .brand-logo {
    width: 184px;
    height: 42px;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1 1 0;
    width: auto;
    max-width: none;
  }

  .hero {
    min-height: 1040px;
  }

  .hero-layout {
    min-height: 1040px;
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions .btn {
    flex: 1 1 180px;
  }

  .hero-metrics {
    gap: 12px;
  }

  .hero-metrics div {
    min-width: 118px;
  }

  .hero-visual {
    top: 720px;
    right: -178px;
    bottom: auto;
    width: 590px;
    opacity: 0.9;
  }

  .connect {
    padding-top: 38px;
  }

  .connect-title {
    font-size: 28px;
  }

  .phone-info {
    padding-top: 34px;
  }

  .phone-info-layout {
    border-radius: 18px;
    padding: 18px;
  }

  .phone-info-art {
    min-height: 250px;
  }

  .phone-info-art img {
    width: min(92vw, 340px);
  }

  .lb-phone-stage {
    min-height: 380px;
  }

  .lb-phone-core {
    width: min(98vw, 360px);
  }

  .lb-app-card {
    min-width: 112px;
    border-radius: 13px;
    padding: 10px 10px 10px 34px;
  }

  .lb-app-card span {
    left: 11px;
    top: 13px;
    width: 14px;
    height: 14px;
    border-radius: 5px;
  }

  .lb-app-card strong,
  .lb-notification strong {
    font-size: 10px;
  }

  .lb-app-card small,
  .lb-notification small {
    font-size: 9px;
  }

  .lb-app-messages {
    left: -1%;
    top: 43%;
  }

  .lb-app-calls {
    right: -2%;
    top: 45%;
  }

  .lb-app-business {
    left: 0;
    bottom: 9%;
  }

  .lb-app-gps {
    right: 1%;
    bottom: 7%;
  }

  .lb-notification {
    right: 9%;
    top: 29%;
    min-width: 144px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .lb-signal::after {
    width: 74px;
  }

  .eac-stage {
    min-height: 360px;
  }

  .eac-stage::before {
    inset: 2% -8%;
  }

  .eac-logo-card {
    width: min(92vw, 330px);
    min-height: 138px;
    padding: 18px;
    border-radius: 18px;
    transform: none;
  }

  .eac-logo-card img {
    width: min(100%, 286px);
  }

  .eac-alert {
    min-width: 122px;
    padding: 10px 11px;
    border-radius: 13px;
  }

  .eac-alert strong {
    font-size: 11px;
  }

  .eac-alert small {
    font-size: 9px;
  }

  .eac-alert-a {
    left: -1%;
    top: 18%;
  }

  .eac-alert-b {
    right: -2%;
    top: 20%;
  }

  .eac-alert-c {
    right: 7%;
    bottom: 13%;
  }

  .eac-scan-line {
    width: min(86%, 320px);
  }

  .nui-stage {
    min-height: 360px;
  }

  .nui-stage::before,
  .nui-stage::after {
    inset: 3% -4%;
  }

  .nui-panel-main {
    width: min(92vw, 330px);
    min-height: 250px;
    padding: 16px;
    transform: none;
  }

  .nui-panel-title {
    font-size: 18px;
  }

  .nui-search {
    height: 34px;
    margin: 14px 0;
  }

  .nui-grid {
    gap: 9px;
  }

  .nui-grid span {
    min-height: 52px;
  }

  .nui-panel-side {
    right: -2%;
    top: 10%;
    width: 132px;
    padding: 10px;
  }

  .nui-chip {
    padding: 9px 10px;
    font-size: 11px;
  }

  .nui-panel-mini {
    left: 0;
    bottom: 10%;
    width: 118px;
    min-height: 94px;
    padding: 12px;
  }

  .nui-panel-mini strong {
    font-size: 28px;
  }

  .nui-node::after {
    width: 74px;
  }

  .phone-info-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .phone-info-copy {
    padding: 18px;
  }

  .team-tree-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .team-tree-head h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .team-tree {
    gap: 30px;
  }

  .team-apply-layout {
    grid-template-columns: 1fr;
  }

  .team-apply-copy {
    min-height: 0;
  }

  .team-apply-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .team-tree-level-management,
  .team-tree-level-ops {
    grid-template-columns: 1fr;
  }

  .team-tree-level-management::after,
  .team-tree-level-ops::after {
    left: 50%;
    right: auto;
    width: 1px;
    height: 20px;
  }

  .team-member,
  .team-member-primary {
    width: 100%;
    min-height: 0;
    padding: 16px;
  }

  .team-member h3 {
    font-size: 24px;
  }

  .team-path-scene {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 14px 0;
    overflow: visible;
  }

  .team-path-scene::before {
    inset: 0 10px;
  }

  .team-path-scene::after,
  .team-path-svg,
  .team-path-backlight,
  .team-path-pulse {
    display: none;
  }

  .team-path-scene {
    border-left: 1px solid rgba(255, 84, 205, 0.34);
    padding-left: 16px;
  }

  .team-path-node,
  .node-owner,
  .node-project,
  .node-stv,
  .node-admin,
  .node-supporter,
  .node-mod,
  .node-dev {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .team-path-node::before {
    width: 70px;
  }

  .team-path-node::after {
    animation-duration: 7.2s;
  }

  .step-card {
    min-height: 0;
    padding: 18px;
  }

  .girl-wrap {
    min-height: 390px;
  }

  .girl-wrap img {
    width: min(78vw, 310px);
    transform: translateY(8px);
  }
}

/* Reference video inspired effect layer: lights, depth, stars, glass. */
.page {
  --spot-x: 72%;
  --spot-y: 34%;
  isolation: isolate;
}

.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient::before {
  z-index: 2;
  opacity: 0.52;
  background:
    radial-gradient(680px 360px at var(--spot-x) var(--spot-y), rgba(255, 92, 207, 0.2), transparent 70%),
    radial-gradient(820px 420px at 78% 8%, rgba(255, 211, 229, 0.2), rgba(255, 82, 199, 0.18) 24%, rgba(112, 74, 255, 0.08) 54%, transparent 76%),
    radial-gradient(680px 360px at 6% 18%, rgba(255, 102, 203, 0.16), transparent 72%),
    linear-gradient(110deg, transparent 0 24%, rgba(255, 83, 205, 0.05) 36%, transparent 50% 100%);
  filter: none;
  mix-blend-mode: screen;
  animation: none;
}

.ambient::after {
  z-index: 1;
  opacity: 0.52;
  background-image:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(255, 210, 246, 0.65) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 64%, rgba(183, 151, 255, 0.56) 0 1px, transparent 2px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 260px 260px, 340px 340px, 420px 420px, 96px 96px, 96px 96px;
  background-position:
    0 0,
    28px -40px,
    -18px -22px,
    center,
    center;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.9) 48%, transparent 92%);
  animation: none;
}

.particle-rain {
  opacity: 0.24;
  filter: none;
}

.particle-rain--slow {
  opacity: 0.24;
}

.particle-rain--drift {
  opacity: 0.18;
}

.hero-copy,
.steps,
.about-box,
.social-card,
.rules-card,
.team-role-card,
.wiki-feature-card,
.wiki-category-card,
.wiki-last-item {
  transform: translateZ(0);
}

.hero-visual::before {
  background:
    radial-gradient(circle, rgba(255, 73, 203, 0.28), rgba(112, 86, 255, 0.12) 45%, transparent 72%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.hero-visual img,
.girl-wrap img,
.social-card .social-art {
  will-change: transform;
}

.glow-card,
.step-card,
.about-box,
.rules-card,
.team-role-card,
.wiki-feature-card,
.wiki-category-card,
.wiki-last-item {
  background-image:
    radial-gradient(520px 260px at var(--mx, 50%) var(--my, 22%), rgba(255, 121, 220, 0.13), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 42%, rgba(255, 99, 207, 0.055));
  border-color: rgba(255, 142, 224, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 70px rgba(3, 4, 12, 0.36),
    0 0 34px rgba(255, 79, 204, 0.06);
  backdrop-filter: none;
}

.step-card,
.live-stat-card,
.about-box,
.rules-card,
.team-role-card,
.wiki-last-item {
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease,
    filter 0.34s ease;
}

.step-card:hover,
.live-stat-card:hover,
.about-box:hover,
.rules-card:hover,
.team-role-card:hover,
.wiki-last-item:hover {
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 34px 90px rgba(3, 4, 12, 0.44),
    0 0 42px rgba(255, 84, 205, 0.18),
    0 0 0 1px rgba(255, 168, 235, 0.1);
}

.btn::after {
  opacity: 0.48;
  background: linear-gradient(105deg, transparent 0 26%, rgba(255, 255, 255, 0.42) 44%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: buttonSheen 5.6s ease-in-out infinite;
}

.btn:hover::after {
  opacity: 0.82;
}

.connect-title,
.live-stats-title,
.about-title h2,
.legal-title,
.wiki-header h1 {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    0 0 32px rgba(255, 92, 207, 0.16);
}

.hero::before,
.connect::before,
.connect::after {
  mix-blend-mode: screen;
}

@keyframes cinematicLightSweep {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.5;
  }

  45% {
    transform: translate3d(1%, 2%, 0) scale(1.04);
    opacity: 0.82;
  }

  100% {
    transform: translate3d(3%, -2%, 0) scale(1.08);
    opacity: 0.66;
  }
}

@keyframes starTwinkle {
  0% {
    opacity: 0.34;
    filter: brightness(0.9);
  }

  100% {
    opacity: 0.62;
    filter: brightness(1.25);
  }
}

@keyframes contentFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes buttonSheen {
  0%,
  38% {
    transform: translateX(-130%);
  }

  56%,
  100% {
    transform: translateX(130%);
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
