html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

main {
  background: #07080f;
  padding-top: 70px;
}

#servers,
#news {
  scroll-margin-top: 90px;
}

.site-nav {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background:
    radial-gradient(900px 220px at 10% 10%, rgba(255, 45, 45, .14), transparent 60%),
    radial-gradient(900px 220px at 90% 0%, rgba(0, 212, 255, .10), transparent 60%),
    #0f0f0ffa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

/* games.png overlay like admin / forum */
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/games.png") center / cover no-repeat;
  opacity: 0.18;
  filter: saturate(1.05) contrast(1.08);
  pointer-events: none;
}

.site-nav > * {
  position: relative;
  z-index: 1;
}

.site-nav__menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 auto;
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.site-nav__toggle i {
  color: rgba(255, 107, 107, 0.95);
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.18);
  font-size: 16px;
}

.site-nav__cta--in-menu {
  display: none;
}

/* Safety: never show the in-menu CTA on desktop */
.site-nav__menu .site-nav__cta--in-menu {
  display: none !important;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Auth buttons (Login/Register/Hello/Admin) */
.site-nav__auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav__auth--in-menu {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.site-nav__hello {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.90);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.22);
  max-width: 260px;
}

.site-nav__hello-text {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav__hello-name {
  font-weight: 950;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.site-nav__avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 43, 43, 0.28);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 12px rgba(255, 43, 43, 0.12);
  flex: 0 0 auto;
}

.site-nav__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.site-nav__btn i {
  color: rgba(255, 107, 107, 0.95);
}

.site-nav__btn:hover {
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow:
    0 0 18px rgba(255, 43, 43, 0.12),
    0 0 14px rgba(0, 0, 0, 0.22);
  color: #fff;
  filter: saturate(1.06);
}

.site-nav__btn--register {
  background: linear-gradient(135deg, #ff2b2b 0%, #b10f19 55%, #ff2b2b 100%);
  border-color: rgba(255, 43, 43, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 43, 43, 0.12) inset,
    0 0 14px rgba(255, 43, 43, 0.18);
}

.site-nav__btn--register i { color: rgba(255, 255, 255, 0.96); }

.site-nav__btn--admin {
  border-color: rgba(0, 212, 255, 0.22);
}

.site-nav__btn--admin i { color: rgba(0, 212, 255, 0.92); }

.site-nav__btn--admin:hover {
  border-color: rgba(0, 212, 255, 0.42);
  box-shadow:
    0 0 18px rgba(0, 212, 255, 0.12),
    0 0 14px rgba(0, 0, 0, 0.22);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff2b2b 0%, #b10f19 55%, #ff2b2b 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 43, 43, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 43, 43, 0.12) inset,
    0 0 14px rgba(255, 43, 43, 0.18);
  position: relative;
  overflow: hidden;
  transition: box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.site-nav__cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.14) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-140%);
  pointer-events: none;
}

.site-nav__cta:hover {
  border-color: rgba(255, 43, 43, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 43, 43, 0.18) inset,
    0 0 22px rgba(255, 43, 43, 0.35);
  filter: saturate(1.08);
  color: #fff;
}

.site-nav__cta:hover::before {
  animation: cta-shine 650ms ease;
}

.site-nav__cta:active {
  filter: saturate(1.02) brightness(0.95);
}

.site-nav__cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 43, 43, 0.28),
    0 0 22px rgba(255, 43, 43, 0.35);
}

@keyframes cta-shine {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(140%);
  }
}

.site-nav__sep {
  width: 10px;
  height: 18px;
  position: relative;
  opacity: 0.55;
  flex: 0 0 10px;
}

.site-nav__sep::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(18deg);
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.18) 0 2px,
    rgba(255, 255, 255, 0) 2px 4px
  );
}

.site-nav__link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 6px;
  position: relative;
  gap: 8px;
}

.site-nav__link-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex: 0 0 auto;
}

