@font-face {
  font-family: "Anjoman";
  src: url(../fonts/Anjoman-Regular.ttf);
}
@font-face {
  font-family: "Anjoman-Bold";
  src: url(../fonts/Anjoman-Black.ttf);
}
:root {
  --bg: #050817;
  --bg2: #080d21;
  --panel: rgba(10, 17, 41, 0.82);
  --panel2: rgba(7, 12, 31, 0.92);
  --text: #f3f7ff;
  --muted: #9aa9c5;
  --line: rgba(126, 151, 255, 0.17);
  --blue: #24a8ff;
  --purple: #915bff;
  --green: #45ff9b;
  --red: #ff5069;
  --yellow: #ffd166;
  --container: 1240px;
  --hero-accent: #24a8ff;
  --hero-accent-2: #915bff;
  --hero-bg: url("../images/counter-source/hero.svg");
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 16%,
      rgba(36, 168, 255, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(145, 91, 255, 0.09),
      transparent 28%
    ),
    var(--bg);
  font-family: "Anjoman";
  line-height: 1.8;
}
body.theme-css {
  --hero-accent: #28a8ff;
  --hero-accent-2: #8d62ff;
  --hero-bg: url("../images/counter-source/hero.svg");
}
body.theme-cs2 {
  --hero-accent: #7b5cff;
  --hero-accent-2: #25b9ff;
  --hero-bg: url("../images/cs2/hero.svg");
}
body.theme-minecraft {
  --hero-accent: #45ff9b;
  --hero-accent-2: #2fb5ff;
  --hero-bg: url("../images/minecraft/hero.svg");
}
a {
  color: inherit;
  text-decoration: none;
}
p a {
  color: var(--hero-accent);
}
h1,
h2,
h3 {
  font-family: "Anjoman-Bold";
  font-weight: 900;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(calc(100% - 34px), var(--container));
  margin-inline: auto;
}
.page-grid {
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(105, 129, 195, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 129, 195, 0.042) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(126, 151, 255, 0.14);
  background: rgba(4, 7, 19, 0.72);
  backdrop-filter: blur(22px) saturate(1.2);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(4, 7, 19, 0.9);
  border-bottom-color: rgba(126, 151, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.nav-shell {
  position: relative;
}
.nav-v2 {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-v2 {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  flex-shrink: 0;
}
.brand-logo-slot {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: color-mix(in srgb, var(--hero-accent) 80%, #fff);
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--hero-accent) 12%, transparent),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(7, 12, 29, 0.75);
  box-shadow:
    inset 0 0 26px color-mix(in srgb, var(--hero-accent) 6%, transparent),
    0 0 24px color-mix(in srgb, var(--hero-accent) 10%, transparent);
}
.brand-logo-slot::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hero-accent),
    transparent
  );
  transform: rotate(-35deg);
  opacity: 0.6;
}
.brand-logo-slot span {
  position: relative;
  z-index: 2;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.brand-copy {
  display: grid;
  line-height: 1.12;
}
.brand-copy strong {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: "Anjoman-Bold";
}
.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 2.1px;
}
.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(126, 151, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.nav-center > a,
.explore-trigger {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 13px;
  border: 0;
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav-center > a:hover,
.explore-trigger:hover,
.explore-trigger.is-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}
.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}
.explore-wrap {
  position: relative;
}
.explore-trigger {
  position: relative;
  color: #fff;
  padding-inline: 14px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--hero-accent) 12%, transparent),
    color-mix(in srgb, var(--hero-accent-2) 8%, transparent)
  );
  box-shadow: inset 0 0 0 1px
    color-mix(in srgb, var(--hero-accent) 16%, transparent);
}
.explore-trigger::before {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hero-accent),
    transparent
  );
  opacity: 0.7;
}
.explore-symbol {
  color: var(--hero-accent);
  font-size: 12px;
  filter: drop-shadow(
    0 0 8px color-mix(in srgb, var(--hero-accent) 65%, transparent)
  );
}
.explore-chevron {
  margin-right: 2px;
  color: #8795af;
  transition: transform 0.2s ease;
}
.explore-trigger.is-open .explore-chevron {
  transform: rotate(180deg);
}
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}
.current-game-pill {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 7px 5px 12px;
  border: 1px solid rgba(126, 151, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.current-game-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #06131c;
  /* background: linear-gradient(135deg, var(--hero-accent), var(--hero-accent-2)); */
  box-shadow: 0 0 18px color-mix(in srgb, var(--hero-accent) 18%, transparent);
  font-size: 9px;
  font-weight: 900;
}
.current-game-mark i {
  color: var(--hero-accent);
  font-size: 16px;
}
.current-game-pill > span:last-child {
  display: grid;
  line-height: 1.15;
}
.current-game-pill small {
  color: var(--muted);
  font-size: 7px;
}
.current-game-pill strong {
  margin-top: 3px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}
.mobile-menu-button {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}
.mobile-menu-button span {
  width: 17px;
  height: 1px;
  display: block;
  margin: 4px auto;
  background: #d9e3f5;
  transition: 0.2s ease;
}

/* Explore / Mega Menu */
.explore-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(820px, calc(100vw - 40px));
  padding: 17px;
  border: 1px solid rgba(126, 151, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 15% 0%,
      color-mix(in srgb, var(--hero-accent) 10%, transparent),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 100%,
      color-mix(in srgb, var(--hero-accent-2) 9%, transparent),
      transparent 32%
    ),
    rgba(6, 10, 25, 0.96);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px) saturate(1.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}
.explore-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.explore-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18%;
  width: 170px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hero-accent),
    transparent
  );
}
.explore-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 4px 14px;
}
.explore-top > div {
  display: grid;
}
.explore-top small {
  color: var(--hero-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.6px;
}
.explore-top strong {
  margin-top: 4px;
  font-size: 12px;
}
.explore-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(69, 255, 155, 0.14);
  border-radius: 999px;
  color: #aab8cf;
  background: rgba(69, 255, 155, 0.04);
  font-size: 8px;
}
.explore-current i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.explore-search {
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.explore-search > span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8190aa;
  font-size: 18px;
}
.explore-search input {
  width: 100%;
  min-height: 46px;
  padding: 9px 43px 9px 48px;
  border: 1px solid rgba(126, 151, 255, 0.13);
  border-radius: 13px;
  outline: 0;
  color: #fff;
  background: rgba(3, 7, 20, 0.62);
  font-size: 10px;
}
.explore-search input:focus {
  border-color: color-mix(in srgb, var(--hero-accent) 40%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hero-accent) 7%, transparent);
}
.explore-search kbd {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
}
kbd {
  min-width: 22px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #8592a9;
  background: rgba(255, 255, 255, 0.04);
  font:
    700 8px/1 Tahoma,
    Arial,
    sans-serif;
}
.explore-scroll {
  max-height: min(510px, 65vh);
  overflow: auto;
  padding-left: 3px;
}
.explore-scroll::-webkit-scrollbar {
  width: 5px;
}
.explore-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(126, 151, 255, 0.18);
}
.explore-section {
  padding: 14px;
  border: 1px solid rgba(126, 151, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.016);
}
.explore-section + .explore-section {
  margin-top: 11px;
}
.explore-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 11px;
}
.explore-section-head > div {
  display: grid;
}
.explore-section-head small {
  color: #7686a3;
  font-size: 7px;
  letter-spacing: 1.4px;
}
.explore-section-head strong {
  font-size: 11px;
}
.explore-section-head > span {
  color: #71809b;
  font-size: 7px;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.explore-card {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(126, 151, 255, 0.1);
  border-radius: 13px;
  background: rgba(4, 9, 24, 0.52);
  transition: 0.2s ease;
}
.explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.04),
    transparent 70%
  );
  transform: translateX(120%);
  transition: transform 0.5s ease;
}
.explore-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--hero-accent) 28%, transparent);
  background: color-mix(in srgb, var(--hero-accent) 5%, rgba(4, 9, 24, 0.72));
}
.explore-card:hover::after {
  transform: translateX(-120%);
}
.explore-card.is-active {
  border-color: color-mix(in srgb, var(--hero-accent) 32%, transparent);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--hero-accent) 9%, transparent),
    rgba(4, 9, 24, 0.58)
  );
  box-shadow: inset 3px 0 0 var(--hero-accent);
}
.explore-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  color: var(--hero-accent);
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 900;
}
.explore-card-copy {
  min-width: 0;
  display: grid;
  flex: 1;
  line-height: 1.25;
}
.explore-card-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
}
.explore-card-copy small {
  margin-top: 5px;
  color: #7988a4;
  font-size: 7px;
}
.explore-arrow {
  color: #71809a;
  font-size: 12px;
}
.explore-card-add {
  border-style: dashed;
}
.soon-badge {
  padding: 4px 6px;
  border: 1px solid rgba(126, 151, 255, 0.11);
  border-radius: 7px;
  color: #7e8da7;
  background: rgba(255, 255, 255, 0.025);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.6px;
}
.explore-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.explore-mini-card {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(126, 151, 255, 0.09);
  border-radius: 13px;
  background: rgba(4, 9, 24, 0.38);
}
.explore-mini-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
  flex: 1;
  line-height: 1.25;
}
.explore-mini-card strong {
  font-size: 9px;
}
.explore-mini-card small {
  margin-top: 4px;
  color: #7887a2;
  font-size: 7px;
}
.mini-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  color: var(--hero-accent);
  background: color-mix(in srgb, var(--hero-accent) 7%, transparent);
}
.explore-empty {
  display: none;
  padding: 26px 10px 10px;
  text-align: center;
  color: #7f8ca5;
  font-size: 9px;
}
.explore-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 4px 1px;
  color: #697994;
  font-size: 7px;
}
.explore-key {
  display: flex;
  align-items: center;
  gap: 6px;
}
.explore-item-hidden {
  display: none !important;
}

