:root {
  --site-bg: #0a0f14;
  --site-panel: #101820;
  --site-panel-soft: rgba(16, 24, 32, 0.78);
  --site-text: #eef2f6;
  --site-muted: #a5b0bd;
  --site-gold: #e5b567;
  --site-pine: #1f5c4f;
  --site-border: rgba(255, 255, 255, 0.14);
  --site-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --site-radius: 18px;
  --site-container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.site-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--site-text);
  background:
    radial-gradient(1000px 520px at 12% 0%, rgba(31, 92, 79, 0.2), transparent 60%),
    radial-gradient(960px 520px at 88% 8%, rgba(229, 181, 103, 0.16), transparent 60%),
    linear-gradient(180deg, #0a0f14, #111a24);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--site-gold);
  outline-offset: 2px;
}

.container {
  width: min(var(--site-container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1500;
  padding: 10px 12px;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  background: var(--site-panel);
  color: var(--site-text);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1200;
}

.site-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--site-border);
  background: rgba(8, 13, 18, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: var(--site-shadow);
}

.site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-brand img {
  width: auto;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.site-nav__toggle {
  display: none;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--site-text);
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 9px 11px;
  cursor: pointer;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav__item {
  position: relative;
  display: inline-flex;
}

.site-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.35px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.72);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav__links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.site-nav__links a.is-active {
  border-color: rgba(229, 181, 103, 0.55);
  background: linear-gradient(135deg, rgba(229, 181, 103, 0.28), rgba(31, 92, 79, 0.28));
  color: #fff4db;
}

.site-nav__drop-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.35px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.72);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav__drop-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.site-nav__item.is-active > .site-nav__drop-toggle {
  border-color: rgba(229, 181, 103, 0.55);
  background: linear-gradient(135deg, rgba(229, 181, 103, 0.28), rgba(31, 92, 79, 0.28));
  color: #fff4db;
}

.site-nav__caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.site-nav__item.is-open .site-nav__caret {
  transform: translateY(2px) rotate(-135deg);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--site-border);
  background: rgba(8, 13, 18, 0.96);
  box-shadow: var(--site-shadow);
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 1300;
}

.site-nav__submenu a {
  width: 100%;
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 11px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-shadow: none;
}

.site-nav__submenu a:hover {
  transform: none;
  border-color: rgba(229, 181, 103, 0.28);
  background: rgba(229, 181, 103, 0.12);
}

.site-nav__item.is-open .site-nav__submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(5, 9, 13, 0.42) 0%, rgba(5, 9, 13, 0.68) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 520px at 18% 5%, rgba(31, 92, 79, 0.22), transparent 60%),
    radial-gradient(820px 460px at 82% 12%, rgba(229, 181, 103, 0.2), transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: inherit;
  text-align: center;
  padding-top: clamp(88px, 10vh, 120px);
  padding-bottom: clamp(88px, 10vh, 120px);
}

.page-hero--large {
  min-height: 82vh;
}

.page-hero--medium {
  min-height: 52vh;
}

.page-hero--compact {
  min-height: 42vh;
}

.page-hero__kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--site-gold);
}

.page-hero__title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.08;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
}

.page-hero__text {
  margin: 0;
  width: min(800px, 100%);
  color: #eff3f9;
  font-size: clamp(16px, 2vw, 21px);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.62);
}

.hero-player-count-wrap {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-player-count-break {
  flex-basis: 100%;
  height: 0;
}

.hero-player-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 17, 24, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-player-count__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-player-count__label {
  color: #cfd8e6;
  font-weight: 700;
  font-size: 16px;
}

.hero-player-count__value {
  font-family: "Cinzel", serif;
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.35px;
}

.hero-player-count.is-online .hero-player-count__dot {
  background: #48c78e;
  box-shadow: 0 0 10px rgba(72, 199, 142, 0.75);
}

.hero-player-count.is-online .hero-player-count__value {
  color: #66e2a8;
}

.hero-player-count.is-offline .hero-player-count__dot {
  background: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
}

.hero-player-count.is-offline .hero-player-count__value {
  color: #ff8d8d;
}

.hero-server-ip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 17, 24, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-server-ip__label {
  color: #cfd8e6;
  font-size: 16px;
  font-weight: 700;
}

.hero-server-ip__value {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f7e4ba;
  font-family: "Cinzel", serif;
  font-size: 23px;
  font-weight: 800;
}

.hero-server-ip__copy {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 181, 103, 0.48);
  background: linear-gradient(135deg, rgba(229, 181, 103, 0.34), rgba(31, 92, 79, 0.34));
  color: #fff4db;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hero-server-ip__copy.is-copied {
  border-color: rgba(72, 199, 142, 0.55);
  background: linear-gradient(135deg, rgba(72, 199, 142, 0.34), rgba(31, 92, 79, 0.4));
  color: #d6ffea;
}

