:root {
  --bg: #02060f;
  --panel: rgba(7, 16, 31, 0.86);
  --panel-2: rgba(9, 24, 48, 0.76);
  --line: rgba(64, 148, 255, 0.28);
  --line-bright: rgba(40, 241, 255, 0.7);
  --text: #eef6ff;
  --muted: #8ea9c9;
  --blue: #1599ff;
  --cyan: #28f1ff;
  --yellow: #ffd33d;
  --orange: #ff8a1f;
  --green: #35f38a;
  --red: #ff5151;
  --shadow: 0 26px 90px rgba(0, 82, 180, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% -12%, rgba(25, 132, 255, 0.26), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(12, 238, 255, 0.09), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(0, 77, 160, 0.12), transparent 35%),
    linear-gradient(180deg, #02050d 0%, #050912 48%, #02050d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.68), transparent 82%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 100%);
  z-index: -1;
}

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

button {
  font: inherit;
  color: inherit;
}

.page {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 26px 0 46px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px 22px;
  border-bottom: 1px solid rgba(126, 177, 255, 0.09);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(40, 241, 255, .22), rgba(30, 115, 255, .1)),
    rgba(11, 26, 50, .86);
  border: 1px solid rgba(56, 177, 255, .45);
  box-shadow: 0 0 24px rgba(0, 148, 255, .28), inset 0 0 24px rgba(69, 187, 255, .14);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: conic-gradient(from 90deg, var(--cyan), var(--blue), #0f4fff, var(--cyan));
  clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
  box-shadow: 0 0 20px rgba(40, 241, 255, .7);
}

.brand-text {
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(72, 180, 255, .3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn,
.primary-btn,
.ghost-btn {
  border: 1px solid rgba(76, 153, 255, .32);
  background: linear-gradient(180deg, rgba(18, 42, 78, .88), rgba(8, 17, 32, .86));
  border-radius: 13px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  box-shadow: inset 0 0 18px rgba(37, 137, 255, .09), 0 10px 30px rgba(0, 0, 0, .18);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-btn:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 241, 255, .75);
  box-shadow: 0 14px 42px rgba(0, 129, 255, .22), inset 0 0 20px rgba(40, 241, 255, .12);
}

.nav-btn-primary {
  border-color: rgba(40, 241, 255, .44);
}

.nav-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(26, 121, 255, .18);
  color: #9adfff;
}

.hero {
  position: relative;
  min-height: 310px;
  margin-top: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(52, 153, 255, .30);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 14, 29, .97) 0%, rgba(7, 24, 52, .91) 38%, rgba(3, 10, 24, .46) 100%),
    radial-gradient(circle at 70% 50%, rgba(39, 177, 255, .30), transparent 35%),
    linear-gradient(135deg, rgba(7, 38, 85, .94), rgba(4, 9, 20, .98));
  box-shadow: var(--shadow), inset 0 0 80px rgba(29, 146, 255, .12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(27, 155, 255, .10) 45% 46%, transparent 46% 100%),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(75, 168, 255, .08) 53px 54px),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(75, 168, 255, .055) 49px 50px);
  opacity: .72;
  transform: perspective(900px) rotateX(54deg) translateY(-118px) scale(1.2);
  transform-origin: top;
}

.hero-glow {
  position: absolute;
  right: 7%;
  top: 22%;
  width: 360px;
  height: 190px;
  background:
    radial-gradient(circle at 50% 50%, rgba(40, 241, 255, .32), transparent 35%),
    linear-gradient(90deg, transparent, rgba(40, 241, 255, .2), transparent);
  filter: blur(2px);
  opacity: .7;
  clip-path: polygon(0 20%, 100% 0, 90% 84%, 16% 100%);
}