.game-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  border-bottom: 1px solid var(--line);
  background: #060a18;
}
.game-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 20, 0.99) 0%,
      rgba(5, 8, 20, 0.94) 39%,
      rgba(5, 8, 20, 0.48) 70%,
      rgba(5, 8, 20, 0.82) 100%
    ),
    var(--hero-bg) center/cover no-repeat;
  filter: saturate(1.08);
  transform: scale(1.025);
}
.game-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 78% 45%,
      color-mix(in srgb, var(--hero-accent) 18%, transparent),
      transparent 26%
    ),
    linear-gradient(to bottom, transparent 68%, #050817 100%);
}
.scanlines {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.055;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 4px,
    rgba(255, 255, 255, 0.09) 5px
  );
}
.hero-layout {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding-top: 54px;
  padding-bottom: 54px;
}
.game-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 30%, transparent);
  background: color-mix(in srgb, var(--hero-accent) 7%, transparent);
  color: var(--hero-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.game-eyebrow i,
.online-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: pulse 1.5s infinite;
}
.hero-content h1 {
  margin: 17px 0 15px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.12;
  letter-spacing: -2px;
}
.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    #eaf7ff,
    var(--hero-accent),
    var(--hero-accent-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(
    0 0 22px color-mix(in srgb, var(--hero-accent) 22%, transparent)
  );
}
.hero-text {
  max-width: 700px;
  margin: 0;
  color: #b2bfd7;
  font-size: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}
.hero-primary,
.hero-secondary {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 13px;
  font-weight: 900;
  transition: 0.22s ease;
  border: unset;
}
.hero-primary {
  color: #06131c;
  background: linear-gradient(135deg, var(--hero-accent), var(--hero-accent-2));
  box-shadow: 0 0 30px color-mix(in srgb, var(--hero-accent) 24%, transparent);
}
.hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px color-mix(in srgb, var(--hero-accent) 36%, transparent);
}
.hero-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}
.hero-secondary:hover {
  border-color: color-mix(in srgb, var(--hero-accent) 40%, transparent);
  background: rgba(255, 255, 255, 0.06);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 29px;
}
.hero-stats div {
  min-width: 88px;
}
.hero-stats strong {
  display: block;
  font-size: 21px;
  line-height: 1.35;
}
.hero-stats span {
  color: var(--muted);
  font-size: 9px;
}

.hero-side {
  position: relative;
  min-height: 445px;
  display: grid;
  place-items: center;
}

.hero-poster {
  --tilt-x: 2deg;
  --tilt-y: -7deg;
  --tilt-shift-x: 0px;
  --tilt-shift-y: 0px;
  --glare-x: 50%;
  --glare-y: 50%;
  position: relative;
  width: min(430px, 92%);
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 34%, transparent);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 45px color-mix(in srgb, var(--hero-accent) 14%, transparent);
  transform: perspective(1050px)
    translate3d(var(--tilt-shift-x), var(--tilt-shift-y), 0)
    rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--glare-x) var(--glare-y),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.045) 16%,
    transparent 42%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
}
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 7, 18, 0.92), transparent 50%);
}
.poster-copy {
  position: absolute;
  z-index: 2;
  right: 23px;
  left: 23px;
  bottom: 21px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.poster-copy small {
  display: block;
  color: var(--hero-accent);
  font-size: 8px;
  letter-spacing: 1.5px;
}
.poster-copy strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}
.poster-copy span {
  color: #c5d0e4;
  font-size: 9px;
}
.hero-rune {
  position: absolute;
  color: color-mix(in srgb, var(--hero-accent) 65%, #fff);
  font-size: 26px;
  opacity: 0.7;
}
.rune-1 {
  top: 10%;
  right: 1%;
}
.rune-2 {
  bottom: 12%;
  left: 5%;
}

.hero-ticker {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  overflow: auto;
  border-top: 1px solid rgba(126, 151, 255, 0.12);
  background: rgba(5, 8, 22, 0.7);
  color: #8292b0;
  font-size: 8px;
  letter-spacing: 1.8px;
}
.hero-ticker span::before {
  content: "\f111";
  margin-left: 9px;
  color: var(--hero-accent);
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 5px;
}

.servers-section {
  padding: 68px 0 74px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-kicker {
  color: var(--hero-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.section-heading h2 {
  margin: 5px 0 3px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 9px;
}
.update-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.5s infinite;
}
.server-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 16, 40, 0.7);
  backdrop-filter: blur(12px);
}
.search-box {
  position: relative;
}
.search-box span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 21px;
}
.search-box input,
.server-toolbar select {
  width: 100%;
  min-height: 47px;
  border: 1px solid rgba(126, 151, 255, 0.14);
  border-radius: 12px;
  outline: 0;
  color: #fff;
  background: rgba(4, 9, 24, 0.78);
}
.search-box input {
  padding: 9px 45px 9px 13px;
}
.server-toolbar select {
  min-width: 160px;
  padding: 9px 11px;
}
.server-toolbar option {
  background: #09112c;
}
.search-box input:focus,
.server-toolbar select:focus {
  border-color: color-mix(in srgb, var(--hero-accent) 55%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hero-accent) 8%, transparent);
}