.hero-server-version {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 17, 24, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-server-version__label {
  color: #cfd8e6;
  font-size: 16px;
  font-weight: 700;
}

.hero-server-version__value {
  color: #f7e4ba;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.hero-server-version.is-offline {
  border-color: rgba(255, 107, 107, 0.42);
}

.hero-server-version.is-offline::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
}

.hero-server-version.is-offline .hero-server-version__label {
  display: none;
}

.hero-server-version.is-offline .hero-server-version__value {
  color: #ff8d8d;
}

.page-main {
  flex: 1 0 auto;
  padding: 36px 0 46px;
}

.page-main--stats {
  padding-top: 0;
}

.page-section {
  padding: 34px 0;
}

.section-heading {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.16;
}

.section-intro {
  margin: 0 0 22px;
  color: var(--site-muted);
  font-size: clamp(16px, 1.8vw, 19px);
}

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

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.content-card {
  padding: 22px;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.7));
  box-shadow: var(--site-shadow);
}

.content-card h2,
.content-card h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  line-height: 1.2;
}

.content-card p {
  margin: 0 0 12px;
  color: var(--site-muted);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--site-muted);
}

.content-card li + li {
  margin-top: 8px;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(229, 181, 103, 0.35);
  background: rgba(229, 181, 103, 0.12);
  color: #f9e9c7;
  font-size: 14px;
  font-weight: 700;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  color: #fff;
}

.pill-links a:hover {
  border-color: rgba(229, 181, 103, 0.5);
  background: rgba(229, 181, 103, 0.2);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 15, 0.75);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 86px;
  font-size: 14px;
  color: var(--site-muted);
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__links a {
  color: var(--site-text);
  opacity: 0.88;
}

.site-footer__links a:hover {
  opacity: 1;
  color: #fff4db;
}

.site-footer__settings {
  appearance: none;
  border: none;
  background: none;
  color: var(--site-text);
  opacity: 0.88;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

.site-footer__settings:hover {
  opacity: 1;
  color: #fff4db;
}

.cookie-consent {
  position: fixed;
  left: auto;
  right: 14px;
  bottom: 14px;
  width: min(430px, calc(100vw - 24px));
  z-index: 1600;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__card {
  width: 100%;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(11, 17, 24, 0.97), rgba(11, 17, 24, 0.94));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.cookie-consent__text h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 18px;
}

.cookie-consent__text p {
  margin: 7px 0 0;
  color: #c3cfde;
  font-size: 12px;
  line-height: 1.35;
}

.cookie-consent__policy-link {
  color: #f5d08f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__policy-link:hover {
  color: #ffe9bf;
}

.cookie-consent__analytics-off {
  display: none;
  color: #f5d08f;
}

.cookie-consent__actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent--no-analytics .cookie-consent__analytics-off {
  display: block;
}

.cookie-consent--no-analytics [data-cookie-customize],
.cookie-consent--no-analytics [data-cookie-necessary],
.cookie-consent--no-analytics .cookie-consent__row--toggle,
.cookie-consent--no-analytics .cookie-consent__save {
  display: none;
}

.cookie-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  min-height: 34px;
  padding: 0 11px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.cookie-btn--primary {
  background: rgba(31, 92, 79, 0.72);
  border-color: rgba(102, 226, 168, 0.45);
}

.cookie-btn--primary:hover {
  background: rgba(31, 92, 79, 0.9);
}

.cookie-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
}

.cookie-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cookie-consent__details {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: none;
}

.cookie-consent.is-expanded .cookie-consent__details {
  display: block;
}

.cookie-consent__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}

