:root {
  --bg-deep: #03070d;
  --bg-mid: #09111a;
  --bg-soft: #101c28;
  --panel: rgba(8, 15, 24, 0.78);
  --panel-strong: rgba(10, 18, 28, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(126, 162, 198, 0.2);
  --line-bright: rgba(148, 238, 255, 0.28);
  --text: #eff8ff;
  --muted: #8da2b8;
  --accent: #51ffd6;
  --accent-blue: #7ab7ff;
  --accent-warm: #ff9648;
  --success: #79dd8d;
  --warning: #ffd56d;
  --danger: #ff6678;
  --shadow-deep: 0 42px 100px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 26px 60px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(81, 255, 214, 0.14), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(122, 183, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 150, 72, 0.12), transparent 30%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 42%, #0e1621 100%);
}

body.is-booting {
  overflow: hidden;
}

body.is-booting .app-shell {
  opacity: 0.18;
  filter: blur(12px) saturate(0.58);
  transform: scale(1.03);
}

body.boot-complete .app-shell {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

body.login-body {
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(5, 11, 18, 0.78) 46%, rgba(3, 7, 13, 0.94)),
    #03070d;
}

body.login-body::before,
body.login-body::after {
  display: none;
}

.login-screen {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  padding: 28px;
}

.login-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  width: min(1180px, 100%);
  min-height: min(720px, calc(100svh - 56px));
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(126, 162, 198, 0.22);
  border-radius: 18px;
  background: rgba(5, 10, 16, 0.86);
  box-shadow: var(--shadow-deep);
}

.login-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #050a10;
}

.login-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.login-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.06), rgba(3, 7, 13, 0.28) 58%, rgba(3, 7, 13, 0.92)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.48), transparent 42%);
}

.login-brand-mark {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 150, 72, 0.34);
  border-radius: 8px;
  background: rgba(3, 7, 13, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.login-brand-mark span {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #ffb16d;
}

.login-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 60px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(6, 12, 20, 0.94);
}

.login-panel .eyebrow {
  margin: 0;
}

.login-panel h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 0.95;
}

.login-copy {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.discord-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 360px);
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  background: #5865f2;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(88, 101, 242, 0.28);
  transition: transform 160ms ease, filter 160ms ease;
}

.discord-login-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.discord-login-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
}

.login-access-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.login-access-list div {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(126, 162, 198, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.login-access-list strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  color: var(--text);
}

.login-access-list span,
.login-footnote {
  color: var(--muted);
  line-height: 1.45;
}

.login-footnote {
  max-width: 48ch;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  body.login-body {
    overflow-y: auto;
  }

  .login-screen {
    padding: 14px;
  }

  .login-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .login-visual-image {
    min-height: 260px;
    max-height: 36svh;
  }

  .login-visual-shade {
    background:
      linear-gradient(0deg, rgba(3, 7, 13, 0.88), rgba(3, 7, 13, 0.18) 60%),
      linear-gradient(90deg, rgba(3, 7, 13, 0.2), transparent);
  }

  .login-brand-mark {
    left: 18px;
    bottom: 18px;
  }

  .login-panel {
    padding: 24px;
  }

  .login-panel h1 {
    max-width: 12ch;
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  inset: auto;
  pointer-events: none;
}

body::before {
  top: -180px;
  left: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 255, 214, 0.16), transparent 68%);
  filter: blur(10px);
}

body::after {
  right: -160px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 183, 255, 0.16), transparent 68%);
  filter: blur(12px);
}

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(81, 255, 214, 0.08), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(122, 183, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(2, 5, 8, 0.985), rgba(3, 8, 13, 0.996));
  transition: opacity 500ms ease, visibility 500ms ease;
  isolation: isolate;
}

body.is-booting .boot-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.boot-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.boot-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.38;
}

.boot-shell {
  position: relative;
  width: min(92vw, 960px);
  min-height: 420px;
  max-height: 80vh;
  padding: 0;
}

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

.boot-shell::before {
  inset: -18px;
  border: 1px solid rgba(81, 255, 214, 0.08);
  border-radius: 28px;
}

.boot-shell::after {
  left: -28px;
  right: -28px;
  top: 50%;
  height: 260px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(81, 255, 214, 0.24), transparent);
  filter: blur(42px);
  opacity: 0.2;
}

