*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #060608;
  --surface: #111111;
  --surface-2: #161616;
  --border: #252525;
  --border-hover: #333333;
  --text: #ededed;
  --muted: #888888;
  --dim: #555555;
  --online: #3ba55d;
  --idle: #faa81a;
  --dnd: #ed4245;
  --offline: #747f8d;
  --display: 'Syne', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.hidden { display: none !important; }

a { color: inherit; }

/* hero Trx */
.name--hero {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(165deg, #ffffff 30%, #a8a8a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

.hero__title {
  margin-bottom: 0.65rem;
}

.hero__title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

/* gate */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 6vw, 4rem);
  background: #060608;
  transition: opacity 0.7s ease, visibility 0.7s;
}

.gate.exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate.exiting .gate__panel,
.gate.exiting .gate__branch {
  transform: scale(0.97) translateY(8px);
  opacity: 0;
  animation: none;
}

.gate__scene {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.gate__branch {
  position: absolute;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.14);
  opacity: 0;
  animation: gateBranchIn 0.6s ease forwards;
}

.gate__branch--left {
  right: calc(100% - 1px);
  top: 30%;
  flex-direction: row;
  animation-delay: 0.5s;
}

.gate__branch--right {
  left: calc(100% - 1px);
  top: 54%;
  flex-direction: row;
  animation-delay: 0.65s;
}

.gate__branch-svg {
  width: 80px;
  height: 40px;
  flex-shrink: 0;
  overflow: visible;
}

.gate__branch-flow {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.55));
}

.gate__branch-box {
  padding: 0.55rem 0.75rem;
  background: rgba(14, 14, 16, 0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 76px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  position: relative;
}

.gate__branch-box::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.04);
}

.gate__branch--left .gate__branch-box::before {
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
}

.gate__branch--right .gate__branch-box::before {
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes gateBranchIn {
  to { opacity: 1; }
}

.gate__branch-label {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 0.15rem;
}

.gate__branch-value {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.gate__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gate__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 28% 8%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 45% 22%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 62% 12%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 78% 20%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 88% 10%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 35% 32%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 55% 28%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 72% 35%, rgba(255, 255, 255, 0.2), transparent);
  mask-image: linear-gradient(to bottom, black 0%, transparent 55%);
  animation: gateStars 6s ease-in-out infinite alternate;
}

@keyframes gateStars {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.gate__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 120%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(120, 140, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.gate__grid {
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 42%;
  background:
    linear-gradient(to top, #060608 8%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 48px
    );
  transform: perspective(500px) rotateX(68deg);
  transform-origin: bottom center;
  opacity: 0.5;
}

.gate__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  padding: 0 1.75rem 1.75rem;
  text-align: center;
  background: rgba(14, 14, 16, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transition: transform 0.7s ease, opacity 0.7s ease;
  animation: gatePanelIn 0.9s ease both;
  overflow: hidden;
}

.gate__branch {
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.gate__bar {
  display: flex;
  gap: 6px;
  padding: 0.85rem 0 1.25rem;
  justify-content: flex-start;
}

.gate__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #333;
}

.gate__bar span:nth-child(1) { background: #3a3a3a; }

@keyframes gatePanelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gate__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 0.85rem;
}

.gate__title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.gate__title::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.gate__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.gate__meta {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gate__meta span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.02);
}

.gate__status {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}

.gate__line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0;
  animation: gateLineIn 0.5s ease forwards;
}

.gate__line:nth-child(1) { animation-delay: 0.35s; }
.gate__line:nth-child(2) { animation-delay: 0.55s; }
.gate__line:nth-child(3) { animation-delay: 0.75s; }

.gate__line + .gate__line {
  margin-top: 0.45rem;
}

@keyframes gateLineIn {
  to { opacity: 1; }
}

.gate__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--online);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(59, 165, 93, 0.4);
}

.gate__pulse--wait {
  background: var(--idle);
  box-shadow: 0 0 8px rgba(250, 168, 26, 0.35);
  animation: gatePulse 1.8s ease infinite;
}

@keyframes gatePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.gate__btn {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.gate__btn:hover,
.gate__btn:focus-visible {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
}

.gate__hint {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  color: var(--dim);
}

.gate__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* background */
.app {
  position: relative;
  min-height: 100vh;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}

.bg__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 28% 8%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 45% 22%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 62% 12%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 78% 20%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 88% 10%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 35% 32%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 55% 28%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 72% 35%, rgba(255, 255, 255, 0.2), transparent);
  mask-image: linear-gradient(to bottom, black 0%, transparent 55%);
  animation: gateStars 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.bg__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 120%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(120, 140, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.bg__grid {
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 42%;
  background:
    linear-gradient(to top, #060608 8%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 48px
    );
  transform: perspective(500px) rotateX(68deg);
  transform-origin: bottom center;
  opacity: 0.5;
  pointer-events: none;
}

.bg__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, black 0%, black 18%, transparent 42%);
  pointer-events: none;
}