.cookie-consent__row strong {
  display: block;
  font-size: 13px;
}

.cookie-consent__row p {
  margin: 4px 0 0;
  color: #9fb1c8;
  font-size: 12px;
}

.cookie-consent__fixed {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d6e0ee;
  font-size: 11px;
  font-weight: 700;
}

.cookie-consent__row--toggle input {
  width: 18px;
  height: 18px;
  accent-color: #4ef0a2;
}

.cookie-consent__save {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  .cookie-consent__card {
    padding: 10px;
  }

  .cookie-consent__text h2 {
    font-size: 17px;
  }

  .cookie-consent__row {
    align-items: flex-start;
  }
}

.home-bottom-stack {
  display: grid;
  gap: 22px;
}

.home-live-overview,
.home-glow-list-wrap,
.home-vote-block {
  padding: 24px;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.75));
  box-shadow: var(--site-shadow);
}

.home-live-overview {
  display: grid;
  gap: 14px;
}

.home-live-overview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.home-live-overview__title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.1;
}

.home-live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 17, 24, 0.78);
  color: #d8e2ee;
  font-size: 14px;
  font-weight: 800;
}

.home-live-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.home-live-status.is-online {
  border-color: rgba(72, 199, 142, 0.45);
  color: #8be9bd;
}

.home-live-status.is-online .home-live-status__dot {
  background: #48c78e;
  box-shadow: 0 0 10px rgba(72, 199, 142, 0.75);
}

.home-live-status.is-offline {
  border-color: rgba(255, 107, 107, 0.45);
  color: #ffb7b7;
}

.home-live-status.is-offline .home-live-status__dot {
  background: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.65);
}

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

.home-live-metric {
  padding: 14px;
  border: 1px solid var(--site-border);
  border-radius: 14px;
  background: rgba(7, 13, 18, 0.5);
}

.home-live-metric h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #aeb9c8;
}

.home-live-metric__value {
  margin: 8px 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 3.1vw, 34px);
  line-height: 1.1;
}

.home-live-metric__value--mono {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.home-live-players {
  padding: 14px;
  border: 1px solid var(--site-border);
  border-radius: 14px;
  background: rgba(7, 13, 18, 0.46);
}

.home-live-players__title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #aeb9c8;
}

.home-live-players__empty {
  margin: 10px 0 0;
  color: #a7b2c2;
  font-size: 14px;
}

.home-live-players__list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-live-player-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 181, 103, 0.4);
  background: rgba(229, 181, 103, 0.12);
  color: #ffe8bd;
  font-size: 13px;
  font-weight: 700;
}

.home-glow-title,
.home-vote-title {
  margin: 0 0 14px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: clamp(26px, 3.6vw, 40px);
}

.glow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.glow-list li {
  position: relative;
  padding-left: 24px;
  color: #d9e2ef;
  font-size: 17px;
}

.glow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #66e2a8;
  box-shadow: 0 0 14px rgba(102, 226, 168, 0.95);
}

.vote-button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vote-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(229, 181, 103, 0.45);
  background: linear-gradient(135deg, rgba(229, 181, 103, 0.42), rgba(31, 92, 79, 0.42));
  color: #fff;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vote-button:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 181, 103, 0.72);
  box-shadow: 0 10px 28px rgba(229, 181, 103, 0.3);
}

.rules-list {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 10px;
  color: #d7e0ec;
  font-size: 17px;
}

.rules-list li::marker {
  color: var(--site-gold);
  font-weight: 800;
}

.command-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.command-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.command-list code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(229, 181, 103, 0.35);
  background: rgba(229, 181, 103, 0.12);
  color: #ffe8b7;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
}

.command-list span {
  color: #d7e0ec;
  display: inline-flex;
  align-items: center;
}

.guides-page-section {
  padding-top: 20px;
}

.guides-block + .guides-block {
  margin-top: 14px;
}

.page--guides .section-intro {
  margin-bottom: 12px;
}

.page--guides .command-list {
  gap: 6px;
}

.page--guides .command-list li {
  grid-template-columns: 150px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
}

.page--guides .command-list code {
  min-height: 28px;
  padding: 0 8px;
  font-size: 13px;
}

.page--guides .command-list span {
  font-size: 14px;
  line-height: 1.35;
}