.site-nav__link-icon i {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 14px;
  height: 2px;
  background: rgba(255, 43, 43, 0.95);
  box-shadow: 0 0 6px rgba(255, 43, 43, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav__link:hover {
  color: #ff2b2b;
}

.site-nav__link:hover .site-nav__link-icon {
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.14);
}

.site-nav__link:hover .site-nav__link-icon i {
  color: rgba(255, 107, 107, 0.95);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
}

/* Active nav link (keep underline) */
.site-nav__link.is-active {
  color: #ff2b2b;
}
.site-nav__link.is-active .site-nav__link-icon {
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.14);
}
.site-nav__link.is-active .site-nav__link-icon i {
  color: rgba(255, 107, 107, 0.95);
}
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav__brand:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-nav__logo-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 43, 43, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 14px rgba(255, 43, 43, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-nav__logo {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  flex: 0 0 40px;
  margin-right: -2px;
  cursor: pointer;
}

.site-nav__brand-text {
  font-size: 22px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.site-nav__brand-text-inner {
  display: inline-block;
  transform: translateX(0);
  transition: transform 220ms ease;
}

.site-nav__brand-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 43, 43, 0) 0%, rgba(255, 43, 43, 1) 35%, rgba(255, 43, 43, 1) 65%, rgba(255, 43, 43, 0) 100%);
  box-shadow: 0 0 10px rgba(255, 43, 43, 0.6), 0 0 18px rgba(255, 43, 43, 0.35);
  transform: translateX(0);
}

.site-nav__brand-text-inner:hover {
  transform: translateX(6px);
}

.site-nav__brand-left {
  color: #8f8f8f;
}

.site-nav__brand-right {
  color: #ff2b2b;
}

/* Mobile-only navbar brand sizing (keep desktop as-is) */
@media (max-width: 575.98px) {
  .site-nav__logo-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .site-nav__logo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin-right: 0;
  }

  .site-nav__brand-text {
    font-size: 18px;
    padding-bottom: 5px;
  }

  /* Mobile hamburger menu (do NOT affect desktop) */
  .site-nav__menu {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 70px;
    height: auto;
    padding: 12px;
    border-radius: 12px;
    background: #0f0f0ffa;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    z-index: 1001;
  }

  .site-nav.is-menu-open .site-nav__menu {
    display: flex;
  }

  .site-nav__sep {
    display: none;
  }

  .site-nav__toggle {
    display: inline-flex;
    margin-left: auto;
    margin-right: 10px;
  }

  .site-nav__actions {
    display: none;
  }

  .site-nav__cta--in-menu {
    display: inline-flex !important;
    width: 100%;
  }

  /* Mobile menu: show auth block inside menu */
  .site-nav__auth--in-menu {
    display: flex !important;
  }
}

.site-hero {
  height: 700px;
  position: relative;
  background-image: url("../img/s3.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(49 2 2 / 59%);
  z-index: 0;
}

/* Blend hero -> servers backgrounds */
.site-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(11, 12, 26, 0.35) 45%,
    rgba(11, 12, 26, 0.92) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.site-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-hero__left {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
}

.site-hero__brand-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-hero__brand-copy {
  margin-left: 0;
}

.site-hero__right {
  flex: 0 0 auto;
  margin-top: -5%;
}

.site-hero__discord {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: -16px;
  margin-bottom: 70px;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #fff;
  background: rgba(88, 101, 242, 0.34);
  border: 1px solid rgba(88, 101, 242, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

/* Discord button when it lives in the left column (under the copy) */
.site-hero__left .site-hero__discord {
  width: 240px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.discord-live {
  width: 240px;
  margin-top: 16px;
  margin-bottom: 10px;
  padding: 12px 12px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: discordFloat 6.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes discordFloat {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(6px, -4px, 0); }
  50% { transform: translate3d(0, 6px, 0); }
  75% { transform: translate3d(-6px, -2px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .discord-live { animation: none !important; }
}

.discord-live__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.discord-live__badge {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 101, 242, 0.22);
  border: 1px solid rgba(88, 101, 242, 0.42);
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.12);
}

.discord-live__badge i {
  color: rgba(148, 160, 255, 0.95);
  font-size: 16px;
}

.discord-live__titles {
  min-width: 0;
}

.discord-live__title {
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  line-height: 1.1;
}

.discord-live__server {
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discord-live__status {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.70);
  white-space: nowrap;
}

.discord-live__stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.discord-live__stat {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 10px;
}

.discord-live__k {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.discord-live__v {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
}

.discord-live__hint {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.3;
}

.discord-live.is-error .discord-live__badge {
  background: rgba(255, 43, 43, 0.14);
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.10);
}

.discord-live.is-error .discord-live__badge i {
  color: rgba(255, 107, 107, 0.95);
}

.site-hero__discord:hover {
  background: rgba(88, 101, 242, 0.44);
  border-color: rgba(88, 101, 242, 0.65);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(88, 101, 242, 0.24);
  color: #fff;
}

.site-hero__discord:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(88, 101, 242, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.22);
}

.site-hero__stats-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.site-hero__stats-line {
  height: 1px;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.22);
}

.site-hero__stats-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px;
}

.site-hero__card {
  --accent: rgba(255, 43, 43, 0.85);
  --glass: rgba(0, 0, 0, 0.26);
  background:
    radial-gradient(100px 80px at 18% 25%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 14px 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.site-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.0), var(--accent), rgba(255, 255, 255, 0.0)) 0 0 / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.0), var(--accent), rgba(255, 255, 255, 0.0)) 0 0 / 2px 100% no-repeat;
  opacity: 0.55;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent) 45%, transparent));
}