/* layout */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.top__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.top__nav {
  display: flex;
  gap: 1.5rem;
}

.top__nav a {
  font-size: 0.8rem;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}

.top__nav a:hover { color: var(--text); }

/* hero */
.hero {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0.5rem;
}

.hero__label {
  font-size: 0.75rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.hero__text {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.5;
}

/* main layout */
.main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.split-line {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 10%,
    rgba(255, 255, 255, 0.12) 70%,
    transparent 100%
  );
}

.split-block {
  position: relative;
  margin: 2.5rem 0 2rem;
}

.scroll-more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-left: 1.25rem;
  background: var(--bg);
  font-size: 0.72rem;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.scroll-more:hover {
  color: var(--text);
}

.scroll-more svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(3px); opacity: 1; }
}

.setup {
  padding-bottom: 0.5rem;
}

.setup__title {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 1.25rem;
}

.setup__table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.setup__table-head,
.setup__table-row {
  display: grid;
  grid-template-columns: 145px 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1.15rem;
  min-height: 3.25rem;
}

.setup__table-head {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dim);
}

.setup__table-game {
  color: var(--dim);
}

.setup__table-row {
  border-bottom: 1px solid var(--border);
}

.setup__table-row:last-child {
  border-bottom: none;
}

.setup__game {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap;
}

.setup__cell {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  min-height: 1.45em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.setup__cell a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.setup__cell a:hover {
  color: var(--text);
}

.setup__dot {
  margin: 0 0.25rem;
  color: var(--dim);
}

.setup__na {
  font-size: 0.82rem;
  color: var(--dim);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
}

.panel__label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 0.75rem;
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.panel__head .panel__label {
  margin-bottom: 0;
}

.panel__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.panel__muted {
  font-size: 0.85rem;
  color: var(--dim);
}

.panel__badge {
  font-size: 0.65rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel__badge.live {
  color: var(--online);
}

.panel__link {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.panel__link:hover {
  color: var(--text);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.tags li {
  font-size: 0.7rem;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

/* info list */
.info-list {
  margin-top: 0.15rem;
}

.info-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.info-list__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list__row:first-child {
  padding-top: 0;
}

.info-list dt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dim);
}

.info-list dd {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
}

.info-list__row--quote {
  justify-content: center;
  padding-top: 0.65rem;
}

.info-list__row--quote dd {
  font-style: italic;
  color: var(--text);
  text-align: center;
}

/* links */
.links-group + .links-group {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.links-group__label {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 0.55rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 7px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.link-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.link-btn__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.8;
}

.link-btn:hover .link-btn__icon {
  opacity: 1;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.85;
}

.btn:hover .btn__icon {
  opacity: 1;
}

.btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.02);
}

.btn--full {
  width: auto;
  align-self: flex-start;
  margin-top: 1.15rem;
  padding: 0.65rem 1.15rem;
}

/* discord */
.discord {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex: 1;
}

.discord__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.discord__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
}

.discord__status-ring {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord__status-ring svg {
  width: 15px;
  height: 15px;
  display: block;
}

.discord__info {
  min-width: 0;
  flex: 1;
}

.discord__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.discord__status-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 0.1rem;
}

.discord__user {
  display: none;
}

.discord__activity {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.discord__activity img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
}

.discord__activity-label {
  font-size: 0.65rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.discord__activity-title {
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord__activity-sub {
  font-size: 0.75rem;
  color: var(--dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord__notice {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.5;
}

/* footer */
.foot {
  margin-top: auto;
  padding-top: 3.5rem;
  font-size: 0.75rem;
  color: var(--dim);
}

@media (max-width: 580px) {
  .top { margin-bottom: 3rem; }
  .hero { margin-bottom: 1.25rem; }
  .split-block { margin: 2rem 0 1.5rem; }
  .scroll-more {
    position: static;
    transform: none;
    padding-left: 0;
    margin-top: 1rem;
    justify-content: flex-end;
  }
  .setup__table-head {
    display: none;
  }
  .setup__table-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.1rem 1rem;
    min-height: auto;
  }
  .setup__game {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }
  .setup__cell::before {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dim);
    margin-bottom: 0.15rem;
  }
  .setup__table-row .setup__cell:nth-child(2)::before { content: 'HWID Spoofer'; }
  .setup__table-row .setup__cell:nth-child(3)::before { content: 'DMA'; }
  .setup__table-row .setup__cell:nth-child(4)::before { content: 'Software'; }
  .row-2 { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .top__nav { gap: 1rem; }
  .gate__panel { padding: 1.75rem 1.25rem; }
  .gate__branch { display: none; }
}