.server-list {
  display: grid;
  gap: 15px;
}
.server-row {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 205px;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.8fr 1fr;
  align-items: stretch;
  border: 1px solid rgba(126, 151, 255, 0.2);
  border-radius: 23px;
  background: #071025;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.27);
  transition: 0.24s ease;
}
.server-banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: saturate(1.18) contrast(1.08) brightness(0.88);
  transform: scale(1.01);
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}
.server-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 9, 24, 0.96) 0%,
      rgba(6, 11, 28, 0.88) 37%,
      rgba(7, 12, 31, 0.66) 68%,
      rgba(5, 9, 24, 0.48) 100%
    ),
    linear-gradient(to bottom, rgba(4, 8, 20, 0.12), rgba(4, 8, 20, 0.42));
}
.server-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0 38%,
    rgba(255, 255, 255, 0.045) 47%,
    transparent 56%
  );
  transform: translateX(120%);
  transition: transform 0.85s ease;
}
.server-row:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--hero-accent) 45%, transparent);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 28px color-mix(in srgb, var(--hero-accent) 12%, transparent);
}
.server-row:hover::before {
  transform: translateX(-120%);
}
.server-row:hover .server-banner-image {
  transform: scale(1.055);
  filter: saturate(1.28) contrast(1.08) brightness(0.96);
}
.server-game,
.server-description,
.server-stats,
.server-connect {
  position: relative;
  z-index: 2;
  padding: 23px;
}
.server-game {
  display: flex;
  align-items: center;
  gap: 14px;
}
.server-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(5, 10, 27, 0.58);
  color: var(--hero-accent);
  font-size: 21px;
  font-weight: 900;
}
.server-game small {
  display: block;
  color: var(--green);
  font-size: 8px;
  letter-spacing: 1.15px;
}
.server-game strong {
  display: block;
  margin-top: 3px;
  font-size: 17px;
}
.server-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-inline: 1px solid rgba(255, 255, 255, 0.07);
}
.status {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
}
.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.status.online {
  color: var(--green);
  border: 1px solid rgba(69, 255, 155, 0.17);
  background: rgba(69, 255, 155, 0.07);
}
.status.busy {
  color: var(--yellow);
  border: 1px solid rgba(255, 209, 102, 0.17);
  background: rgba(255, 209, 102, 0.07);
}
.status.offline {
  color: var(--red);
  border: 1px solid rgba(255, 80, 105, 0.18);
  background: rgba(255, 80, 105, 0.07);
}
.server-description p {
  margin: 9px 0;
  color: #b5c2d9;
  font-size: 10px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags span {
  padding: 3px 7px;
  border-radius: 7px;
  color: #c6d1e7;
  background: rgba(255, 255, 255, 0.05);
  font-size: 8px;
}
.server-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 7px;
}
.server-stats div {
  padding: 11px 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(5, 10, 27, 0.46);
}
.server-stats small {
  display: block;
  color: var(--muted);
  font-size: 8px;
}
.server-stats strong {
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  font-size: 11px;
}
.server-connect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.server-connect code {
  direction: ltr;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #e5efff;
  font:
    700 11px/1.6 Consolas,
    monospace;
}
.server-buttons {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
}
.copy-button,
.direct-join {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 11px;
  font-size: 9px;
  font-weight: 900;
  transition: 0.2s ease;
}
.copy-button {
  border: 1px solid color-mix(in srgb, var(--hero-accent) 24%, transparent);
  cursor: pointer;
  background: color-mix(in srgb, var(--hero-accent) 10%, transparent);
}
.copy-button:hover {
  background: color-mix(in srgb, var(--hero-accent) 20%, transparent);
}
.copy-button.copied {
  color: var(--green);
  border-color: rgba(69, 255, 155, 0.25);
  background: rgba(69, 255, 155, 0.1);
}
.direct-join {
  color: #06131c;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 30%, transparent);
  background: linear-gradient(135deg, var(--hero-accent), var(--hero-accent-2));
  box-shadow: 0 0 20px color-mix(in srgb, var(--hero-accent) 14%, transparent);
}
.direct-join:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px color-mix(in srgb, var(--hero-accent) 24%, transparent);
}
.direct-join.disabled {
  pointer-events: none;
  color: #8d98ab;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}
.empty-state {
  display: none;
  margin-top: 15px;
  padding: 44px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(9, 16, 40, 0.48);
}
.empty-state strong {
  display: block;
  font-size: 17px;
}
.empty-state span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.features-section {
  padding: 4px 0 78px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.feature-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(14, 24, 57, 0.74),
    rgba(8, 13, 33, 0.86)
  );
  transition: 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--hero-accent) 35%, transparent);
}
.feature-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--hero-accent);
  background: color-mix(in srgb, var(--hero-accent) 9%, transparent);
  font-size: 19px;
}
.feature-card h3 {
  margin: 13px 0 4px;
  font-size: 14px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.seo-section {
  padding: 0 0 84px;
}
.seo-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 8% 14%,
      color-mix(in srgb, var(--hero-accent) 11%, transparent),
      transparent 28%
    ),
    linear-gradient(145deg, rgba(13, 22, 52, 0.88), rgba(7, 12, 30, 0.96));
}
.seo-heading {
  padding: 28px 28px 0;
}
.seo-heading > span {
  color: var(--hero-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
}
.seo-heading h2 {
  margin: 5px 0 3px;
  font-size: clamp(24px, 4vw, 34px);
}
.seo-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.seo-content {
  position: relative;
  max-height: 235px;
  overflow: hidden;
  padding: 18px 28px 0;
  transition: max-height 0.6s ease;
}
.seo-content.expanded {
  max-height: 1800px;
}
.seo-content:not(.expanded)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, rgba(8, 13, 33, 0.99));
  pointer-events: none;
}
.seo-content p {
  margin: 0 0 12px;
  color: #afbdd5;
  font-size: 12px;
  text-align: justify;
}
.seo-content h3 {
  margin: 22px 0 6px;
  font-size: 16px;
}
.seo-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 16px 20px 23px;
}
.read-more {
  min-width: 170px;
  min-height: 44px;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 28%, transparent);
  border-radius: 12px;
  cursor: pointer;
  color: #edf5ff;
  background: color-mix(in srgb, var(--hero-accent) 9%, transparent);
  font-weight: 900;
}
.read-more:hover {
  background: color-mix(in srgb, var(--hero-accent) 17%, transparent);
}