.boot-terminal {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  padding: 62px clamp(22px, 4vw, 38px) clamp(24px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(81, 255, 214, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(81, 255, 214, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(122, 183, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(4, 10, 16, 0.94), rgba(2, 7, 12, 0.985));
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 60px rgba(81, 255, 214, 0.05),
    0 40px 120px rgba(0, 0, 0, 0.52),
    0 0 40px rgba(81, 255, 214, 0.06);
  transition: opacity 280ms ease, transform 360ms ease, filter 360ms ease;
}

.boot-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(81, 255, 214, 0.04), transparent 12%),
    linear-gradient(180deg, transparent 0%, rgba(81, 255, 214, 0.035) 50%, transparent 100%);
  animation: scan-lines 3.8s linear infinite;
}

.boot-terminal::after {
  content: "WINDOWS POWERSHELL // ALLIANCE BOOT";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(81, 255, 214, 0.12);
  background: linear-gradient(180deg, rgba(10, 20, 28, 0.95), rgba(5, 10, 16, 0.82));
  color: rgba(217, 255, 245, 0.78);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.boot-label,
.boot-line,
.boot-welcome {
  font-family: "Share Tech Mono", monospace;
}

.boot-label {
  width: 100%;
  margin: 0 0 18px;
  letter-spacing: 0.3em;
  font-size: clamp(0.84rem, 1vw, 1rem);
  color: #87ffe0;
  text-align: left;
  text-shadow: 0 0 16px rgba(81, 255, 214, 0.14);
}

.boot-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  width: 100%;
  margin: 0;
}

.boot-line {
  margin: 0;
  min-height: 1.2em;
  color: #d9fff5;
  font-size: clamp(0.92rem, 0.98vw, 1.08rem);
  letter-spacing: 0.06em;
  text-shadow:
    0 0 18px rgba(81, 255, 214, 0.14),
    0 0 36px rgba(81, 255, 214, 0.06);
}

.boot-cursor-row {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 12px 0 0;
}

.boot-cursor {
  display: inline-block;
  width: 14px;
  height: 1.3rem;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(81, 255, 214, 0.26);
  animation: blink-cursor 0.9s steps(1, end) infinite;
}

.boot-welcome {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: auto;
  max-width: 92vw;
  min-height: 1.2em;
  margin: 0;
  opacity: 0;
  text-align: center;
  color: #f6ffff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0.92);
  text-shadow:
    0 0 28px rgba(122, 183, 255, 0.24),
    0 0 68px rgba(81, 255, 214, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.42);
  transition: opacity 260ms ease, transform 320ms ease;
}

.boot-overlay.is-welcome .boot-terminal {
  opacity: 0.04;
  filter: blur(12px);
  transform: scale(1.03);
}

.boot-overlay.is-welcome .boot-welcome {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.ambient-grid,
.ambient-shade {
  position: absolute;
  inset: 0;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.72;
}

.ambient-orb-a {
  top: 4%;
  left: -6%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(81, 255, 214, 0.16), transparent 66%);
}

.ambient-orb-b {
  top: 18%;
  right: -6%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(122, 183, 255, 0.14), transparent 68%);
}

.ambient-orb-c {
  bottom: -10%;
  left: 26%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 150, 72, 0.09), transparent 70%);
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.6;
  transform: perspective(1200px) rotateX(82deg) scale(2.1) translateY(-12%);
  transform-origin: center top;
}

.ambient-shade {
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 12, 20, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(3, 6, 10, 0.28), rgba(4, 8, 13, 0.82));
}

.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 100vh;
  perspective: 2200px;
  transform-style: preserve-3d;
  transition:
    opacity 720ms ease,
    filter 720ms ease,
    transform 720ms ease;
  will-change: opacity, filter, transform;
}

.app-shell::before {
  content: "";
  position: absolute;
  inset: 28px 24px;
  border: 1px solid rgba(122, 183, 255, 0.08);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  pointer-events: none;
}

.sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 92% 100%, 0 100%);
  background:
    linear-gradient(180deg, rgba(7, 13, 20, 0.97), rgba(7, 13, 20, 0.84)),
    radial-gradient(circle at top, rgba(122, 183, 255, 0.18), transparent 34%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-deep);
  transform: translateZ(52px) rotateY(7deg);
  transform-origin: left center;
}

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

.sidebar::before {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 92% 100%, 0 100%);
}

.sidebar::after {
  inset: 24px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81, 255, 214, 0.34), transparent);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.sidebar h1,
.topbar h2,
.hero h3,
.card h3,
.access-card h4,
.section-intro h4,
.featured-copy h4,
.logo-card h4 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.02em;
}

.sidebar h1 {
  font-size: 2.6rem;
  line-height: 0.92;
  text-shadow: 0 0 18px rgba(81, 255, 214, 0.1);
}

.sidebar-copy,
.panel-copy,
.hero-copy,
.timeline-copy,
.stack-list,
.review-copy,
.access-card p,
.section-copy,
.summary-tile p,
.match-note,
.preview-meta,
.signal-copy,
.featured-copy p,
.logo-card p {
  color: var(--muted);
}

.sidebar-nav {
  display: grid;
  gap: 12px;
}