.server-racks {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  opacity: .72;
  background:
    linear-gradient(90deg, rgba(5, 9, 19, 0), rgba(4, 10, 21, .45)),
    repeating-linear-gradient(90deg,
      transparent 0 24px,
      rgba(17, 87, 170, .28) 25px 27px,
      transparent 28px 70px,
      rgba(30, 156, 255, .26) 71px 73px,
      transparent 74px 118px),
    repeating-linear-gradient(0deg,
      rgba(5, 13, 26, .1) 0 17px,
      rgba(47, 154, 255, .10) 18px 20px,
      rgba(0, 0, 0, .08) 21px 42px);
  mask-image: linear-gradient(90deg, transparent 0, #000 22%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 42px;
  max-width: 760px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #b7d8ff;
  background: rgba(12, 38, 77, .78);
  border: 1px solid rgba(67, 158, 255, .34);
  box-shadow: inset 0 0 20px rgba(42, 154, 255, .08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .94;
  letter-spacing: -.06em;
  text-shadow: 0 0 24px rgba(90, 180, 255, .22);
}

.hero-subtitle {
  margin: 0;
  color: #c6dbf5;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.45;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #80daff;
  background: linear-gradient(145deg, rgba(29, 149, 255, .26), rgba(40, 241, 255, .07));
  border: 1px solid rgba(67, 168, 255, .25);
  box-shadow: 0 0 24px rgba(18, 126, 255, .15);
}

.feature strong {
  display: block;
  font-size: 14px;
}

.feature span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.servers-shell {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(50, 140, 255, .32);
  background: rgba(5, 12, 24, .86);
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0, 70, 160, .18);
}

.game-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 66px;
  background: linear-gradient(180deg, rgba(20, 47, 86, .72), rgba(7, 16, 31, .92));
  border-bottom: 1px solid rgba(59, 152, 255, .24);
}

.game-tab {
  --tab-color: var(--cyan);
  position: relative;
  border: 0;
  border-right: 1px solid rgba(78, 154, 255, .16);
  background: transparent;
  color: #a8bad0;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: color .2s ease, background .2s ease;
}

.game-tab:last-child {
  border-right: 0;
}

.game-tab[data-game="csgo"] { --tab-color: var(--cyan); }
.game-tab[data-game="cs2"] { --tab-color: var(--yellow); }
.game-tab[data-game="rust"] { --tab-color: var(--orange); }

.game-tab::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: transparent;
  box-shadow: none;
  transition: background .2s ease, box-shadow .2s ease, left .2s ease, right .2s ease;
}

.game-tab.active {
  color: #f8fcff;
  background: linear-gradient(180deg, color-mix(in srgb, var(--tab-color) 24%, transparent), rgba(11, 27, 53, .42));
}

.game-tab.active::after {
  left: 10%;
  right: 10%;
  background: var(--tab-color);
  box-shadow: 0 0 22px color-mix(in srgb, var(--tab-color) 75%, transparent);
}

.tab-symbol {
  font-size: 24px;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--tab-color) 55%, transparent));
}

.server-area {
  padding: 16px;
}

.main-card {
  --active-accent: var(--cyan);
  display: grid;
  grid-template-columns: .95fr 1.05fr .95fr;
  gap: 16px;
  min-height: 330px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--active-accent) 45%, rgba(55, 154, 255, .22));
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--active-accent) 18%, transparent), transparent 30%),
    linear-gradient(135deg, rgba(8, 24, 51, .88), rgba(3, 10, 24, .97));
  overflow: hidden;
  box-shadow: inset 0 0 80px color-mix(in srgb, var(--active-accent) 14%, transparent);
  animation: fadeUp .35s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.game-art {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10, 27, 53, .2), rgba(0, 0, 0, .34)),
    var(--game-bg, radial-gradient(circle at 50% 40%, rgba(0, 148, 255, .5), transparent 45%));
  border-right: 1px solid rgba(72, 153, 255, .14);
  isolation: isolate;
}

.game-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.22), transparent 5%),
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 43% 44%, transparent 45% 100%),
    repeating-linear-gradient(135deg, transparent 0 19px, rgba(255,255,255,.045) 20px 21px);
  mix-blend-mode: screen;
  opacity: .65;
  z-index: 1;
}

.game-art::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -100px;
  bottom: -122px;
  border-radius: 50%;
  border: 1px solid rgba(118, 203, 255, .13);
  box-shadow: 0 0 80px color-mix(in srgb, var(--active-accent) 18%, transparent), inset 0 0 80px color-mix(in srgb, var(--active-accent) 10%, transparent);
  z-index: 1;
}