.site-footer {
  padding: 43px 0 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 27, 0.24),
    rgba(3, 6, 17, 0.98)
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 42px;
  padding-bottom: 29px;
}
.footer-about p {
  max-width: 500px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.footer-grid h3 {
  margin: 0 0 10px;
  font-size: 13px;
}
.footer-grid > div:not(.footer-about) a {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
}
.footer-grid > div:not(.footer-about) a:hover {
  color: var(--green);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 19px;
  border-top: 1px solid rgba(126, 151, 255, 0.1);
  color: var(--muted);
  font-size: 9px;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 22px;
  bottom: 22px;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px solid rgba(69, 255, 155, 0.23);
  color: #dffff0;
  background: rgba(5, 24, 21, 0.94);
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.32);
  transform: translateY(90px);
  opacity: 0;
  transition: 0.28s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.back-to-top {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 25%, transparent);
  cursor: pointer;
  color: #fff;
  background: rgba(9, 17, 42, 0.86);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: 0.22s ease;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes pulse {
  50% {
    opacity: 0.5;
    transform: scale(0.72);
  }
}

@media (max-width: 1100px) {
  .game-switcher {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .server-row {
    grid-template-columns: 1fr 1.15fr;
  }
  .server-stats,
  .server-connect {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}
@media (max-width: 950px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }
  .hero-text {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-side {
    min-height: 380px;
  }
  .hero-poster {
    width: min(370px, 82%);
  }
  .nav-links {
    display: none;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }
  .site-header {
    position: relative;
  }
  .brand-copy strong {
    font-size: 14px;
  }
  .brand-copy small {
    font-size: 7px;
  }
  .game-switcher {
    overflow: auto;
    justify-content: flex-start;
  }
  .game-switcher a {
    white-space: nowrap;
  }
  .game-hero {
    min-height: auto;
  }
  .hero-layout {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 43px;
  }
  .hero-content h1 {
    letter-spacing: -1px;
  }
  .hero-side {
    min-height: 320px;
  }
  .hero-poster {
    width: 260px;
  }
  .hero-ticker {
    justify-content: flex-start;
    padding: 0 14px;
    gap: 24px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .server-toolbar {
    grid-template-columns: 1fr;
  }
  .server-toolbar select {
    min-width: 0;
  }
  .server-row {
    grid-template-columns: 1fr;
  }
  .server-row::after {
    background: linear-gradient(
      to bottom,
      rgba(5, 9, 24, 0.9),
      rgba(5, 9, 24, 0.97)
    );
  }
  .server-game,
  .server-description,
  .server-stats,
  .server-connect {
    padding: 19px;
  }
  .server-description,
  .server-connect {
    border-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .server-connect {
    border-right: 0;
  }
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .seo-heading,
  .seo-content {
    padding-inline: 18px;
  }
  .footer-grid {
    gap: 25px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .back-to-top {
    right: 12px;
    bottom: 67px;
  }
}

@media (max-width: 1100px) {
  .nav-v2 {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .nav-center {
    justify-self: end;
  }
  .current-game-pill {
    display: none;
  }
}
@media (max-width: 800px) {
  .site-header {
    position: sticky;
  }
  .nav-v2 {
    min-height: 70px;
    grid-template-columns: auto auto;
  }
  .brand-logo-slot {
    width: 43px;
    height: 43px;
  }
  .nav-center {
    position: absolute;
    top: calc(100% + 1px);
    right: 11px;
    left: 11px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 9px;
    border-radius: 16px;
    background: rgba(5, 9, 23, 0.97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  }
  .nav-center.is-mobile-open {
    display: flex;
  }
  .nav-center > a,
  .explore-trigger {
    width: 100%;
    justify-content: flex-start;
    min-height: 43px;
  }
  .explore-wrap {
    width: 100%;
  }
  .explore-trigger {
    justify-content: space-between;
  }
  .explore-trigger .explore-symbol {
    margin-left: auto;
  }
  .explore-panel {
    position: fixed;
    top: 78px;
    right: 11px;
    left: 11px;
    width: auto;
    max-height: calc(100vh - 92px);
    transform: translateY(-8px) scale(0.99);
  }
  .explore-panel.is-open {
    transform: translateY(0) scale(1);
  }
  .explore-grid,
  .explore-mini-grid {
    grid-template-columns: 1fr;
  }
  .mobile-menu-button {
    display: block;
  }
  .nav-actions {
    justify-self: end;
  }
}
@media (max-width: 520px) {
  .brand-copy small {
    display: none;
  }
  .brand-copy strong {
    font-size: 13px;
  }
  .explore-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .explore-current {
    align-self: flex-start;
  }
  .explore-section-head > span {
    display: none;
  }
  .explore-footer > span:first-child {
    display: none;
  }
  .hero-poster {
    --tilt-x: 0deg !important;
    --tilt-y: 0deg !important;
    --tilt-shift-x: 0px !important;
    --tilt-shift-y: 0px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   NEDXCO HOME / GAME LIBRARY
   ========================================================= */
body.theme-home {
  --hero-accent: #28a8ff;
  --hero-accent-2: #8f5cff;
}
.home-network-pill .current-game-mark {
  background: linear-gradient(135deg, #45ff9b, #28a8ff 54%, #8f5cff);
}
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(40, 168, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(143, 92, 255, 0.11),
      transparent 25%
    ),
    linear-gradient(135deg, #050817, #071025 55%, #090b20);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      120deg,
      transparent 0 46%,
      rgba(40, 168, 255, 0.035) 47%,
      transparent 48%
    ),
    linear-gradient(
      30deg,
      transparent 0 58%,
      rgba(143, 92, 255, 0.04) 59%,
      transparent 60%
    );
  background-size:
    160px 160px,
    220px 220px;
  opacity: 0.7;
}
.home-hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 4px,
    rgba(255, 255, 255, 0.08) 5px
  );
}
.home-hero-layout {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 76px;
  padding-top: 55px;
  padding-bottom: 55px;
}
.home-hero-copy h1 {
  margin: 17px 0 15px;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.12;
  letter-spacing: -2px;
}
.home-hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    #f3fbff,
    #28a8ff 42%,
    #8f5cff 78%,
    #45ff9b
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(40, 168, 255, 0.17));
}
.home-hero-copy > p {
  max-width: 690px;
  margin: 0;
  color: #b4c1d8;
  font-size: 14px;
}
.home-explore-button {
  cursor: pointer;
}
.home-stats {
  margin-top: 31px;
}
.home-orbit {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.network-core {
  position: relative;
  z-index: 5;
  width: 190px;
  height: 190px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(126, 151, 255, 0.23);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(40, 168, 255, 0.12), rgba(143, 92, 255, 0.08)),
    rgba(7, 13, 32, 0.86);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 44px rgba(40, 168, 255, 0.13),
    inset 0 0 32px rgba(255, 255, 255, 0.025);
  transform: rotate(-5deg);
  animation: homeCoreFloat 5s ease-in-out infinite;
}
.network-core > span {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 20px;
  color: #06131c;
  background: linear-gradient(135deg, #45ff9b, #28a8ff, #8f5cff);
  font-size: 31px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(40, 168, 255, 0.25);
}
.network-core strong {
  font-size: 17px;
  letter-spacing: 2px;
}
.network-core small {
  margin-top: 3px;
  color: #8495b1;
  font-size: 7px;
  letter-spacing: 1.6px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(126, 151, 255, 0.15);
}
.ring-one {
  width: 360px;
  height: 360px;
  animation: orbitSpin 18s linear infinite;
}
.ring-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  border-color: rgba(143, 92, 255, 0.13);
  animation: orbitSpinReverse 24s linear infinite;
}
.orbit-game {
  position: absolute;
  z-index: 6;
  width: 105px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(126, 151, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 13, 32, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
  transition: 0.22s ease;
}
.orbit-game:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(40, 168, 255, 0.42);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(40, 168, 255, 0.12);
}
.orbit-game span {
  font-size: 14px;
  font-weight: 900;
}
.orbit-game small {
  margin-top: 3px;
  color: #8291aa;
  font-size: 7px;
}
.orbit-css {
  top: 9%;
  left: 12%;
  color: #44baff;
}
.orbit-cs2 {
  right: 4%;
  top: 39%;
  color: #9b73ff;
}
.orbit-mc {
  left: 18%;
  bottom: 5%;
  color: #55ffa4;
}
@keyframes homeCoreFloat {
  50% {
    transform: translateY(-11px) rotate(-2deg);
  }
}
@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

.game-library {
  padding: 78px 0 84px;
}
.library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.library-heading h2 {
  margin: 5px 0 4px;
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.25;
}
.library-heading p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.library-count {
  min-width: 110px;
  padding: 12px 15px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.024);
}
.library-count span {
  display: block;
  color: var(--hero-accent);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}
.library-count small {
  color: var(--muted);
  font-size: 8px;
}
.game-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 16, 40, 0.68);
  backdrop-filter: blur(12px);
}
.game-search-box {
  position: relative;
  flex: 1;
  max-width: 600px;
}
.game-search-box span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 21px;
}
.game-search-box input {
  width: 100%;
  min-height: 46px;
  padding: 9px 44px 9px 13px;
  border: 1px solid rgba(126, 151, 255, 0.13);
  border-radius: 12px;
  outline: 0;
  color: #fff;
  background: rgba(4, 9, 24, 0.76);
  font-size: 10px;
}
.game-search-box input:focus {
  border-color: rgba(40, 168, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(40, 168, 255, 0.07);
}
.game-filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.game-filter {
  min-height: 36px;
  padding: 6px 11px;
  border: 1px solid rgba(126, 151, 255, 0.11);
  border-radius: 10px;
  cursor: pointer;
  color: #8f9db7;
  background: rgba(255, 255, 255, 0.02);
  font-size: 8px;
  font-weight: 800;
  transition: 0.2s ease;
}
.game-filter:hover,
.game-filter.active {
  color: #fff;
  border-color: rgba(40, 168, 255, 0.25);
  background: rgba(40, 168, 255, 0.09);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(330px, auto);
  gap: 16px;
}
.game-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(126, 151, 255, 0.18);
  border-radius: 26px;
  background: #080e22;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.27);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.game-tile-wide {
  grid-column: span 2;
  min-height: 430px;
}
.game-tile-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}
.game-tile-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(4, 8, 20, 0.3),
      rgba(4, 8, 20, 0.42) 35%,
      rgba(4, 8, 20, 0.94) 100%
    ),
    linear-gradient(90deg, rgba(4, 8, 20, 0.9), transparent 67%);
}
.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.055) 47%,
    transparent 62%
  );
  transform: translateX(120%);
  transition: transform 0.8s ease;
}
.game-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(40, 168, 255, 0.38);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(40, 168, 255, 0.1);
}
.game-tile:hover::before {
  transform: translateX(-120%);
}
.game-tile:hover .game-tile-bg {
  transform: scale(1.075);
  filter: saturate(1.18) contrast(1.05);
}
.game-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 21px;
}
.game-index {
  font:
    900 12px/1 Consolas,
    monospace;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 1px;
}
.game-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(69, 255, 155, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(69, 255, 155, 0.06);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.game-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.game-tile-content {
  margin-top: auto;
  padding: 45px 24px 15px;
  max-width: 690px;
}
.game-code {
  display: inline-block;
  margin-bottom: 7px;
  color: #43b6ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.game-tile:nth-child(2) .game-code {
  color: #9874ff;
}
.game-tile:nth-child(3) .game-code {
  color: #55ffa4;
}
.game-tile h3 {
  margin: 0;
  font-size: clamp(23px, 3vw, 37px);
  line-height: 1.25;
}
.game-tile:not(.game-tile-wide) h3 {
  font-size: clamp(21px, 2.4vw, 29px);
}
.game-tile-content p {
  max-width: 590px;
  margin: 8px 0 12px;
  color: #aebcd4;
  font-size: 10px;
}
.game-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.game-tags span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #bdc9dc;
  background: rgba(255, 255, 255, 0.04);
  font-size: 7px;
}
.game-tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 20px 20px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(4, 8, 21, 0.55);
  backdrop-filter: blur(10px);
}
.game-metrics {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #8e9db7;
  font-size: 8px;
}
.game-metrics b {
  color: #fff;
  font-size: 10px;
}
.game-enter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e9f4ff;
  font-size: 9px;
  font-weight: 900;
}
.game-enter b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #06131c;
  background: linear-gradient(135deg, #45ff9b, #28a8ff);
  font-size: 11px;
}
.game-tile-coming {
  min-height: 250px;
  display: grid;
  place-items: center;
  text-align: center;
  border-style: dashed;
  background: rgba(8, 14, 34, 0.5);
  box-shadow: none;
}
.game-tile-coming:hover {
  transform: none;
  border-color: rgba(143, 92, 255, 0.28);
  box-shadow: none;
}
.coming-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(126, 151, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 151, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}
.coming-plus {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border: 1px solid rgba(143, 92, 255, 0.22);
  border-radius: 17px;
  color: #a17dff;
  background: rgba(143, 92, 255, 0.07);
  font-size: 28px;
}
.coming-copy {
  position: relative;
  display: grid;
  padding: 20px;
  max-width: 350px;
}
.coming-copy small {
  color: #9274db;
  font-size: 7px;
  letter-spacing: 1.5px;
}
.coming-copy strong {
  font-size: 18px;
}
.coming-copy span {
  margin-top: 4px;
  color: #7e8ca5;
  font-size: 9px;
}
.game-empty {
  display: none;
  padding: 45px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(9, 16, 40, 0.44);
}
.game-empty strong {
  display: block;
}
.game-empty span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}
.game-card-hidden {
  display: none !important;
}