.discord-cta-wrap {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.discord-big-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  min-width: min(380px, 100%);
  min-height: 64px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(198, 129, 255, 0.65);
  background: linear-gradient(135deg, rgba(137, 70, 247, 0.95), rgba(98, 35, 206, 0.95));
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.35px;
  box-shadow: 0 0 0 1px rgba(199, 138, 255, 0.25), 0 14px 32px rgba(109, 51, 222, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-big-button .bi {
  font-size: 1.2em;
  line-height: 1;
}

.discord-big-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(215, 166, 255, 0.4), 0 18px 42px rgba(109, 51, 222, 0.58);
}

.discord-widget-wrap {
  width: min(390px, 100%);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--site-border);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.74));
  box-shadow: var(--site-shadow);
}

.discord-widget-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 500px;
  border: 0;
  border-radius: 12px;
  background: #1e1f22;
}

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

.crew-intro,
.crew-recruit {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.crew-intro {
  margin-bottom: 18px;
}

.crew-recruit {
  margin-top: 24px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.crew-recruit .vip-primary-button {
  min-width: 180px;
}

.crew-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid var(--site-border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.95), rgba(16, 24, 32, 0.78));
  box-shadow: var(--site-shadow);
  text-align: center;
}

.crew-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.22);
}

.crew-card__role {
  margin: 0;
  color: var(--site-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.crew-card__name {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 22px;
  line-height: 1.1;
}

.vip-maintenance-wrap {
  display: flex;
  justify-content: center;
}

.vip-maintenance-line {
  margin: 0;
  width: min(860px, 100%);
  text-align: center;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.vip-comparison-section {
  padding-top: 18px;
}

.vip-comparison-section__title {
  margin-bottom: 18px;
  text-align: center;
}

.vip-support-intro {
  max-width: 880px;
  margin: 0 auto 22px;
  text-align: center;
}

.vip-support-intro h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 4vw, 44px);
}

.vip-support-intro p {
  margin: 0 auto;
  color: #c8d2e2;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.7;
}

.vip-comparison-table-wrap {
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  overflow-x: auto;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.72));
  box-shadow: var(--site-shadow);
}

.vip-comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.vip-comparison-table thead th {
  text-align: center;
  vertical-align: bottom;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 16, 24, 0.82);
}

.vip-comparison-table__rank {
  width: 50%;
}

.vip-rank-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.vip-comparison-table tbody td {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7e0ed;
  vertical-align: middle;
  text-align: center;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}

.vip-comparison-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.vip-comparison-table td code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 11px;
  border: 1px solid rgba(229, 181, 103, 0.35);
  background: rgba(229, 181, 103, 0.12);
  color: #ffe8b7;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.25vw, 20px);
}

.vip-comparison-table__empty {
  text-align: center;
  color: #8f9bae;
  font-weight: 700;
}

.vip-feature-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vip-benefit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.vip-benefit .bi {
  color: #95a8c3;
  font-size: 17px;
  line-height: 1;
}

.vip-benefit--command .bi {
  color: #e5b567;
  font-size: 16px;
}

.vip-expand-trigger td {
  cursor: pointer;
  transition: background 0.2s ease;
}

.vip-expand-trigger:hover td {
  background: rgba(229, 181, 103, 0.07);
}

.vip-expand-trigger:focus-visible td {
  outline: 2px solid rgba(229, 181, 103, 0.5);
  outline-offset: -2px;
}

.vip-expand-trigger .vip-feature-cell::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 234, 188, 0.82);
  border-bottom: 2px solid rgba(255, 234, 188, 0.82);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.9;
}

.vip-expand-trigger[aria-expanded="true"] .vip-feature-cell::after {
  transform: rotate(-135deg);
}

.vip-explain-row td {
  padding: 0 14px 12px;
  border-top: 0;
  color: #9eabc0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.01);
}

.vip-comparison-table__offer-row td {
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.96), rgba(7, 13, 21, 0.88));
  padding-top: 16px;
  padding-bottom: 16px;
}

.vip-offer {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 2px 0;
}

.vip-offer__price {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #d8e1ee;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.vip-offer__amount {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ecf2fc;
}