.nav-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(126, 162, 198, 0.14);
  border-radius: 16px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 8px 50%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(8, 14, 22, 0.62));
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transform: translateZ(16px) rotateX(7deg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  border-color: rgba(81, 255, 214, 0.32);
  background:
    linear-gradient(145deg, rgba(81, 255, 214, 0.12), rgba(8, 14, 22, 0.74));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 22px rgba(81, 255, 214, 0.08);
  transform: translateX(6px) translateZ(24px) rotateX(10deg);
}

.nav-link:hover::before,
.nav-link.is-active::before {
  transform: translateX(100%);
}

.sidebar-panel,
.metric-card,
.card,
.team-card,
.review-card,
.access-card,
.ranking-item,
.summary-tile,
.preview-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(8, 14, 22, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.sidebar-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 94% 100%, 0 100%);
  transform: translateZ(22px) rotateX(7deg);
}

.panel-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.panel-copy {
  margin: 0;
  font-size: 0.92rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(121, 221, 141, 0.14), 0 0 24px rgba(121, 221, 141, 0.2);
}

.dashboard {
  position: relative;
  padding: 34px 34px 48px;
  transform-style: preserve-3d;
}

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

.dashboard::before {
  inset: 24px 30px 30px 16px;
  border: 1px solid rgba(126, 162, 198, 0.07);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.dashboard::after {
  top: 110px;
  right: 32px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 255, 214, 0.08), transparent 68%);
  filter: blur(10px);
}

.brand-beacon {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  perspective: 1800px;
}

.brand-orbit {
  position: relative;
  width: min(100%, 420px);
  height: 118px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: brnx-orbit 10s linear infinite;
}

.brand-orbit::before,
.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.brand-orbit::before {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(81, 255, 214, 0.16);
  box-shadow: 0 0 24px rgba(81, 255, 214, 0.06);
}

.brand-orbit::after {
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(122, 183, 255, 0.12);
}

.brand-orbit-shadow,
.brand-orbit-text {
  position: absolute;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  user-select: none;
}

.brand-orbit-shadow {
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: rgba(81, 255, 214, 0.18);
  filter: blur(8px);
  transform: translateZ(-28px) scale(1.1);
}

.brand-orbit-text {
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: #e5fcff;
  text-shadow:
    0 0 18px rgba(81, 255, 214, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.26);
  transform: translateZ(44px);
}

.topbar,
.hero,
.section-grid {
  margin-bottom: 28px;
}

.topbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(126, 162, 198, 0.18);
  border-radius: 20px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(8, 14, 22, 0.78));
  box-shadow: var(--shadow-card);
  transform: translateZ(42px) rotateX(8deg);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81, 255, 214, 0.24), transparent);
}

.topbar h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.topbar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button,
.ghost-button,
.danger-button {
  position: relative;
  overflow: hidden;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 6px 50%);
  cursor: pointer;
  transform: translateZ(18px) rotateX(8deg);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.primary-button::before,
.ghost-button::before,
.danger-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent) 0%, #7af4ff 100%);
  color: #051017;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(81, 255, 214, 0.12);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(126, 162, 198, 0.16);
}

.danger-button {
  background: linear-gradient(135deg, rgba(255, 102, 120, 0.22), rgba(142, 24, 34, 0.62));
  color: #ffe7ea;
  border-color: rgba(255, 102, 120, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.danger-button:hover {
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px) translateZ(26px) rotateX(11deg);
}

.primary-button:hover::before,
.ghost-button:hover::before,
.danger-button:hover::before {
  transform: translateX(100%);
}

.primary-button:disabled,
.ghost-button:disabled,
.danger-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 1fr);
  gap: 24px;
  padding: 34px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(122, 183, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 88%, 95% 100%, 0 100%, 0 18px);
  background:
    linear-gradient(140deg, rgba(81, 255, 214, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-deep);
  transform: translateZ(82px) rotateX(11deg);
}

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

.hero::before {
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: conic-gradient(from 180deg, rgba(122, 183, 255, 0.16), transparent 38%, rgba(81, 255, 214, 0.14), transparent 74%);
  border-radius: 50%;
  filter: blur(8px);
}

.hero::after {
  inset: auto 34px 28px auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 150, 72, 0.22);
  border-radius: 28px;
  transform: rotate(18deg);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin: 0 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(81, 255, 214, 0.22);
  background: rgba(81, 255, 214, 0.08);
  color: #b7ffef;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 0 18px rgba(81, 255, 214, 0.08);
}

.hero h3 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.9;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.hero-copy {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.02rem;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  perspective: 1600px;
}

.metric-card {
  position: relative;
  padding: 18px 18px 20px;
  overflow: hidden;
  border-radius: 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.5;
  transform: skewY(-8deg) translateX(-52%);
}

.metric-card:nth-child(1) {
  transform: translateZ(24px) rotateY(-8deg) rotateX(8deg);
}

.metric-card:nth-child(2) {
  transform: translateZ(36px) rotateY(7deg) rotateX(10deg);
}