.site-hero__card::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.10) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-60%) rotate(12deg);
  opacity: 0;
  transition: opacity 180ms ease, transform 420ms ease;
}

.site-hero__card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 35%, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 18px color-mix(in srgb, var(--accent) 22%, transparent);
  filter: saturate(1.08);
}

.site-hero__card:hover::after {
  opacity: 1;
  transform: translateX(60%) rotate(12deg);
}

.site-hero__card--cyan {
  --accent: rgba(0, 212, 255, 0.85);
}

.site-hero__card--red {
  --accent: rgba(255, 43, 43, 0.85);
}

.site-hero__card--amber {
  --accent: rgba(255, 209, 102, 0.85);
}

.site-hero__card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-hero__card-badge {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 18%, rgba(0, 0, 0, 0.35));
  border: 1px solid color-mix(in srgb, var(--accent) 32%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 14%, transparent);
  flex: 0 0 auto;
}

.site-hero__card-badge i {
  color: color-mix(in srgb, var(--accent) 80%, #fff);
  font-size: 16px;
}

.site-hero__card-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.site-hero__card-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-top: 6px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.site-hero__card-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.site-hero__card-chip {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
  .site-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-hero__brand-stack {
    flex-direction: column;
    gap: 14px;
  }
  .cs-radar {
    margin-left: 0;
  }
  .site-hero__stats {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.site-hero__embed {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.site-hero__brand {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: 0.4px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: block;
  width: fit-content;
  background: linear-gradient(90deg, #b8b8b8 0%, #ff2b2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.site-hero__brand::before {
  content: none;
}

.site-hero__tagline {
  margin-top: 6px;
  font-size: 13px;
  color: #ff6b6b;
  display: block;
  width: fit-content;
}

.site-hero__desc {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  max-width: 520px;
}

.text-accent {
  color: #ff2b2b;
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.25);
  font-weight: 700;
}

/* Servers section (replaces the old servers navbar) */
.servers-section {
  padding: 42px 0 54px;
  background: linear-gradient(135deg, #0b0c1a 0%, #151631 45%, #101024 70%, #1a0f1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.servers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/sf.jpg") no-repeat center / cover;
  opacity: 0.32;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* Blend hero -> servers backgrounds */
.servers-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(11, 12, 26, 0.95) 0%,
    rgba(11, 12, 26, 0.55) 35%,
    rgba(11, 12, 26, 0.0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.servers-section > .container {
  position: relative;
  z-index: 1;
}

.servers-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.servers-title__line {
  height: 1px;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.18);
}

.servers-title__text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  white-space: nowrap;
}

.servers-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.servers-info {
  margin-top: 22px;
}

.servers-activity {
  margin-top: 22px;
}

.servers-activity__card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  padding: 16px;
  overflow: hidden;
}

.servers-activity__card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(90deg, rgba(255, 43, 43, 0) 0%, rgba(255, 43, 43, 0.10) 50%, rgba(255, 43, 43, 0) 100%);
  transform: translateX(-60%) rotate(10deg);
  opacity: 0.55;
  pointer-events: none;
}

/* Activity bar chart */
.activity-chart {
  position: relative;
  z-index: 1;
}

.activity-chart__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.activity-chart__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.10);
}

.activity-chart__icon i {
  color: rgba(120, 205, 255, 0.95);
  font-size: 14px;
}

.activity-chart__title {
  font-weight: 900;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.90);
}