.vip-offer__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(229, 181, 103, 0.45);
  background: rgba(229, 181, 103, 0.14);
  color: #f6e2b6;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.vip-buy-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 138px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid rgba(229, 181, 103, 0.52);
  background: linear-gradient(135deg, rgba(229, 181, 103, 0.32), rgba(31, 92, 79, 0.45));
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-shadow: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 6px 14px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.vip-buy-button:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 181, 103, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 16px rgba(229, 181, 103, 0.2);
  filter: saturate(1.02);
}

.vip-payment-strip {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.vip-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.vip-payment-logos img {
  display: block;
  height: 31px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1) saturate(0) brightness(1.02) contrast(0.9);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.vip-payment-provider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #d8e2ef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.vip-payment-logos img:hover {
  opacity: 0.9;
  filter: grayscale(1) saturate(0) brightness(1.14) contrast(0.9);
}

.vip-payment-terms-link {
  margin: 2px 0 0;
  text-align: center;
  font-size: 14px;
}

.vip-payment-terms-link a {
  color: #f4deb0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vip-payment-terms-link a:hover {
  color: #ffe9be;
}

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

  .split-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .site-nav {
    top: 10px;
  }

  .site-nav__inner {
    min-height: 62px;
  }

  .site-brand img {
    height: 36px;
  }

  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--site-border);
    background: rgba(8, 13, 18, 0.94);
    box-shadow: var(--site-shadow);
  }

  .site-nav__links.is-open {
    display: flex;
  }

  .site-nav__item {
    width: 100%;
    display: block;
  }

  .site-nav__links a {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    font-size: 16px;
  }

  .site-nav__drop-toggle {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    font-size: 16px;
  }

  .site-nav__submenu {
    position: static;
    margin-top: 4px;
    min-width: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    border-radius: 10px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .site-nav__item.is-open .site-nav__submenu {
    display: grid;
  }

  .site-nav__submenu a {
    min-height: 40px;
    font-size: 14px;
    padding: 0 10px;
  }

  .page-hero__inner {
    padding-top: clamp(78px, 9vh, 104px);
    padding-bottom: clamp(78px, 9vh, 104px);
  }

  .page-hero--large {
    min-height: 72vh;
  }

  .vip-comparison-table {
    min-width: 540px;
  }

  .vip-rank-logo {
    width: min(100%, 170px);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--site-container), calc(100% - 24px));
  }

  .hero-player-count-wrap {
    gap: 8px;
  }

  .hero-player-count,
  .hero-server-ip,
  .hero-server-version {
    width: 100%;
    justify-content: center;
  }

  .discord-big-button {
    min-width: min(310px, 100%);
    min-height: 58px;
    font-size: clamp(18px, 5.2vw, 22px);
  }

  .discord-widget-wrap {
    width: 100%;
    max-width: 390px;
    padding: 8px;
  }

  .discord-widget-frame {
    height: 420px;
  }

  .home-live-overview {
    padding: 18px;
  }

  .home-live-overview__metrics {
    grid-template-columns: 1fr;
  }

  .home-live-metric__value {
    font-size: clamp(22px, 7vw, 30px);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .crew-grid {
    grid-template-columns: 1fr;
  }

  .command-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .content-card {
    padding: 18px;
  }

  .page-section {
    padding: 24px 0;
  }

  .page-main {
    padding-top: 24px;
  }

  .site-footer__inner {
    min-height: 72px;
    padding: 12px 0;
  }

  .vip-comparison-section__title {
    text-align: left;
  }

  .vip-comparison-table {
    min-width: 500px;
  }

  .vip-comparison-table thead th,
  .vip-comparison-table tbody td {
    padding: 12px 14px;
  }

  .vip-rank-logo {
    width: min(100%, 140px);
  }

  .vip-offer {
    gap: 7px;
  }

  .vip-offer__price {
    font-size: 13px;
    gap: 5px;
  }

  .vip-offer__amount {
    font-size: 20px;
  }

  .vip-offer__term {
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
  }

  .vip-buy-button {
    min-width: 114px;
    min-height: 33px;
    font-size: 14px;
  }

  .vip-payment-logos {
    width: 100%;
    gap: 12px;
  }

  .vip-payment-logos img {
    height: 26px;
  }

  .vip-expand-trigger .vip-feature-cell::after {
    width: 8px;
    height: 8px;
  }

  .vip-explain-row td {
    padding: 0 14px 12px;
    font-size: 13px;
  }
}