.weapon-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .78;
  background:
    linear-gradient(18deg, transparent 0 36%, rgba(174, 222, 255, .16) 37% 38%, transparent 39% 100%),
    linear-gradient(161deg, transparent 0 58%, rgba(174, 222, 255, .13) 59% 60%, transparent 61% 100%);
}

.game-logo-large {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase;
  text-shadow: 0 0 28px color-mix(in srgb, var(--active-accent) 40%, transparent);
}

.game-logo-large small {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  letter-spacing: .12em;
  color: rgba(210, 234, 255, .68);
}

.character-mark {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(2, 10, 22, .58);
  border: 1px solid color-mix(in srgb, var(--active-accent) 28%, rgba(148, 215, 255, .18));
  box-shadow: inset 0 0 25px color-mix(in srgb, var(--active-accent) 14%, transparent);
  color: var(--active-accent);
  font-size: 32px;
}

.stats-panel {
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(53, 243, 138, .9);
}

.status span:last-child {
  color: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  border-top: 1px solid rgba(118, 177, 255, .10);
}

.stat {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(118, 177, 255, .10);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #8edaff;
  background: rgba(25, 111, 235, .14);
  border: 1px solid rgba(50, 155, 255, .16);
}

.stat label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 3px;
}

.stat b {
  display: block;
  font-size: 21px;
  line-height: 1.1;
  word-break: break-word;
}

.stat .accent {
  color: var(--green);
}

.actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 12px;
}

.primary-btn {
  border-color: color-mix(in srgb, var(--active-accent, var(--cyan)) 60%, rgba(40, 241, 255, .34));
  background: linear-gradient(180deg, color-mix(in srgb, var(--active-accent, var(--cyan)) 78%, #ffffff 8%), color-mix(in srgb, var(--active-accent, var(--cyan)) 62%, #001733 38%));
  box-shadow: 0 12px 38px color-mix(in srgb, var(--active-accent, var(--cyan)) 24%, transparent), inset 0 1px 0 rgba(255,255,255,.24);
  font-weight: 900;
}

.ghost-btn {
  background: rgba(7, 17, 31, .72);
  color: #d3eaff;
  font-weight: 800;
}

.map-panel {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-preview {
  min-height: 152px;
  border-radius: 15px;
  border: 1px solid rgba(94, 169, 255, .22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.22)),
    var(--map-bg);
  overflow: hidden;
  position: relative;
}

.map-preview::before {
  content: "A";
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 90px;
  font-weight: 950;
  color: rgba(255,255,255,.13);
  text-shadow: 0 0 20px rgba(0,0,0,.35);
}

.map-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(3, 9, 20, .78), transparent);
}

.chart-card {
  flex: 1;
  border-radius: 16px;
  border: 1px solid rgba(94, 169, 255, .18);
  background: rgba(4, 13, 28, .54);
  padding: 16px;
  min-height: 145px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #77c9ff;
  font-weight: 800;
}

.chart-value {
  color: var(--active-accent);
}

.chart,
.vpn-chart-svg {
  width: 100%;
  height: 90px;
  display: block;
}

.vpn-card {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 18px;
  min-height: 280px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(50, 170, 255, .30);
  background:
    radial-gradient(circle at 78% 18%, rgba(40, 241, 255, .16), transparent 30%),
    linear-gradient(135deg, rgba(6, 18, 35, .92), rgba(4, 10, 22, .96));
  box-shadow: var(--shadow), inset 0 0 80px rgba(40, 241, 255, .07);
  overflow: hidden;
  padding: 28px;
}

.vpn-orbit {
  position: absolute;
  right: -120px;
  top: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(40, 241, 255, .16);
  box-shadow: inset 0 0 90px rgba(40, 241, 255, .08), 0 0 90px rgba(40, 241, 255, .08);
}

.vpn-content,
.vpn-panel {
  position: relative;
  z-index: 2;
}

.pill-vpn {
  color: #c4f5ff;
  border-color: rgba(40, 241, 255, .38);
}