.metric-card:nth-child(3) {
  transform: translateZ(28px) rotateY(-5deg) rotateX(9deg);
}

.metric-card:hover {
  transform: translateY(-4px) translateZ(44px) rotateY(0deg) rotateX(12deg);
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.metric-card strong,
.summary-tile strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(122, 183, 255, 0.1);
}

.metric-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  perspective: 1800px;
}

.card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 14px);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transform: translateZ(34px) rotateX(9deg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 44%);
  pointer-events: none;
}

.card:hover {
  box-shadow: 0 36px 78px rgba(0, 0, 0, 0.34), 0 0 24px rgba(81, 255, 214, 0.06);
  transform: translateY(-8px) translateZ(50px) rotateX(12deg) rotateY(-2deg);
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: 1 / -1;
}

.card-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.card-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(81, 255, 214, 0.24), transparent);
}

.gallery-card {
  min-height: 100%;
}

.alliance-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.alliance-side {
  display: grid;
  gap: 18px;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  border: 1px solid rgba(126, 162, 198, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(8, 14, 22, 0.82));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  transform: perspective(1400px) rotateX(10deg) translateZ(24px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-panel:hover {
  transform: perspective(1400px) rotateX(12deg) translateZ(34px) translateY(-4px);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34), 0 0 20px rgba(81, 255, 214, 0.06);
}

.visual-panel-host {
  display: grid;
  gap: 18px;
  border-color: rgba(255, 150, 72, 0.24);
}

.visual-panel-clan,
.visual-panel-support {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.visual-panel-red {
  border-color: rgba(255, 102, 120, 0.24);
}

.visual-panel-blue {
  border-color: rgba(122, 183, 255, 0.24);
}

.visual-panel-support {
  border-color: rgba(81, 255, 214, 0.24);
}

.visual-panel-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 11, 18, 0.82);
}

.visual-panel-host .visual-panel-media {
  min-height: 420px;
}

.visual-panel-media-sm {
  height: 150px;
}

.visual-panel-copy {
  position: relative;
  z-index: 1;
}

.visual-kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.visual-panel-copy h4 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
}

.visual-panel-copy p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 44ch;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  grid-auto-rows: 170px;
}

.visual-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  border: 1px solid rgba(126, 162, 198, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(8, 14, 22, 0.82));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  transform: perspective(1400px) rotateX(11deg) rotateY(-3deg) translateZ(24px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-tile:nth-child(even) {
  transform: perspective(1400px) rotateX(11deg) rotateY(3deg) translateZ(24px);
}

.visual-tile:hover {
  border-color: rgba(81, 255, 214, 0.26);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34), 0 0 20px rgba(81, 255, 214, 0.06);
  transform: perspective(1400px) rotateX(14deg) rotateY(0deg) translateZ(34px) translateY(-6px);
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(3, 7, 12, 0.8) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.visual-tile-xl {
  grid-column: span 2;
  grid-row: span 2;
}

.visual-tile-lg {
  grid-column: span 2;
}

.visual-tile-host {
  border-color: rgba(255, 150, 72, 0.24);
}

.visual-tile-red {
  border-color: rgba(255, 102, 120, 0.24);
}

.visual-tile-blue {
  border-color: rgba(122, 183, 255, 0.24);
}

.visual-tile-partner {
  border-color: rgba(81, 255, 214, 0.24);
}

.visual-tile-future {
  border-color: rgba(81, 255, 214, 0.22);
}

.visual-tile-warzone {
  border-color: rgba(255, 150, 72, 0.22);
}

.visual-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
  transform: scale(1.03);
}

.visual-abstract {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.visual-abstract-future {
  background:
    radial-gradient(circle at center, rgba(81, 255, 214, 0.2), transparent 28%),
    linear-gradient(160deg, rgba(122, 183, 255, 0.16), rgba(6, 11, 18, 0.95) 62%);
}

.visual-abstract-warzone {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 150, 72, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(28, 19, 15, 0.92), rgba(8, 12, 18, 0.96));
}

.visual-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(81, 255, 214, 0.24);
  background: radial-gradient(circle, rgba(81, 255, 214, 0.2), rgba(5, 12, 18, 0.94) 72%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(81, 255, 214, 0.14);
}

.visual-core strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.visual-line,
.visual-ring,
.combat-grid,
.combat-crosshair,
.combat-horizon {
  position: absolute;
}

.visual-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.visual-line-a {
  top: 32%;
  left: 10%;
  right: 10%;
}

.visual-line-b {
  bottom: 30%;
  left: 14%;
  right: 14%;
}

.visual-ring {
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(122, 183, 255, 0.16);
  transform: translate(-50%, -50%);
}

.visual-ring-a {
  width: 160px;
  height: 160px;
}