.vip-checkout-section {
  padding-top: 16px;
}

.vip-checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: start;
}

.vip-checkout-layout--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.vip-checkout-card,
.vip-summary-card,
.vip-result-card {
  display: grid;
  gap: 14px;
}

.vip-checkout-card__title,
.vip-summary-card__title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 38px);
}

.vip-checkout-card__lead {
  margin: 0;
  color: var(--site-muted);
}

.vip-order-form,
.vip-player-form {
  display: grid;
  gap: 12px;
}

.vip-field {
  display: grid;
  gap: 8px;
}

.vip-field span {
  font-size: 14px;
  font-weight: 700;
  color: #dce4f1;
}

.vip-field input {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 14, 21, 0.84);
  color: #f4f7fc;
  font-size: 16px;
}

.vip-field input::placeholder {
  color: #9cacbf;
}

.vip-player-name-input {
  min-height: 66px;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.vip-terms-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(229, 181, 103, 0.35);
  background: rgba(229, 181, 103, 0.08);
}

.vip-terms-card input {
  margin-top: 3px;
}

.vip-terms-card__text {
  display: grid;
  gap: 4px;
}

.vip-terms-card__title {
  font-weight: 800;
  color: #ffe8b8;
}

.vip-terms-card__subtitle {
  color: #d4deea;
  font-size: 14px;
  line-height: 1.45;
}

.vip-terms-card__subtitle a {
  color: #ffe0a1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vip-form-message {
  margin: 0;
  min-height: 24px;
  font-weight: 700;
  color: #c7d2e1;
}

.vip-form-message--error {
  color: #ff9f9f;
}

.vip-form-message--success {
  color: #7de4ae;
}

.vip-primary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(229, 181, 103, 0.52);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(229, 181, 103, 0.32), rgba(31, 92, 79, 0.45));
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.vip-primary-button:hover {
  border-color: rgba(229, 181, 103, 0.75);
}

.vip-primary-button--small {
  min-width: 104px;
  min-height: 42px;
  padding: 0 12px;
  font-size: 15px;
}

.vip-payment-wrap {
  min-height: 44px;
}

.vip-checkout-payment-logos {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vip-checkout-payment-logos img {
  height: 38px;
  width: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
}

.vip-payment-wrap .vip-primary-button {
  min-width: 210px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
}

.vip-checkout-payment-note {
  margin: 10px 0 0;
  color: #a9b7cb;
  font-size: 12px;
  line-height: 1.45;
}

.vip-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.vip-summary-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  color: #dce5f2;
}

.vip-summary-list li[hidden] {
  display: none !important;
}

.vip-summary-list li span {
  color: #a7b6ca;
}

.vip-summary-list__total {
  border-bottom: 0;
  font-size: 19px;
}

.vip-summary-list__discount strong {
  color: #ffdca0;
}

.vip-discount-card {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.vip-discount-card__title {
  margin: 0;
  font-size: 15px;
  color: #dbe5f3;
}

.vip-discount-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.vip-discount-card__input {
  min-height: 42px;
  width: 100%;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 14, 21, 0.84);
  color: #f4f7fc;
  font-size: 15px;
}

.vip-discount-card__input::placeholder {
  color: #9cacbf;
}

.vip-discount-card__status {
  margin: 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #b8c5d8;
}

.vip-discount-card__status--error {
  color: #ff9f9f;
}

.vip-discount-card__status--success {
  color: #7de4ae;
}

.vip-result-card h2 {
  margin: 0;
}

.vip-result-card p {
  margin: 0;
}

@media (max-width: 980px) {
  .vip-checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .vip-player-name-input {
    min-height: 56px;
    font-size: 20px;
  }

  .vip-checkout-payment-logos img {
    height: 34px;
  }

  .vip-payment-wrap .vip-primary-button {
    min-width: 190px;
    min-height: 52px;
    font-size: 18px;
  }

  .vip-summary-list li {
    font-size: 15px;
  }

  .vip-discount-card__row {
    grid-template-columns: 1fr;
  }
}