.activity-chart__meta {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  white-space: nowrap;
}

.activity-chart__meta strong {
  color: rgba(255, 107, 107, 0.95);
  font-weight: 900;
}

.activity-chart__plot {
  height: 260px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  position: relative;
}

.activity-chart__ref {
  position: absolute;
  inset: 12px 12px 16px;
  pointer-events: none;
  z-index: 2;
}

.activity-chart__ref-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--y, 50%);
  height: 1px;
  display: block;
  background: rgba(255, 255, 255, 0.10);
}

.activity-chart__ref-line--avg {
  background: rgba(130, 120, 255, 0.28);
}

.activity-chart__ref-line--peak {
  background: rgba(155, 110, 255, 0.28);
}

.activity-chart__ref-label {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 10px;
  letter-spacing: 1.2px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.55);
}

.activity-chart__plot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(0, 0, 0, 0.30) 100%),
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 56px
    );
  opacity: 0.55;
  pointer-events: none;
}

.activity-chart__bars {
  position: absolute;
  inset: 14px 14px 18px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  gap: 4px;
  align-items: end;
  z-index: 3;
}

.activity-bar {
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: rgba(120, 150, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform-origin: bottom;
  animation: barGrow 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.activity-bar:nth-child(3n) {
  background: rgba(130, 120, 255, 0.80);
}

.activity-bar:nth-child(4n) {
  background: rgba(155, 110, 255, 0.78);
}

@keyframes barGrow {
  from { transform: scaleY(0.08); filter: brightness(0.85); }
  to { transform: scaleY(1); filter: brightness(1); }
}

.activity-chart__legend {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
}

.activity-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.activity-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.activity-legend__dot--avg {
  background: rgba(130, 120, 255, 0.80);
}

.activity-legend__dot--peak {
  background: rgba(155, 110, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .activity-bar { animation: none; }
}

.servers-info__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
}

.servers-info__line {
  height: 1px;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.14);
}

.servers-info__text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  white-space: nowrap;
}

.servers-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.servers-info__item {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.servers-info__item::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.10) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-60%) rotate(12deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 520ms ease;
}

.servers-info__item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 43, 43, 0.22);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(255, 43, 43, 0.10);
  filter: saturate(1.06);
}

.servers-info__item:hover::after {
  opacity: 1;
  transform: translateX(60%) rotate(12deg);
}

.servers-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 43, 43, 0.18);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.10);
  flex: 0 0 auto;
}

.servers-info__icon i {
  color: rgba(255, 107, 107, 0.95);
  font-size: 18px;
}

.servers-info__content {
  min-width: 0;
}

.servers-info__h {
  font-weight: 900;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
}

.servers-info__p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

/* News section (below servers nav) */
.news-section {
  padding: 38px 0 50px;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.news-title__line {
  height: 1px;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.18);
}

.news-title__text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  white-space: nowrap;
}

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

.news-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 0, 0, 0.22) inset;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.0) 0%, rgba(0, 212, 255, 0.55) 30%, rgba(255, 43, 43, 0.55) 70%, rgba(255, 43, 43, 0.0) 100%);
  opacity: 0.5;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.news-card::after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-60%) rotate(12deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 520ms ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.56),
    0 0 26px rgba(0, 212, 255, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.22) inset;
  filter: saturate(1.08);
}

.news-card:hover::after {
  opacity: 1;
  transform: translateX(60%) rotate(12deg);
}

.news-card__media {
  height: 170px;
  background-image: var(--news-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05) brightness(0.86);
  position: relative;
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 20% 20%, rgba(0, 212, 255, 0.18), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.64) 100%);
}

.news-card__body {
  padding: 14px 14px 12px;
  position: relative;
}

.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.news-tag--red {
  border-color: rgba(255, 43, 43, 0.25);
  color: rgba(255, 107, 107, 0.92);
}

.news-tag--cyan {
  border-color: rgba(0, 212, 255, 0.22);
  color: rgba(0, 212, 255, 0.85);
}