.home-network-section {
  padding: 0 0 80px;
}
.network-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(40, 168, 255, 0.09),
      transparent 30%
    ),
    linear-gradient(145deg, rgba(13, 22, 52, 0.82), rgba(7, 12, 30, 0.92));
}
.network-strip-copy h2 {
  margin: 5px 0 7px;
  font-size: clamp(23px, 3vw, 34px);
}
.network-strip-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.network-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.network-points > div {
  padding: 15px;
  border: 1px solid rgba(126, 151, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.network-points span {
  display: block;
  color: #4bb9ff;
  font:
    900 9px/1 Consolas,
    monospace;
}
.network-points strong {
  display: block;
  margin-top: 8px;
  font-size: 10px;
}
.network-points small {
  display: block;
  margin-top: 3px;
  color: #7f8da7;
  font-size: 7px;
}

@media (max-width: 950px) {
  .home-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  .home-hero-copy > p {
    margin-inline: auto;
  }
  .home-hero-copy .hero-actions,
  .home-hero-copy .hero-stats {
    justify-content: center;
  }
  .home-orbit {
    min-height: 390px;
  }
  .game-tile-wide {
    grid-column: auto;
  }
  .game-grid {
    grid-template-columns: 1fr 1fr;
  }
  .network-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .home-hero-layout {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .home-hero-copy h1 {
    letter-spacing: -1px;
  }
  .home-orbit {
    min-height: 340px;
  }
  .network-core {
    width: 150px;
    height: 150px;
  }
  .network-core > span {
    width: 53px;
    height: 53px;
    font-size: 25px;
  }
  .network-core strong {
    font-size: 14px;
  }
  .ring-one {
    width: 270px;
    height: 270px;
  }
  .ring-two {
    width: 320px;
    height: 320px;
  }
  .orbit-game {
    width: 86px;
    min-height: 58px;
  }
  .orbit-css {
    left: 3%;
  }
  .orbit-cs2 {
    right: 0;
  }
  .orbit-mc {
    left: 11%;
  }
  .library-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .library-count {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .library-count span {
    display: inline;
  }
  .game-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .game-search-box {
    max-width: none;
  }
  .game-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .game-tile,
  .game-tile-wide {
    min-height: 390px;
  }
  .game-tile-coming {
    min-height: 240px;
  }
  .game-tile-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .game-metrics {
    flex-wrap: wrap;
  }
  .network-points {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .orbit-game {
    display: none;
  }
  .ring-one {
    width: 240px;
    height: 240px;
  }
  .ring-two {
    width: 290px;
    height: 290px;
  }
  .game-tile {
    min-height: 360px;
  }
  .game-tile-content {
    padding-inline: 18px;
  }
  .game-tile-top {
    padding-inline: 18px;
  }
  .game-tile-footer {
    margin-inline: 15px;
  }
}

/* =========================================================
   NEDXCO HOME HERO V2 — GAME COMMAND CENTER
   ========================================================= */
.home-hero-v2 {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid rgba(126, 151, 255, 0.18);
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(41, 177, 255, 0.16),
      transparent 23%
    ),
    radial-gradient(
      circle at 65% 70%,
      rgba(145, 91, 255, 0.12),
      transparent 27%
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(69, 255, 155, 0.055),
      transparent 22%
    ),
    linear-gradient(135deg, #030611 0%, #05091a 43%, #07122b 72%, #08091c 100%);
}
.home-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.5;
  background:
    linear-gradient(rgba(70, 110, 185, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 110, 185, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 96%);
}
.home-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3, 6, 17, 0.9),
      transparent 42%,
      rgba(3, 6, 17, 0.15) 72%,
      rgba(3, 6, 17, 0.68)
    ),
    linear-gradient(
      to bottom,
      rgba(3, 6, 17, 0.05),
      rgba(3, 6, 17, 0.52) 90%,
      #050817
    );
}
.home-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.hero-grid-plane {
  position: absolute;
  left: 49%;
  bottom: -245px;
  width: 1000px;
  height: 650px;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(40, 168, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 168, 255, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(520px) rotateX(64deg) translateX(-50%);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, #000, transparent 78%);
}
.hero-beam {
  position: absolute;
  width: 2px;
  height: 1100px;
  top: -260px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--hero-accent),
    transparent
  );
  opacity: 0.16;
  box-shadow: 0 0 18px color-mix(in srgb, var(--hero-accent) 55%, transparent);
}
.hero-beam-a {
  right: 31%;
  transform: rotate(31deg);
}
.hero-beam-b {
  right: 17%;
  transform: rotate(-25deg);
  opacity: 0.1;
}
.hero-radar-ring {
  position: absolute;
  right: 10%;
  top: 48%;
  border: 1px solid rgba(40, 168, 255, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}
.radar-a {
  width: 620px;
  height: 620px;
}
.radar-b {
  width: 470px;
  height: 470px;
  border-style: dashed;
  animation: commandSpin 26s linear infinite;
}
.radar-c {
  width: 320px;
  height: 320px;
  border-color: rgba(145, 91, 255, 0.16);
  animation: commandSpinReverse 20s linear infinite;
}
.hero-sweep {
  position: absolute;
  right: calc(10% + 310px);
  top: 48%;
  width: 280px;
  height: 1px;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(69, 255, 155, 0.25));
  animation: radarSweep 7s linear infinite;
}
.hud-cross {
  position: absolute;
  color: rgba(110, 203, 255, 0.5);
  font: 300 23px/1 monospace;
  animation: hudBlink 3.2s ease-in-out infinite;
}
.hud-cross-a {
  top: 17%;
  right: 44%;
}
.hud-cross-b {
  bottom: 21%;
  right: 7%;
  animation-delay: -1.1s;
}
.hud-cross-c {
  top: 38%;
  left: 5%;
  animation-delay: -2s;
}
.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #62c9ff;
  box-shadow: 0 0 10px #62c9ff;
  opacity: 0.5;
  animation: particleDrift 7s ease-in-out infinite;
}
.p1 {
  top: 19%;
  left: 19%;
}
.p2 {
  top: 31%;
  right: 24%;
  animation-delay: -2s;
}
.p3 {
  top: 72%;
  right: 37%;
  animation-delay: -4s;
}
.p4 {
  bottom: 15%;
  left: 38%;
  animation-delay: -1s;
}
.p5 {
  top: 12%;
  right: 8%;
  animation-delay: -5s;
}
.p6 {
  bottom: 30%;
  right: 4%;
  animation-delay: -3s;
}