.visual-ring-b {
  width: 240px;
  height: 240px;
  border-style: dashed;
  border-color: rgba(255, 150, 72, 0.16);
}

.combat-grid {
  inset: auto 0 0 0;
  height: 56%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: perspective(600px) rotateX(74deg) scale(1.9) translateY(28%);
  opacity: 0.8;
}

.combat-crosshair {
  inset: 50%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 1px solid rgba(255, 150, 72, 0.24);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(255, 150, 72, 0.08);
}

.combat-crosshair::before,
.combat-crosshair::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}

.combat-crosshair::before {
  width: 90px;
  height: 1px;
}

.combat-crosshair::after {
  width: 1px;
  height: 90px;
}

.combat-horizon {
  left: 0;
  right: 0;
  bottom: 24%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 150, 72, 0.32), transparent);
}

.visual-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 10, 16, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.signal-card,
.alliance-card {
  min-height: 100%;
}

.signal-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.signal-visual {
  position: relative;
  width: 100%;
  min-height: 252px;
  overflow: hidden;
  border-radius: 22px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border: 1px solid rgba(122, 183, 255, 0.16);
  background:
    radial-gradient(circle at center, rgba(81, 255, 214, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(122, 183, 255, 0.18), rgba(7, 11, 18, 0.94) 60%);
  transform: perspective(1200px) rotateX(16deg) translateZ(28px);
}

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

.signal-visual::before {
  inset: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.signal-visual::after {
  inset: auto 24px 24px auto;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  border: 1px solid rgba(255, 150, 72, 0.18);
  transform: rotate(16deg);
}

.signal-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 1px solid rgba(81, 255, 214, 0.28);
  background:
    radial-gradient(circle, rgba(81, 255, 214, 0.18), rgba(6, 14, 20, 0.94) 70%);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 42px rgba(81, 255, 214, 0.12),
    inset 0 0 30px rgba(255, 255, 255, 0.04);
}

.signal-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-core strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.signal-ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(122, 183, 255, 0.16);
  transform: translate(-50%, -50%);
  animation: orbit-pulse 8s linear infinite;
}

.signal-ring-a {
  width: 190px;
  height: 190px;
}

.signal-ring-b {
  width: 260px;
  height: 260px;
  border-color: rgba(81, 255, 214, 0.16);
  animation-duration: 12s;
}

.signal-ring-c {
  width: 320px;
  height: 320px;
  border-style: dashed;
  border-color: rgba(255, 150, 72, 0.16);
  animation-duration: 14s;
}

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

.signal-node {
  padding: 14px;
  border-radius: 18px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  border: 1px solid rgba(126, 162, 198, 0.16);
  background: rgba(7, 12, 18, 0.72);
  transform: translateZ(18px) rotateX(8deg);
}

.signal-node span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-node strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
}

.signal-copy {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.alliance-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.12fr) minmax(0, 1fr);
  gap: 18px;
}

.featured-clan {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 20px;
  border-radius: 24px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  border: 1px solid rgba(255, 150, 72, 0.22);
  background:
    radial-gradient(circle at top left, rgba(255, 150, 72, 0.18), transparent 45%),
    linear-gradient(160deg, rgba(8, 13, 20, 0.96), rgba(20, 11, 7, 0.86));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(255, 150, 72, 0.06);
  transform: perspective(1200px) rotateY(-8deg) rotateX(10deg) translateZ(28px);
}

.featured-copy p {
  margin: 10px 0 0;
  max-width: 38ch;
}

.featured-logo-wrap {
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 150, 72, 0.22);
  background: rgba(5, 10, 16, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateZ(26px) rotateX(-8deg);
}

.featured-logo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.logo-grid {
  display: grid;
  gap: 14px;
}

.logo-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  border: 1px solid rgba(126, 162, 198, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(9, 16, 25, 0.8));
  transform: perspective(1200px) translateY(0) rotateY(6deg) rotateX(8deg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.logo-card:nth-child(2) {
  transform: perspective(1200px) translateY(0) rotateY(-6deg) rotateX(8deg);
}

.logo-card:nth-child(3) {
  transform: perspective(1200px) translateY(0) rotateY(4deg) rotateX(8deg);
}

.logo-card:hover {
  transform: perspective(1200px) translateY(-6px) rotateY(0deg) rotateX(12deg);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.3);
}

.logo-card-red {
  border-color: rgba(255, 102, 120, 0.22);
}

.logo-card-blue {
  border-color: rgba(122, 183, 255, 0.24);
}

.logo-card-partner {
  border-color: rgba(81, 255, 214, 0.22);
}