.news-card__title {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 8px;
}

.news-card__text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 12px;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 43, 43, 0.22);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, filter 180ms ease;
}

.news-readmore:hover {
  border-color: rgba(255, 43, 43, 0.45);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(255, 43, 43, 0.14);
  color: #fff;
  filter: saturate(1.08);
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(6px);
}

.news-modal__dialog {
  position: relative;
  max-width: 720px;
  margin: 6vh auto;
  background: rgba(22, 22, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.62), 0 0 24px rgba(255, 43, 43, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.news-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.news-modal__close:hover {
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow: 0 0 16px rgba(255, 43, 43, 0.12);
}

.news-modal__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
  padding-right: 44px;
}

.news-modal__meta {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.news-modal__body {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-height: 62vh;
  overflow: auto;
  padding-right: 6px;
  white-space: pre-wrap;
}

body.is-news-modal-open {
  overflow: hidden;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.news-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.news-card__sep {
  opacity: 0.55;
  margin: 0 4px;
}

.news-card__footer i {
  color: rgba(255, 107, 107, 0.75);
}

.news-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.news-page {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.news-page:hover {
  border-color: rgba(255, 43, 43, 0.28);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(255, 43, 43, 0.12);
  color: #fff;
}

.news-page--active {
  border-color: rgba(255, 43, 43, 0.45);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(255, 43, 43, 0.18);
}

.news-page--dots {
  border: none;
  background: transparent;
  box-shadow: none;
  min-width: auto;
  padding: 0 6px;
  opacity: 0.65;
}

.news-ad {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.news-ad__link {
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  max-width: 100%;
}

.news-ad__img {
  display: block;
  width: min(728px, 100%);
  height: auto;
  filter: blur(0.7px) saturate(0.95) brightness(0.92);
  transition: filter 180ms ease;
}

.news-ad__link:hover {
  border-color: rgba(255, 43, 43, 0.25);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(255, 43, 43, 0.16);
}

.news-ad__link:hover .news-ad__img {
  filter: blur(0) saturate(1.05) brightness(1);
}

.news-ad__link:focus-visible {
  outline: none;
  border-color: rgba(255, 43, 43, 0.35);
  box-shadow:
    0 0 0 3px rgba(255, 43, 43, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(255, 43, 43, 0.16);
}

.news-ad__placeholder {
  width: min(728px, 100%);
  height: 90px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(0, 0, 0, 0.22) inset;
  position: relative;
  overflow: hidden;
}

.news-ad__placeholder::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(255, 43, 43, 0.35));
  opacity: 0.55;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.news-ad__placeholder-title {
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.news-ad__placeholder-sub {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  background: #16161e;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 34px 0 18px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 400px at 20% 0%, rgba(255, 43, 43, 0.12), transparent 55%),
    radial-gradient(900px 360px at 80% 10%, rgba(0, 212, 255, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 20px;
}

.site-footer__sep {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0 12px;
}

.site-footer__sep-line {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 100%);
}

.site-footer__sep-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 43, 43, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 16px rgba(255, 43, 43, 0.12);
}

.site-footer__sep-icon i {
  color: rgba(255, 107, 107, 0.95);
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.18);
  font-size: 16px;
}

.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.site-footer__logo-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 43, 43, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 14px rgba(255, 43, 43, 0.12);
}

.site-footer__logo {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.site-footer__brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
}

.site-footer__brand-left {
  color: #8f8f8f;
}

.site-footer__brand-right {
  color: #ff2b2b;
}

.site-footer__desc {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.70);
  max-width: 520px;
}

.site-footer__title {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.0px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-footer__links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transform: translateX(0);
  transition: transform 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.site-footer__link i {
  color: rgba(255, 107, 107, 0.85);
  width: 18px;
  text-align: center;
  transition: color 180ms ease, filter 180ms ease;
}

.site-footer__link:hover {
  color: #fff;
  transform: translateX(6px);
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.16);
}

.site-footer__link:hover i {
  color: rgba(255, 43, 43, 0.95);
  filter: drop-shadow(0 0 10px rgba(255, 43, 43, 0.18));
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.site-footer__social-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease, filter 180ms ease;
}

.site-footer__social-btn:hover {
  border-color: rgba(255, 43, 43, 0.28);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(255, 43, 43, 0.12);
  background: rgba(255, 43, 43, 0.10);
  filter: saturate(1.08);
  color: #fff;
}

.site-footer__social-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 43, 43, 0.20),
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(255, 43, 43, 0.12);
}

.site-footer__mini {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-footer__mini-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__mini-row i {
  color: rgba(0, 212, 255, 0.70);
  width: 18px;
  text-align: center;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.site-footer__dev-name {
  color: rgba(255, 107, 107, 0.92);
  font-weight: 900;
  display: inline-block;
  transform: translateX(0);
  transition: transform 180ms ease, color 180ms ease, text-shadow 180ms ease;
  cursor: default;
}

.site-footer__dev i {
  margin-right: 8px;
  color: rgba(0, 212, 255, 0.70);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.10));
}

.site-footer__dev-name:hover {
  color: #ff2b2b;
  transform: translateX(4px);
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.18);
}