.vpn-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.045em;
}

.vpn-card p {
  max-width: 770px;
  margin: 0;
  color: #b9cce4;
  font-size: 17px;
  line-height: 1.62;
}

.vpn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.vpn-item {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(76, 153, 255, .18);
  background: rgba(5, 16, 32, .58);
}

.vpn-item span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(21, 153, 255, .13);
  border: 1px solid rgba(40, 241, 255, .17);
}

.vpn-item strong,
.vpn-item small {
  display: block;
}

.vpn-item strong {
  font-size: 14px;
}

.vpn-item small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.vpn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.vpn-panel {
  align-self: stretch;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(70, 168, 255, .25);
  background:
    radial-gradient(circle at 50% 0%, rgba(40, 241, 255, .14), transparent 40%),
    rgba(5, 15, 30, .70);
  box-shadow: inset 0 0 50px rgba(30, 140, 255, .10);
}

.vpn-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #dffcff;
}

.vpn-speed {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(118, 177, 255, .10);
}

.vpn-speed span {
  color: var(--muted);
}

.vpn-speed strong {
  font-size: 26px;
  color: var(--cyan);
}

.vpn-mini-chart {
  margin-top: 18px;
}

.footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(166, 198, 238, .8);
  font-weight: 700;
}

.footer a {
  color: #9ae9ff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 18px;
  border-radius: 13px;
  border: 1px solid rgba(40, 241, 255, .42);
  background: rgba(4, 13, 28, .94);
  color: #dff6ff;
  box-shadow: 0 14px 40px rgba(0, 125, 255, .24);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .game-tab.active {
    background: linear-gradient(180deg, rgba(19, 130, 255, .38), rgba(11, 27, 53, .42));
  }

  .game-tab.active::after {
    background: var(--tab-color);
  }
}

@media (max-width: 1100px) {
  .features,
  .vpn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-card {
    grid-template-columns: 1fr 1fr;
  }

  .map-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .vpn-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .page {
    width: min(100% - 20px, var(--max));
    padding-top: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content,
  .vpn-card {
    padding: 28px 22px;
  }

  .hero-glow,
  .server-racks {
    opacity: .32;
  }

  .features,
  .map-panel,
  .vpn-grid {
    grid-template-columns: 1fr;
  }

  .game-tabs {
    grid-template-columns: 1fr;
  }

  .game-tab {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(78, 154, 255, .16);
  }

  .main-card {
    grid-template-columns: 1fr;
  }

  .game-art {
    min-height: 260px;
  }

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


/* === XZON extra pages === */
.content-shell,
.lk-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 24px;
}

.content-card,
.login-card,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(64, 148, 255, 0.25);
  background:
    linear-gradient(180deg, rgba(12, 31, 58, .74), rgba(5, 12, 26, .84)),
    radial-gradient(circle at 80% 0%, rgba(40, 241, 255, .08), transparent 32%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 30px;
}

.content-card::before,
.login-card::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(40, 241, 255, .20), transparent 30%, rgba(255, 138, 31, .12));
  opacity: .55;
  mask: linear-gradient(#000, transparent 42%);
}

.page-title {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -0.04em;
}

.page-subtitle {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(3, 12, 26, .58);
  border: 1px solid rgba(91, 171, 255, .18);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  color: var(--cyan);
}

.route-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.route-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
}

.route-row b {
  color: var(--text);
}

.route-row span {
  color: var(--muted);
  font-weight: 800;
}

.login-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.login-form label {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.login-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(91, 171, 255, .24);
  border-radius: 16px;
  background: rgba(2, 8, 18, .78);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.login-form input:focus {
  border-color: rgba(40, 241, 255, .7);
  box-shadow: 0 0 0 4px rgba(40, 241, 255, .08);
}

.small-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(53, 243, 138, .10);
  color: #b9ffd8;
  border: 1px solid rgba(53, 243, 138, .25);
  font-weight: 900;
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(53, 243, 138, .9);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section-gap {
  margin-top: 24px;
}

.brand-text {
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  .content-shell,
  .lk-shell,
  .metric-grid {
    grid-template-columns: 1fr;
  }
}