.home-command-layout {
  min-height: 675px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 54px;
  padding-top: 55px;
  padding-bottom: 48px;
}
.home-command-copy {
  position: relative;
  z-index: 8;
}
.command-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.command-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(69, 255, 155, 0.2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(69, 255, 155, 0.055);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.command-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.5s infinite;
}
.command-id {
  color: #7586a4;
  font:
    700 7px/1 Consolas,
    monospace;
  letter-spacing: 1.6px;
}
.home-command-copy h1 {
  margin: 18px 0 16px;
  max-width: 720px;
  font-size: clamp(45px, 6.6vw, 79px);
  line-height: 1.3;
  letter-spacing: -2.5px;
}
.home-command-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    #f4fbff 0%,
    #62cbff 25%,
    #2aa8ff 48%,
    #9564ff 77%,
    #5cffad 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(47, 174, 255, 0.18));
}
.home-command-copy > p {
  max-width: 690px;
  margin: 0;
  color: #aebdd6;
  font-size: 13px;
}
.command-actions {
  margin-top: 27px;
}
.command-primary {
  position: relative;
  overflow: hidden;
  min-width: 190px;
}
.command-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.26),
    transparent 65%
  );
  transform: translateX(120%);
  transition: transform 0.65s ease;
}
.command-primary:hover::after {
  transform: translateX(-120%);
}
.command-play {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #06131c;
  background: rgba(255, 255, 255, 0.35);
  font-size: 8px;
}
.command-secondary {
  cursor: pointer;
}
.command-status-bar {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 29px;
  padding: 7px;
  border: 1px solid rgba(126, 151, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 10, 26, 0.48);
  backdrop-filter: blur(12px);
}
.command-status-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.022);
}
.status-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 9px;
  color: var(--hero-accent);
  background: rgba(40, 168, 255, 0.07);
  font-size: 10px;
}
.command-status-item > span:last-child {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}
.command-status-item small {
  overflow: hidden;
  color: #71809b;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 6px;
  letter-spacing: 0.5px;
}
.command-status-item strong {
  margin-top: 4px;
  color: #edf6ff;
  font-size: 10px;
}

.game-deck {
  --deck-x: 0deg;
  --deck-y: 0deg;
  --deck-shift-x: 0px;
  --deck-shift-y: 0px;
  position: relative;
  min-height: 540px;
  padding: 16px;
  border: 1px solid rgba(126, 151, 255, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(11, 22, 52, 0.48), rgba(4, 8, 21, 0.36)),
    rgba(4, 8, 21, 0.14);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px);
  perspective: 1100px;
  transform: translate3d(var(--deck-shift-x), var(--deck-shift-y), 0)
    rotateX(var(--deck-x)) rotateY(var(--deck-y));
  transform-style: preserve-3d;
  will-change: transform;
}
.game-deck::before,
.game-deck::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.game-deck::before {
  inset: 10px;
  border: 1px solid rgba(126, 151, 255, 0.065);
  border-radius: 23px;
}
.game-deck::after {
  top: 0;
  right: 18%;
  width: 180px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hero-accent),
    transparent
  );
  box-shadow: 0 0 12px var(--hero-accent);
}
.deck-hud {
  position: absolute;
  right: 20px;
  left: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f809e;
  font:
    700 6px/1 Consolas,
    monospace;
  letter-spacing: 1.3px;
}
.deck-hud-top {
  top: 16px;
}
.deck-hud-bottom {
  bottom: 15px;
}
.deck-hud-bottom span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8d9bb3;
}
.deck-hud-bottom i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.deck-stage {
  position: absolute;
  inset: 43px 18px 38px;
  transform-style: preserve-3d;
}
.deck-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.deck-orbit-1 {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(40, 168, 255, 0.12);
  animation: commandSpin 24s linear infinite;
}
.deck-orbit-2 {
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(145, 91, 255, 0.11);
  animation: commandSpinReverse 30s linear infinite;
}
.deck-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 128px;
  height: 128px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(126, 151, 255, 0.18);
  border-radius: 50%;
  background: rgba(5, 11, 28, 0.88);
  box-shadow:
    0 0 45px rgba(40, 168, 255, 0.13),
    inset 0 0 35px rgba(145, 91, 255, 0.08);
  transform: translate(-50%, -50%) translateZ(-45px);
}
.deck-core-glow {
  position: absolute;
  inset: -35px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(40, 168, 255, 0.13),
    transparent 67%
  );
  animation: corePulse 4s ease-in-out infinite;
}
.deck-core-logo {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 7px;
  border-radius: 15px;
  color: #06131c;
  font-size: 24px;
  font-weight: 900;
  opacity: 0.5;
}
.deck-core small {
  color: #8e9cb3;
  font-size: 6px;
  letter-spacing: 1.8px;
}