@media (max-width: 991.98px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991.98px) {
  .servers-section {
    margin-top: 70px;
    padding: 26px 0 34px;
  }
  .news-section {
    margin-top: 50px;
  }
  .servers-info__grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.server-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px;
  padding: 18px 16px 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  position: relative;
}

.server-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--server-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.05) brightness(0.98);
  transition: filter 220ms ease;
}

.server-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.42) 100%),
    rgba(15, 15, 15, 0.10);
}

.server-card__meta,
.server-card__actions {
  position: relative;
  z-index: 1;
}

.server-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 43, 43, 0.28);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(255, 43, 43, 0.14);
}

.server-card:hover .server-card__bg {
  filter: saturate(1.06) contrast(1.06) brightness(0.78);
}

.server-card:hover .server-card__bg::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.68) 100%),
    rgba(15, 15, 15, 0.22);
}

.server-card__meta {
  min-width: 0;
  padding-right: 70px; /* room for the status badge on the right */
}

.server-card__name {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.server-card__name i {
  color: #ff2b2b;
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.18);
  flex: 0 0 auto;
}

.server-card__name-text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-card__status {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.server-card__status.is-online {
  border-color: rgba(0, 255, 170, 0.30);
  color: rgba(0, 255, 170, 0.92);
  box-shadow: 0 0 14px rgba(0, 255, 170, 0.10);
}

.server-card__status.is-offline {
  border-color: rgba(255, 43, 43, 0.32);
  color: rgba(255, 107, 107, 0.92);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.10);
}

.server-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  font-size: 13px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.75);
}

.server-card__row--players {
  margin-top: 6px;
  justify-content: flex-start;
}

.server-card__mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 700;
}

.server-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
}

.server-card__stat i {
  color: rgba(255, 107, 107, 0.95);
  flex: 0 0 auto;
}

.server-card__label {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.server-card__value {
  min-width: 0;
}

.server-card__copy-ip {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-align: left;
}

.server-card__copy-ip:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 107, 0.7);
}