.logo-image {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.logo-card p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(126, 162, 198, 0.14);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-time,
.match-status,
.access-badge,
.pill,
.mode-tag,
.lobby-index,
.lobby-sync {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline-time {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.timeline-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.timeline-copy {
  margin: 0;
}

.stack-list,
.review-list,
.ranking-list,
.preview-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.stack-list {
  padding-left: 20px;
  margin: 0;
}

.stack-list-tight {
  gap: 8px;
  margin-top: 18px;
}

.table-shell {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(126, 162, 198, 0.14);
  background: rgba(4, 10, 16, 0.42);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-top: 1px solid rgba(126, 162, 198, 0.14);
  vertical-align: top;
}

thead th {
  border-top: 0;
}

tbody tr {
  transition: background 180ms ease;
}

tbody tr:hover {
  background: rgba(81, 255, 214, 0.04);
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.match-name {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.match-note {
  display: block;
  font-size: 0.9rem;
}

.table-cell-stack {
  display: grid;
  gap: 6px;
}

.mode-tag {
  width: fit-content;
  background: rgba(122, 183, 255, 0.14);
  color: #d0e5ff;
}

.match-status.is-open,
.pill.is-open {
  background: rgba(121, 221, 141, 0.14);
  color: #bdf0c6;
}

.match-status.is-review,
.pill.is-review {
  background: rgba(255, 213, 109, 0.14);
  color: var(--warning);
}

.match-status.is-closed,
.pill.is-closed {
  background: rgba(255, 102, 120, 0.14);
  color: #ffbbc3;
}

.match-builder-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 48%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 255, 214, 0.18), transparent 62%);
  transform: translateX(-50%);
  pointer-events: none;
}

.builder-shell,
.summary-metrics,
.team-grid,
.access-grid,
.results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.form-section {
  padding: 18px;
  border: 1px solid rgba(122, 183, 255, 0.18);
  border-radius: 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  background:
    linear-gradient(140deg, rgba(122, 183, 255, 0.08) 0%, transparent 42%),
    rgba(8, 16, 25, 0.62);
  transform: translateZ(22px) rotateX(8deg);
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.section-copy {
  max-width: 34ch;
  margin: 0;
  font-size: 0.94rem;
}

.field-grid {
  display: grid;
  gap: 14px;
}

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

.builder-shell label,
.lobby-card label {
  display: grid;
  gap: 8px;
}

.builder-shell span,
.lobby-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.builder-shell input,
.builder-shell select,
.builder-shell textarea {
  padding: 12px 14px;
  border: 1px solid rgba(126, 162, 198, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(5, 11, 18, 0.74));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.builder-shell select {
  color-scheme: dark;
}

.builder-shell select option {
  background: #081119;
  color: var(--text);
}

.builder-shell input:focus,
.builder-shell select:focus,
.builder-shell textarea:focus {
  outline: 1px solid rgba(81, 255, 214, 0.42);
  border-color: rgba(81, 255, 214, 0.42);
  box-shadow: 0 0 0 4px rgba(81, 255, 214, 0.06);
}

.lobby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.lobby-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  border: 1px solid rgba(122, 183, 255, 0.2);
  background:
    linear-gradient(170deg, rgba(122, 183, 255, 0.14), rgba(255, 150, 72, 0.05) 65%, rgba(8, 14, 21, 0.92)),
    rgba(8, 14, 21, 0.88);
  box-shadow:
    0 26px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: perspective(1200px) translateY(0) rotateX(14deg) rotateY(-4deg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lobby-card:nth-child(2) {
  transform: perspective(1200px) translateY(0) rotateX(14deg) rotateY(4deg);
}

.lobby-card:nth-child(3) {
  transform: perspective(1200px) translateY(0) rotateX(14deg) rotateY(-2deg);
}

.lobby-card:hover {
  border-color: rgba(81, 255, 214, 0.3);
  box-shadow: 0 30px 54px rgba(0, 0, 0, 0.28), 0 0 24px rgba(81, 255, 214, 0.06);
  transform: perspective(1200px) translateY(-6px) rotateX(18deg) rotateY(0deg);
}

.lobby-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.lobby-index {
  background: rgba(81, 255, 214, 0.12);
  color: #b7ffef;
}

.lobby-sync {
  background: rgba(122, 183, 255, 0.12);
  color: #d0e5ff;
}

.button-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.builder-summary-card {
  display: grid;
  align-content: start;
}

.event-control-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(81, 255, 214, 0.16);
  border-radius: 20px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  background:
    linear-gradient(145deg, rgba(81, 255, 214, 0.06), rgba(8, 14, 22, 0.7));
  transform: translateZ(18px) rotateX(7deg);
}

.control-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.control-status-bar h4 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
}

.control-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 42ch;
}

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

.summary-metrics {
  grid-template-columns: 1fr;
}

.summary-tile {
  padding: 16px;
  border-radius: 18px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transform: translateZ(18px) rotateX(7deg);
}

.summary-tile p {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.preview-shell {
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

.preview-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transform: translateZ(14px) rotateX(6deg);
}

.preview-item.is-waitlist {
  border-color: rgba(255, 166, 122, 0.22);
  background: linear-gradient(165deg, rgba(255, 125, 92, 0.08), rgba(8, 14, 22, 0.8));
}

.preview-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.preview-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.preview-slot-grid.is-compact {
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
}

.slot-node {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(122, 183, 255, 0.14);
  background: rgba(4, 10, 18, 0.72);
}

.slot-node.is-filled {
  border-color: rgba(81, 255, 214, 0.24);
  box-shadow: inset 0 0 0 1px rgba(81, 255, 214, 0.05), 0 12px 24px rgba(0, 0, 0, 0.16);
}

.slot-node.is-empty {
  opacity: 0.76;
}

.slot-node.is-overflow {
  border-color: rgba(255, 166, 122, 0.2);
  background: linear-gradient(180deg, rgba(255, 122, 96, 0.08), rgba(6, 10, 18, 0.86));
}

.slot-number {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.slot-team {
  font-size: 0.96rem;
}

.slot-copy {
  color: var(--muted);
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card,
.access-card,
.review-card,
.ranking-item {
  padding: 18px;
  border-radius: 20px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transform: perspective(1200px) rotateX(8deg);
}

.team-card header,
.review-card header,
.ranking-item header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.team-card h4,
.review-card h4,
.ranking-item h4 {
  margin: 0;
  font-size: 1.08rem;
}

.team-card p,
.review-card p,
.ranking-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.team-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.team-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 183, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-note {
  min-height: 42px;
}

.team-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 16px;
  align-items: end;
}

.team-move {
  display: grid;
  gap: 8px;
}

.team-move span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.team-move select {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(126, 162, 198, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(5, 11, 18, 0.74));
  color: var(--text);
}

.team-move-button {
  white-space: nowrap;
}

.notification-shell {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 183, 255, 0.12);
}

.discord-status-card {
  margin-top: 6px;
}

.discord-actions {
  margin-top: 18px;
}

.notification-item {
  display: grid;
  gap: 4px;
}

.notification-item.is-success {
  color: #d8fff5;
}

.notification-item.is-warning {
  color: #ffd9c9;
}

.notification-time {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.review-card {
  display: grid;
  gap: 12px;
}

.review-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-evidence-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(81, 255, 214, 0.18);
  background: rgba(81, 255, 214, 0.08);
  color: #d6fff7;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.review-link:hover {
  border-color: rgba(81, 255, 214, 0.4);
  background: rgba(81, 255, 214, 0.12);
}

.review-link.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.review-caption {
  margin: 0;
  font-size: 0.84rem;
}

.review-manual-form {
  margin-top: 6px;
}

.review-actions button {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(126, 162, 198, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.ranking-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
}

.ranking-position {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(81, 255, 214, 0.26), rgba(122, 183, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.ranking-points {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.ranking-score {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.ranking-score p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ranking-subline {
  margin-top: 8px;
  font-size: 0.84rem;
  color: rgba(220, 239, 255, 0.72);
}

.ranking-subline.is-penalty {
  color: #ffb0ba;
}

.admin-ops-form {
  display: grid;
  gap: 14px;
}

.admin-ops-form label {
  display: grid;
  gap: 8px;
}

.admin-ops-form label span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-ops-form input,
.admin-ops-form select,
.admin-ops-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(126, 162, 198, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(5, 11, 18, 0.78));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.admin-ops-form textarea {
  min-height: 110px;
}

.admin-ops-form select:disabled,
.admin-ops-form input:disabled,
.admin-ops-form textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-ops-feedback,
.publish-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(126, 162, 198, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.admin-ops-feedback {
  color: var(--muted);
}

.admin-ops-feedback[data-state="success"] {
  color: #d8fff5;
  border-color: rgba(121, 221, 141, 0.28);
  background: linear-gradient(180deg, rgba(121, 221, 141, 0.1), rgba(255, 255, 255, 0.02));
}

.admin-ops-feedback[data-state="warning"] {
  color: #ffe0a4;
  border-color: rgba(255, 213, 109, 0.28);
  background: linear-gradient(180deg, rgba(255, 213, 109, 0.12), rgba(255, 255, 255, 0.02));
}

.admin-ops-feedback[data-state="error"] {
  color: #ffd6dc;
  border-color: rgba(255, 102, 120, 0.24);
  background: linear-gradient(180deg, rgba(255, 102, 120, 0.12), rgba(255, 255, 255, 0.02));
}

.clan-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.clan-card {
  display: grid;
  gap: 12px;
}

.founder-only-card.is-locked .clan-form {
  display: none;
}

.founder-only-card.is-locked .admin-ops-feedback {
  border-color: rgba(255, 213, 109, 0.28);
  background: linear-gradient(180deg, rgba(255, 213, 109, 0.12), rgba(255, 255, 255, 0.02));
  color: #ffe0a4;
}

.clan-lock-card {
  border-color: rgba(255, 213, 109, 0.24);
}

.clan-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.clan-role-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.clan-role-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.clan-role-pill {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(82, 255, 221, 0.18);
  border-radius: 10px;
  background: rgba(82, 255, 221, 0.055);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.15;
}

.clan-role-pill strong {
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clan-role-pill code {
  min-width: 0;
  color: var(--text);
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
  user-select: all;
}

.clan-form {
  margin-top: 4px;
}

.toggle-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
}

.admin-ops-form .toggle-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.admin-ops-form .toggle-row span {
  color: var(--text);
}

.publish-status p:last-child {
  margin: 8px 0 0;
  color: var(--text);
}

/* Stability + performance pass for the operational dashboard */
.app-shell {
  perspective: none;
  transform-style: flat;
}

.dashboard {
  transform-style: flat;
}

.section-grid {
  perspective: none;
  gap: 26px;
}

.sidebar {
  transform: none;
  backdrop-filter: blur(8px);
}

.topbar,
.hero,
.card,
.metric-card,
.sidebar-panel,
.team-card,
.review-card,
.access-card,
.ranking-item,
.summary-tile,
.preview-item,
.visual-panel,
.visual-tile,
.signal-shell,
.featured-spotlight,
.logo-card,
.lobby-card,
.event-control-shell,
.control-status-bar {
  transform: none;
  transform-style: flat;
}

.topbar,
.card,
.metric-card,
.visual-panel,
.visual-tile,
.signal-shell {
  backdrop-filter: none;
}

.card:hover,
.visual-panel:hover,
.visual-tile:hover,
.logo-card:hover,
.lobby-card:hover,
.topbar:hover {
  transform: translateY(-2px);
}

.primary-button,
.ghost-button,
.danger-button {
  transform: none;
}

.primary-button:hover,
.ghost-button:hover,
.danger-button:hover {
  transform: translateY(-1px);
}

.match-builder-card,
.builder-summary-card {
  align-self: start;
}

body::before {
  filter: blur(8px);
}

body::after {
  filter: blur(9px);
}

.ambient-orb {
  filter: blur(12px);
  opacity: 0.46;
}

.dashboard::after {
  filter: blur(6px);
  opacity: 0.75;
}

.access-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.results-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.access-badge {
  margin: 0 0 12px;
  width: fit-content;
  background: rgba(255, 150, 72, 0.16);
  color: #ffd7bd;
}

.is-hidden {
  display: none !important;
}

@keyframes blink-cursor {
  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

@keyframes scan-lines {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes brnx-orbit {
  0% {
    transform: rotateY(0deg) rotateX(14deg);
  }

  100% {
    transform: rotateY(360deg) rotateX(14deg);
  }
}

@keyframes orbit-pulse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0.74;
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.03);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
    opacity: 0.74;
  }
}

@media (max-width: 1280px) {
  .section-intro {
    flex-direction: column;
  }

  .alliance-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .topbar,
  .hero,
  .card,
  .metric-card,
  .brand-orbit,
  .form-section,
  .lobby-card,
  .event-control-shell,
  .visual-panel,
  .logo-card,
  .featured-clan,
  .summary-tile,
  .preview-item,
  .team-card,
  .access-card,
  .review-card,
  .ranking-item {
    transform: none !important;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    clip-path: none;
  }

  .hero,
  .section-grid,
  .field-grid-2,
  .signal-grid,
  .alliance-shell,
  .alliance-showcase,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .span-2,
  .span-3 {
    grid-column: span 1;
  }

  .visual-tile,
  .visual-tile:nth-child(even) {
    transform: none !important;
  }

  .visual-tile-xl,
  .visual-tile-lg {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .dashboard {
    padding: 18px;
  }

  .sidebar {
    padding: 22px 18px;
  }

  .topbar,
  .button-row,
  .control-status-bar,
  .preview-meta,
  .preview-title,
  .section-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .control-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .timeline-item,
  .ranking-item,
  .logo-card,
  .visual-panel-clan,
  .visual-panel-support {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px;
  }

  .boot-shell {
    width: 100%;
    min-height: 340px;
    max-height: none;
  }

  .boot-terminal {
    width: 100%;
    min-height: 340px;
    padding: 60px 18px 18px;
    transform: none;
  }

  .boot-shell::before {
    inset: 0;
  }

  .boot-shell::after {
    width: 100%;
  }

  .boot-label,
  .boot-lines,
  .boot-cursor-row {
    width: 100%;
  }

  .boot-line {
    font-size: 0.94rem;
  }

  .boot-welcome {
    max-width: calc(100vw - 24px);
    font-size: clamp(1.8rem, 8vw, 3rem);
    letter-spacing: 0.1em;
    white-space: normal;
  }
}