.deck-card {
  --card-rx: 0deg;
  --card-ry: 0deg;
  position: absolute;
  z-index: 6;
  width: 260px;
  height: 158px;
  overflow: hidden;
  border: 1px solid rgba(126, 151, 255, 0.19);
  border-radius: 20px;
  background: #081027;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.deck-card:hover {
  z-index: 12;
  border-color: rgba(81, 194, 255, 0.45);
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.48),
    0 0 32px rgba(40, 168, 255, 0.13);
  filter: saturate(1.12);
}
.deck-card-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--deck-bg) center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 0.45s ease;
}
.deck-card:hover .deck-card-bg {
  transform: scale(1.12);
}
.deck-card-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 8, 20, 0.81), rgba(4, 8, 20, 0.15)),
    linear-gradient(to top, rgba(4, 8, 20, 0.84), transparent 85%);
}
.deck-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.085),
    transparent 62%
  );
  transform: translateX(120%);
  transition: transform 0.6s ease;
}
.deck-card:hover::after {
  transform: translateX(-120%);
}
.deck-card-top {
  position: absolute;
  top: 11px;
  right: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deck-card-top small {
  color: #8999b4;
  font:
    700 6px/1 Consolas,
    monospace;
  letter-spacing: 1px;
}
.deck-card-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.deck-card-main {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 50px;
  display: grid;
  line-height: 1.15;
}
.deck-card-main b {
  color: #57c5ff;
  font-size: 17px;
  line-height: 1;
}
.deck-card-cs2 .deck-card-main b {
  color: #9b75ff;
}
.deck-card-mc .deck-card-main b {
  color: #59ffab;
}
.deck-card-main strong {
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}
.deck-card-main small {
  margin-top: 5px;
  color: #72819b;
  font:
    700 5.5px/1 Consolas,
    monospace;
  letter-spacing: 0.5px;
}
.deck-card-arrow {
  position: absolute;
  left: 13px;
  bottom: 12px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #dff3ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 10px;
}
.deck-card-css {
  top: 25px;
  right: 5px;
  transform: translateZ(55px) rotateZ(3deg) rotateY(-7deg);
}
.deck-card-cs2 {
  top: 155px;
  left: 0;
  transform: translateZ(90px) rotateZ(-4deg) rotateY(8deg);
}
.deck-card-mc {
  right: 54px;
  bottom: 12px;
  transform: translateZ(125px) rotateZ(2deg) rotateY(-5deg);
}
.deck-target {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(40, 168, 255, 0.22);
  border-radius: 50%;
}
.deck-target::before,
.deck-target::after {
  content: "";
  position: absolute;
  background: rgba(40, 168, 255, 0.24);
}
.deck-target::before {
  top: 50%;
  left: -8px;
  right: -8px;
  height: 1px;
}
.deck-target::after {
  left: 50%;
  top: -8px;
  bottom: -8px;
  width: 1px;
}
.target-a {
  left: 10%;
  top: 30%;
}
.target-b {
  right: 5%;
  bottom: 19%;
  transform: scale(0.7);
  opacity: 0.6;
}

.home-command-ticker {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 40px;
  overflow: hidden;
  border-top: 1px solid rgba(126, 151, 255, 0.12);
  background: rgba(3, 7, 18, 0.76);
  backdrop-filter: blur(12px);
}
.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 45px;
  padding-left: 45px;
  animation: commandTicker 28s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6f809d;
  font:
    700 7px/1 Consolas,
    monospace;
  letter-spacing: 1.6px;
  white-space: nowrap;
}
.ticker-track span::before {
  content: "\f111";
  color: #36b7ff;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 5px;
}

@keyframes commandSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes commandSpinReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}
@keyframes hudBlink {
  50% {
    opacity: 0.25;
    transform: scale(0.8);
  }
}
@keyframes particleDrift {
  50% {
    transform: translate(18px, -20px);
    opacity: 1;
  }
}
@keyframes corePulse {
  50% {
    transform: scale(1.13);
    opacity: 0.7;
  }
}
@keyframes commandTicker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .home-command-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
  }
  .command-status-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .deck-card {
    width: 225px;
    height: 145px;
  }
  .deck-card-css {
    right: 0;
  }
  .deck-card-cs2 {
    left: 0;
  }
  .deck-card-mc {
    right: 30px;
  }
}
@media (max-width: 950px) {
  .home-hero-v2 {
    min-height: auto;
  }
  .home-command-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 54px;
    padding-bottom: 82px;
    text-align: center;
  }
  .home-command-copy > p {
    margin-inline: auto;
  }
  .command-kicker,
  .command-actions {
    justify-content: center;
  }
  .command-status-bar {
    margin-inline: auto;
  }
  .game-deck {
    width: min(680px, 100%);
    min-height: 500px;
    margin-inline: auto;
    text-align: right;
  }
  .hero-radar-ring,
  .hero-sweep {
    right: 50%;
    transform: translate(50%, -50%);
  }
}
@media (max-width: 620px) {
  .home-command-copy h1 {
    font-size: clamp(39px, 13vw, 58px);
    letter-spacing: -1.5px;
  }
  .command-id {
    display: none;
  }
  .command-status-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-deck {
    min-height: 455px;
    padding: 12px;
  }
  .deck-stage {
    inset: 41px 10px 36px;
  }
  .deck-card {
    width: 190px;
    height: 128px;
  }
  .deck-card-css {
    top: 22px;
    right: 0;
  }
  .deck-card-cs2 {
    top: 145px;
    left: 0;
  }
  .deck-card-mc {
    right: 25px;
    bottom: 8px;
  }
  .deck-orbit-1 {
    width: 260px;
    height: 260px;
  }
  .deck-orbit-2 {
    width: 330px;
    height: 330px;
  }
  .deck-core {
    width: 105px;
    height: 105px;
  }
  .deck-core-logo {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .hero-radar-ring {
    opacity: 0.55;
  }
  .home-command-ticker {
    height: 36px;
  }
}
@media (max-width: 440px) {
  .command-status-bar {
    grid-template-columns: 1fr 1fr;
  }
  .command-status-item {
    padding: 8px;
  }
  .status-icon {
    width: 25px;
    height: 25px;
  }
  .game-deck {
    min-height: 410px;
  }
  .deck-card {
    width: 160px;
    height: 112px;
    border-radius: 16px;
  }
  .deck-card-main {
    right: 11px;
    bottom: 10px;
    left: 38px;
  }
  .deck-card-main b {
    font-size: 14px;
  }
  .deck-card-main strong {
    font-size: 7px;
  }
  .deck-card-main small {
    display: none;
  }
  .deck-card-arrow {
    width: 23px;
    height: 23px;
    left: 9px;
    bottom: 9px;
  }
  .deck-card-top {
    top: 9px;
    right: 10px;
    left: 10px;
  }
  .deck-card-css {
    top: 20px;
  }
  .deck-card-cs2 {
    top: 125px;
  }
  .deck-card-mc {
    right: 18px;
  }
  .deck-orbit-1 {
    width: 220px;
    height: 220px;
  }
  .deck-orbit-2 {
    width: 275px;
    height: 275px;
  }
  .deck-hud-bottom span:last-child {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-v2 *,
  .home-hero-v2 *::before,
  .home-hero-v2 *::after {
    animation: none !important;
  }
  .game-deck {
    transform: none !important;
  }
}

/* =========================================================
   v6 — Anjoman + Font Awesome Pro 6 + readability
   ========================================================= */
body {
  font-family: "Anjoman";
}

/* Navbar: "فهرست شبکه" کمی کشیده‌تر و خواناتر */
.explore-trigger {
  min-width: 152px;
  padding-inline: 18px;
}
.nav-center > a,
.explore-trigger {
  font-size: 12px;
}
.brand-copy small {
  font-size: 9px;
}
.current-game-pill small {
  font-size: 9px;
}
.current-game-pill strong {
  font-size: 11px;
}
.explore-top small {
  font-size: 9px;
}
.explore-top strong {
  font-size: 14px;
}
.explore-current {
  font-size: 10px;
}
.explore-search input {
  font-size: 12px;
}
.explore-section-head small {
  font-size: 9px;
}
.explore-section-head strong {
  font-size: 13px;
}
.explore-section-head > span {
  font-size: 9px;
}
.explore-card-copy strong {
  font-size: 11px;
}
.explore-card-copy small {
  font-size: 9px;
}
.explore-mini-card strong {
  font-size: 11px;
}
.explore-mini-card small {
  font-size: 9px;
}
.explore-footer {
  font-size: 9px;
}
.soon-badge {
  font-size: 8px;
}

.explore-symbol,
.explore-chevron,
.explore-arrow,
.mini-icon,
.explore-card-icon {
  line-height: 1;
}
.explore-symbol i {
  font-size: 12px;
}
.explore-chevron i {
  font-size: 9px;
}
.explore-arrow i {
  font-size: 11px;
}
.explore-card-icon i {
  font-size: 15px;
}
.mini-icon i {
  font-size: 14px;
}

/* Search icons */
.search-box span i,
.game-search-box span i,
.explore-search > span i {
  font-size: 14px;
}

/* Game pages — متن‌های خیلی ریز کمی درشت‌تر */
.game-eyebrow {
  font-size: 12px;
}
.hero-text {
  font-size: 15px;
}
.hero-stats span {
  font-size: 10px;
}
.poster-copy small {
  font-size: 9px;
}
.poster-copy span {
  font-size: 10px;
}
.hero-ticker {
  font-size: 9px;
}
.section-kicker {
  font-size: 10px;
}
.section-heading p {
  font-size: 13px;
}
.update-badge {
  font-size: 10px;
}
.server-game small {
  font-size: 9px;
}
.status {
  font-size: 9px;
}
.server-description p {
  font-size: 11px;
}
.tags span {
  font-size: 9px;
}
.server-stats small {
  font-size: 9px;
}
.server-stats strong {
  font-size: 12px;
}
.copy-button,
.direct-join {
  font-size: 10px;
}
.feature-card p {
  font-size: 11px;
}
.seo-heading > span {
  font-size: 10px;
}
.seo-heading p {
  font-size: 12px;
}
.seo-content p {
  font-size: 13px;
}
.footer-about p {
  font-size: 11px;
}
.footer-grid > div:not(.footer-about) a {
  font-size: 11px;
}
.footer-bottom {
  font-size: 10px;
}

/* Font Awesome icons inside buttons */
.hero-primary i,
.direct-join i,
.copy-button i,
.recommended-action i,
.read-more i {
  font-size: 0.92em;
}

/* Recommended server in game Hero */
.hero-recommended {
  max-width: 720px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(126, 151, 255, 0.16);
  border-radius: 17px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--hero-accent) 7%, transparent),
      rgba(4, 9, 24, 0.58)
    ),
    rgba(5, 10, 27, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}