.copy-toast {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  min-width: 240px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.copy-toast__title {
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 2px;
  color: #ff6b6b;
}

.copy-toast__msg {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

/* Back to top button */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.32),
    0 0 14px rgba(255, 43, 43, 0.10);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.to-top i {
  font-size: 16px;
  color: rgba(255, 107, 107, 0.95);
  text-shadow: 0 0 10px rgba(255, 43, 43, 0.18);
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: rgba(255, 43, 43, 0.12);
  border-color: rgba(255, 43, 43, 0.28);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(255, 43, 43, 0.18);
}

.to-top:focus-visible {
  outline: none;
  border-color: rgba(255, 43, 43, 0.38);
  box-shadow:
    0 0 0 3px rgba(255, 43, 43, 0.20),
    0 12px 26px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(255, 43, 43, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .to-top {
    transition: none;
  }
}

/* Mobile-only hero copy sizing + positioning (keep desktop as-is) */
@media (max-width: 575.98px) {
  .site-hero {
    height: auto;
    padding: 18px 0 26px;
  }

  .site-hero__inner {
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
  }

  /* Mobile: hide radar / killfeed / discord block in hero */
  .cs-radar,
  .cs-killfeed,
  .discord-live,
  .site-hero__discord {
    display: none !important;
  }

  .site-hero__brand-stack {
    gap: 14px;
  }

  .site-hero__brand-copy {
    margin-top: 16px;
  }

  .site-hero__brand {
    font-size: 22px;
  }

  /* Mobile: smaller santa hat on hero logo */
  .site-hero__brand::before {
    width: 44px;
    height: 34px;
    left: -18px;
    top: -30px;
  }

  .site-hero__tagline {
    font-size: 11px;
  }

  .site-hero__desc {
    font-size: 11px;
    line-height: 1.45;
    max-width: 100%;
  }

  /* Remove the gap between hero and servers backgrounds on mobile */
  .servers-section {
    margin-top: 0;
  }

  /* Mobile: make STATS cards look good (swipeable row) */
  .site-hero__right {
    width: 100%;
    margin-top: 8px;
  }

  .site-hero__stats-title {
    margin-top: 10px;
  }

  .site-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-hero__card {
    width: 100%;
    padding: 10px 12px;
    min-height: 64px;
    border-radius: 12px;
    clip-path: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .site-hero__card-top {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-hero__card-badge {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .site-hero__card-badge i {
    font-size: 14px;
  }

  .site-hero__card-label {
    font-size: 11px;
    letter-spacing: 0.6px;
  }

  .site-hero__card-value {
    margin-top: 0;
    font-size: 22px;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .site-hero__card-foot {
    display: none;
  }
}

.server-card__stat--ip {
  flex: 1 1 auto;
  min-width: 0;
}

.server-card__stat--ip .server-card__value {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.server-card__stat--map {
  flex: 0 0 auto;
  justify-content: flex-start;
  margin-left: 0;
  white-space: nowrap;
}

.server-card__row--map {
  margin-top: 6px;
  justify-content: flex-start;
}

.server-card__stat--map .server-card__value {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-card__row--players {
  margin-top: 6px;
  justify-content: flex-start;
}

.server-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  align-self: end;
}

.server-btn {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 0;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.server-btn i {
  font-size: 14px;
}

.server-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
  color: #fff;
}

.server-btn--steam {
  border-color: rgba(88, 101, 242, 0.25);
}

.server-btn--steam:hover {
  border-color: rgba(88, 101, 242, 0.45);
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.16);
}

.server-btn--gt {
  border-color: rgba(0, 212, 255, 0.22);
}

.server-btn--gt:hover {
  border-color: rgba(0, 212, 255, 0.42);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.16);
}

.server-btn--play {
  background: rgba(255, 43, 43, 0.16);
  border-color: rgba(255, 43, 43, 0.35);
}

.server-btn--play:hover {
  background: rgba(255, 43, 43, 0.22);
  border-color: rgba(255, 43, 43, 0.55);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.18);
}

.server-btn--info {
  border-color: rgba(255, 200, 76, 0.28);
}

.server-btn--info:hover {
  border-color: rgba(255, 200, 76, 0.55);
  box-shadow: 0 0 12px rgba(255, 200, 76, 0.16);
}

/* Server modal (CS/HUD style) */
.server-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  /* keep dialog below the fixed top navbar */
  padding-top: 84px; /* 70px nav + breathing room */
}

.server-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.server-modal__dialog {
  position: relative;
  width: min(860px, calc(100vw - 28px));
  max-height: calc(100vh - 112px); /* accounts for top padding + bottom margin */
  overflow: auto;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(22, 22, 30, 0.92) 0%, rgba(14, 14, 20, 0.92) 100%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55), 0 0 30px rgba(255, 43, 43, 0.08);
}

.server-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.server-modal__close:hover {
  background: rgba(255, 43, 43, 0.16);
  border-color: rgba(255, 43, 43, 0.4);
  box-shadow: 0 0 14px rgba(255, 43, 43, 0.16);
  color: #fff;
}

.server-modal__head {
  padding: 18px 18px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.server-modal__title {
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.12), 0 0 22px rgba(0, 0, 0, 0.35);
  padding-right: 54px; /* space for close button */
  word-break: break-word;
}

.server-modal__sub {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.server-modal__ip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(255, 255, 255, 0.88);
}

.server-modal__status {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.server-modal__status.is-online {
  border-color: rgba(80, 255, 140, 0.35);
  background: rgba(80, 255, 140, 0.10);
}

.server-modal__status.is-offline {
  border-color: rgba(255, 43, 43, 0.35);
  background: rgba(255, 43, 43, 0.10);
}

.server-modal__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.server-modal__meta-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

.server-modal__meta-item .k {
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
}

.server-modal__meta-item .v {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 13px;
}

.server-modal__body {
  padding: 14px 18px 18px;
}

.server-modal__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.server-modal__spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 43, 43, 0.75);
  animation: serverSpin 800ms linear infinite;
}

@keyframes serverSpin {
  to { transform: rotate(360deg); }
}

.server-modal__offline {
  padding: 12px 12px;
  border: 1px solid rgba(255, 43, 43, 0.22);
  background: rgba(255, 43, 43, 0.10);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.server-modal__table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.server-modal__table {
  width: 100%;
  border-collapse: collapse;
}

.server-modal__table th,
.server-modal__table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.server-modal__table th {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
}

.server-modal__table td:nth-child(2),
.server-modal__table th:nth-child(2),
.server-modal__table td:nth-child(3),
.server-modal__table th:nth-child(3) {
  width: 110px;
  text-align: right;
  white-space: nowrap;
}

body.is-server-modal-open {
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .server-modal {
    padding-top: 78px;
  }
  .server-modal__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .servers-grid {
    grid-template-columns: 1fr;
  }
  .server-card {
    height: auto;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }
  .server-card__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

/* CS2 Radar */
.cs-radar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  margin-left: 30%;
  animation: fadeIn 2s ease-in-out;
}

/* Radar when moved to the right column (above killfeed) */
.site-hero__right .cs-radar {
  margin-top: 10px;
  margin-bottom: 12px;
}

.radar-map {
  position: relative;
  width: 230px;
  height: 230px;
  background: rgba(15, 23, 42, 0.5);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.radar-map::before,
.radar-map::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 212, 255, 0.1);
}

.radar-map::before {
  width: 100%;
  height: 1px;
}

.radar-map::after {
  width: 1px;
  height: 100%;
}

.player-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.player-dot:not(.self) {
  animation: pulseGlow 2s ease-in-out infinite, driftDot 4.6s ease-in-out infinite;
}

.player-dot--1 {
  --dx: 12px;
  --dy: -10px;
  animation-duration: 2s, 4.6s;
}

.player-dot--2 {
  --dx: -12px;
  --dy: 12px;
  animation-duration: 2s, 5.2s;
}

.player-dot--3 {
  --dx: 10px;
  --dy: 12px;
  animation-duration: 2s, 4.9s;
}

.player-dot.friendly {
  background: #4db6ac; /* Cyan */
}

.player-dot.enemy {
  background: #ff6b6b; /* Red */
}

.player-dot.self {
  background: #fff;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
}

/* CS-style killfeed embed under radar */
.cs-killfeed {
  margin-top: 10px;
  width: 240px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  padding: 3px 5px;
  border-radius: 10px;
}

/* Killfeed when it lives where the Discord button used to be (right column) */
.site-hero__right .cs-killfeed {
      width: 240px;
      margin-bottom: 60px;
      margin-left: 30%;
}

.cs-killfeed__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.9);
  transition: opacity 180ms ease;
}

.cs-killfeed__row.is-switching {
  opacity: 0;
}

.cs-killfeed__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
  padding: 3px 6px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.cs-killfeed__name--killer {
  color: rgba(77, 182, 172, 0.95);
}

.cs-killfeed__name--victim {
  color: rgba(255, 107, 107, 0.95);
}

.cs-killfeed__weapon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  border-radius: 8px;
}

.cs-killfeed__weapon i {
  color: rgba(0, 212, 255, 0.9);
}

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

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
    opacity: 1;
  }
}

@keyframes driftDot {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate(calc(var(--dx, 8px) * 0.45), calc(var(--dy, -6px) * -1));
  }
  50% {
    transform: translate(-50%, -50%) translate(var(--dx, 8px), var(--dy, -6px));
  }
  75% {
    transform: translate(-50%, -50%) translate(calc(var(--dx, 8px) * -0.6), calc(var(--dy, -6px) * -0.35));
  }
}