.recommended-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}
.recommended-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dce9fb;
  font-size: 11px;
  font-weight: 800;
}
.recommended-title i {
  color: var(--yellow);
  filter: drop-shadow(0 0 8px rgba(255, 209, 102, 0.32));
}
.recommended-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}
.recommended-online i {
  font-size: 6px;
  filter: drop-shadow(0 0 7px currentColor);
}
.recommended-body {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.recommended-identity {
  min-width: 0;
  display: grid;
  line-height: 1.3;
}
.recommended-identity small {
  color: var(--hero-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.7px;
}
.recommended-identity strong {
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.recommended-identity code {
  margin-top: 3px;
  overflow: hidden;
  color: #91a5c5;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: ltr;
  text-align: left;
  font:
    700 9px/1.5 Consolas,
    monospace;
}
.recommended-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.recommended-metrics > span {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 5px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.024);
}
.recommended-metrics i {
  grid-row: 1 / span 2;
  color: var(--hero-accent);
  font-size: 10px;
}
.recommended-metrics b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}
.recommended-metrics small {
  color: #7f8ea9;
  font-size: 7px;
}
.recommended-action {
  min-width: 78px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 30%, transparent);
  border-radius: 11px;
  cursor: pointer;
  color: #06131c;
  background: linear-gradient(135deg, var(--hero-accent), var(--hero-accent-2));
  box-shadow: 0 0 18px color-mix(in srgb, var(--hero-accent) 12%, transparent);
  font-weight: 900;
  font-size: 10px;
  transition: 0.2s ease;
}
.recommended-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px color-mix(in srgb, var(--hero-accent) 22%, transparent);
}

/* Decorative FA icons */
.hero-rune i {
  font-size: 23px;
}
.hud-cross i {
  font-size: 18px;
}
.status-icon i {
  font-size: 12px;
}
.command-play i {
  font-size: 8px;
}
.deck-card-arrow i {
  font-size: 10px;
}

/* Home Hero tiny HUD typography */
.command-live {
  font-size: 9px;
}
.command-id {
  font-size: 8px;
}
.command-status-item small {
  font-size: 7px;
}
.command-status-item strong {
  font-size: 11px;
}
.deck-hud {
  font-size: 8px;
  font-family: "Anjoman";
}
.deck-card-top small {
  font-size: 7px;
}
.deck-card-main strong {
  font-size: 10px;
}
.deck-card-main small {
  font-size: 6.5px;
}
.ticker-track span {
  font-size: 8px;
}
.library-heading p {
  font-size: 13px;
}

/* deck-target is now a real FA icon instead of CSS-drawn crosshair */
.deck-target {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(40, 168, 255, 0.27);
  font-size: 25px;
}
.deck-target::before,
.deck-target::after {
  display: none;
}

/* game library / utility icons */
.game-enter b i {
  font-size: 10px;
}
.coming-plus i {
  font-size: 26px;
}
.back-to-top i {
  font-size: 12px;
}

/* Feature icon alignment */
.feature-card > span i {
  font-size: 18px;
}

@media (max-width: 800px) {
  .explore-trigger {
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .recommended-body {
    grid-template-columns: 1fr;
  }
  .recommended-action {
    width: 100%;
  }
}

/* v7: semantic server list + visible real banner images */
.server-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.server-title {
  margin: 3px 0 0;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}
.server-game,
.server-description,
.server-stats,
.server-connect {
  z-index: 2;
}
.server-game strong,
.server-description p,
.server-stats strong,
.server-connect code {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
}

@media (max-width: 680px) {
  .server-row::after {
    background: linear-gradient(
      to bottom,
      rgba(5, 9, 24, 0.72) 0%,
      rgba(5, 9, 24, 0.84) 42%,
      rgba(5, 9, 24, 0.94) 100%
    );
  }
  .server-banner-image {
    object-position: center top;
    filter: saturate(1.15) contrast(1.06) brightness(0.82);
  }
}

/* Dynamic PHP additions */
.game-fa-name {
  display: block;
  margin-top: 4px;
  color: #95a6c1;
  font-size: 9px;
}
.game-tile {
  --tile-accent: #28a8ff;
}
.game-tile:hover {
  border-color: color-mix(in srgb, var(--tile-accent) 45%, transparent);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.38),
    0 0 28px color-mix(in srgb, var(--tile-accent) 12%, transparent);
}
.brand-logo-slot img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
small {
  font-size: 12px !important;
  font-family: "Anjoman";
}
