:root {
  --bg: #050a12;
  --bg-soft: #081421;
  --panel: #0b1828;
  --panel-2: #0e2035;
  --text: #f4fbff;
  --muted: #9fb5c8;
  --line: rgba(255, 255, 255, 0.12);
  --volt: #27e6ff;
  --cyan: #2e74ff;
  --gold: #ffd34d;
  --danger: #4cc7ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020713;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loading-screen.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loading-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.loading-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(39, 230, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.4), rgba(5, 10, 18, 0.94));
}

.loading-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
}

.loading-content img {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 0 44px rgba(39, 230, 255, 0.42);
}

.loading-content strong {
  color: var(--text);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
}

.loading-content span {
  color: var(--volt);
  font-weight: 900;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.admin-locked .admin-content {
  display: none !important;
}

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

button,
input,
select {
  font: inherit;
}

button,
.button,
a,
input,
select,
textarea {
  transition:
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease,
    opacity 170ms ease,
    transform 170ms ease;
}

input,
select {
  border-radius: var(--radius-sm);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(39, 230, 255, 0.68) !important;
  box-shadow: 0 0 0 4px rgba(39, 230, 255, 0.13);
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(39, 230, 255, 0.62);
  outline-offset: 4px;
}

.button,
.header-button,
.menu-button,
.mobile-nav,
.feature-grid article,
.plan-card,
.review-grid figure,
.partner-banner-card,
.hardware-strip,
.server-tabs,
.billing-toggle,
.finder-button,
.game-card,
.panel-preview,
.panel-body,
.legal-card,
.auth-card,
.owned-server-card,
.minecraft-game-panel,
.console-card pre,
.admin-grid > .portal-card,
.live-card,
.portal-card,
.finder-card,
.finder-result,
.finder-card fieldset,
.choice-grid label,
.order-modal,
.order-modal form,
.table-wrap,
.support-inbox-sidebar,
.support-session,
.staff-chip,
.support-thread,
.chat-message,
.chat-empty,
.support-chat-panel,
.client-chat-form textarea,
.chat-reply-form textarea,
.portal-form input,
.portal-form select,
.terminal-input,
.terminal-form input,
.order-modal input,
.order-modal select {
  border-radius: var(--radius-md);
}

.section,
.ops-visual,
.live-usage,
.admin-workspace {
  border-radius: var(--radius-lg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(5, 10, 18, 0.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(5, 10, 18, 0.94);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong {
  color: var(--volt);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center 35%;
  border: 1px solid rgba(87, 215, 255, 0.36);
  background: var(--bg);
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.32);
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.ghost-link,
footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.desktop-nav a:hover,
.ghost-link:hover,
footer a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  background: linear-gradient(135deg, var(--volt), var(--cyan));
  color: #020713;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 38px rgba(39, 230, 255, 0.28);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(39, 230, 255, 0.34);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}

.button-muted {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: none;
}

.support-chat-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 28px));
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(39, 230, 255, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 10%, rgba(39, 230, 255, 0.16), transparent 34%),
    #101113;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46), 0 0 34px rgba(39, 230, 255, 0.09);
  backdrop-filter: blur(12px);
}

.support-chat-button:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 230, 255, 0.34);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.52), 0 0 40px rgba(39, 230, 255, 0.14);
}

.support-card-top,
.support-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.support-card-top strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.support-card-top em {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  font-size: 19px;
  color: #c8d2de;
  font-style: normal;
  font-weight: 850;
}

.support-card-top i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.8);
}

.support-avatars {
  display: flex;
  flex: 0 0 auto;
}

.support-avatars b {
  display: grid;
  width: 26px;
  height: 26px;
  margin-left: -6px;
  place-items: center;
  border: 2px solid #dfe7f4;
  border-radius: 50%;
  background: linear-gradient(135deg, #26364d, #101722);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
}

.support-avatars b:nth-child(2) {
  background: linear-gradient(135deg, #ff5757, #f4d7b3);
}

.support-avatars b:nth-child(3) {
  background: linear-gradient(135deg, #27e6ff, #2e74ff);
}

.support-avatars b:nth-child(4) {
  background: linear-gradient(135deg, #ffffff, #4158ff);
}

.support-primary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-primary {
  flex: 1;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3151ff, var(--volt));
  color: #fff;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(49, 81, 255, 0.28);
}

.support-primary span {
  font-size: 14px;
}

.support-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 158px;
  z-index: 61;
  display: grid;
  grid-template-rows: auto minmax(220px, 360px) auto;
  width: min(390px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(39, 230, 255, 0.34);
  background:
    radial-gradient(circle at 12% 0%, rgba(39, 230, 255, 0.16), transparent 34%),
    #07111d;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.support-chat-panel[hidden] {
  display: none !important;
}

.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.support-chat-header span {
  color: var(--volt);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.support-chat-header strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.chat-log {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 14px;
}

.chat-message {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(150, 170, 190, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.chat-message.own {
  border-color: rgba(39, 230, 255, 0.46);
  background: rgba(39, 230, 255, 0.12);
}

.chat-message.staff {
  border-color: rgba(255, 211, 77, 0.38);
  background: rgba(255, 211, 77, 0.1);
}

.chat-message.ai {
  border-color: rgba(39, 230, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(39, 230, 255, 0.13), rgba(46, 116, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.chat-message.typing {
  border-color: rgba(39, 230, 255, 0.34);
  background: rgba(39, 230, 255, 0.08);
}

.typing-dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 22px;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 10px rgba(39, 230, 255, 0.55);
  animation: typing-dot 900ms infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
  animation-delay: 140ms;
}

.typing-dots span:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes typing-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-message div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.chat-message strong {
  color: var(--text);
}

.chat-message span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chat-message p,
.chat-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.chat-empty {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.chat-empty h3 {
  margin: 0;
}

.client-chat-form,
.chat-reply-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.client-chat-form {
  grid-template-columns: 1fr;
}

.client-chat-form textarea,
.chat-reply-form textarea {
  min-width: 0;
  min-height: 78px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 12px;
  resize: vertical;
  font: inherit;
}

.chat-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-chat-log {
  max-height: 520px;
  border: 1px solid rgba(39, 230, 255, 0.13);
  background: rgba(5, 10, 18, 0.38);
}

.support-inbox {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.support-inbox-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 520px;
  padding: 16px;
  border: 1px solid rgba(39, 230, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(39, 230, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(5, 10, 18, 0.52);
}

.support-inbox-sidebar strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-chat-list,
.staff-list {
  display: grid;
  gap: 8px;
}

.support-session,
.staff-chip {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  width: 100%;
  padding: 11px;
  border: 1px solid rgba(150, 170, 190, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-align: left;
}

.support-session {
  cursor: pointer;
}

.support-session:hover,
.support-session.active {
  border-color: rgba(39, 230, 255, 0.62);
  background: rgba(39, 230, 255, 0.12);
}

.support-initial {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--volt), #2e74ff);
  color: #020713;
  font-weight: 950;
}

.support-session span:nth-child(2),
.staff-chip span:nth-child(2) {
  min-width: 0;
}

.support-session strong,
.staff-chip strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-session small,
.support-session em,
.staff-chip small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.support-thread {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(39, 230, 255, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(39, 230, 255, 0.08), transparent 28%),
    rgba(5, 10, 18, 0.34);
}

.support-thread-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(39, 230, 255, 0.16);
}

.support-thread-header strong {
  display: block;
  color: var(--text);
  font-size: 18px;
}

.support-thread-header span {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.support-thread .admin-chat-log {
  min-height: 430px;
  max-height: 560px;
  border: 0;
  background: transparent;
}

[data-admin-panel="chat"] {
  grid-column: 1 / -1;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 76px 16px auto;
  z-index: 30;
  padding: 12px;
  background: rgba(8, 20, 33, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 12px;
  color: var(--muted);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 78px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-video {
  pointer-events: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 32%, rgba(39, 230, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(5, 10, 18, 0.96) 0%, rgba(5, 10, 18, 0.82) 36%, rgba(5, 10, 18, 0.26) 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 10, 18, 0) 24%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
}

.promo-pill,
.eyebrow {
  color: var(--volt);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(39, 230, 255, 0.34);
  background: rgba(39, 230, 255, 0.1);
}

.promo-pill span {
  width: 9px;
  height: 9px;
  background: var(--volt);
  box-shadow: 0 0 18px var(--volt);
}

.coming-soon-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(1, 6, 12, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.coming-soon-popup.show {
  opacity: 1;
}

.coming-soon-popup > div {
  display: grid;
  gap: 8px;
  width: min(360px, 100%);
  padding: 26px;
  border: 1px solid rgba(39, 230, 255, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(39, 230, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(10, 28, 43, 0.98), rgba(4, 12, 22, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44), 0 0 34px rgba(39, 230, 255, 0.12);
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}

.coming-soon-popup.show > div {
  transform: translateY(0) scale(1);
}

.coming-soon-popup strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.coming-soon-popup span {
  color: var(--volt);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin: 24px 0 20px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

.hero p,
.section-heading p,
.panel-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(560px, 100%);
  gap: 12px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.partner-banner {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #07101c;
}

.partner-banner-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: banner-scroll 34s linear infinite;
}

.partner-banner:hover .partner-banner-track {
  animation-play-state: paused;
}

.partner-banner-card {
  position: relative;
  display: grid;
  align-items: end;
  min-width: 420px;
  min-height: 132px;
  overflow: hidden;
  padding: 0;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(39, 230, 255, 0.14), rgba(46, 116, 255, 0.06)),
    #07101c;
}

.partner-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.88), rgba(5, 10, 18, 0.34) 58%, rgba(5, 10, 18, 0.72)),
    var(--banner-image, linear-gradient(135deg, rgba(39, 230, 255, 0.18), rgba(46, 116, 255, 0.08)));
  background-position: center;
  background-size: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.partner-banner-card.has-image:hover .partner-banner-bg {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.partner-banner-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  margin: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.partner-logo {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(39, 230, 255, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(39, 230, 255, 0.1);
  color: var(--volt);
  font-weight: 950;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

td .partner-logo {
  width: 42px;
  height: 42px;
}

.partner-banner-copy {
  display: grid;
  min-width: 0;
}

.partner-banner-copy span {
  color: var(--volt);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-banner-copy strong {
  overflow: hidden;
  color: var(--text);
  font-size: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-banner-copy small {
  overflow: hidden;
  color: var(--muted);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-banner-card.sale-card {
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.24), rgba(39, 230, 255, 0.12)),
    #07101c;
}

.sale-card {
  min-width: 460px;
}

.sale-card .partner-banner-bg {
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 211, 77, 0.34), transparent 30%),
    radial-gradient(circle at 74% 12%, rgba(39, 230, 255, 0.25), transparent 34%),
    linear-gradient(135deg, rgba(10, 17, 28, 0.98), rgba(12, 42, 58, 0.9));
}

.sale-card .partner-banner-info {
  min-height: 96px;
  margin: 18px;
  gap: 16px;
}

.sale-badge {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 211, 77, 0.55);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.28), rgba(39, 230, 255, 0.14)),
    rgba(5, 10, 18, 0.52);
  color: var(--gold);
  box-shadow: 0 0 34px rgba(255, 211, 77, 0.2);
}

.sale-badge strong {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.sale-badge small {
  color: #fff2b8;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.sale-card .partner-banner-copy span {
  color: var(--gold);
}

.sale-card .partner-banner-copy strong {
  font-size: 22px;
}

@keyframes banner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

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

.page-main h1 {
  max-width: 860px;
  margin: 16px 0 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 34px;
}

.minecraft-heading-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.minecraft-heading-wrap .section-heading {
  margin-bottom: 0;
}

.minecraft-video-panel {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(39, 230, 255, 0.24);
  border-radius: var(--radius-xl);
  background: #07101c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), 0 0 44px rgba(39, 230, 255, 0.11);
}

.minecraft-video-panel video {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.minecraft-video-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.42)),
    radial-gradient(circle at 72% 18%, rgba(39, 230, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.section-heading.split {
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

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

.feature-grid article,
.plan-card,
.review-grid figure,
.feature-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(39, 230, 255, 0.08), rgba(46, 116, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  min-height: 226px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  place-items: center;
  background: rgba(87, 215, 255, 0.12);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
}

.feature-grid p,
.plan-copy,
.plan-card li,
.review-grid blockquote,
.faq-item p,
footer p {
  color: var(--muted);
}

.billing-toggle {
  display: flex;
  min-width: 295px;
  gap: 5px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.billing-toggle button {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.billing-toggle button.active {
  background: var(--volt);
  color: #020713;
}

.selector-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.server-tabs,
.game-tier-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: min(300px, 100%);
  padding: 6px;
  border: 1px solid rgba(150, 170, 190, 0.28);
  border-radius: 22px;
  background: #121720;
  overflow: hidden;
}

.server-tabs button,
.game-tier-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #9fb0c4;
  cursor: pointer;
  font-weight: 950;
  text-align: center;
}

.server-tabs button.active,
.game-tier-tabs button.active {
  background: #27d8ef;
  color: #020713;
  box-shadow: none;
}

.server-tabs button[data-server-tier="premium"].active,
.game-tier-tabs button[data-game-tier-switch="Premium"].active {
  background: var(--gold);
}

.finder-button {
  min-height: 54px;
  border-radius: 22px;
}

.server-tier-panel {
  display: grid;
  gap: 20px;
}

.server-tier-panel[hidden] {
  display: none !important;
}

.hardware-strip {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(39, 230, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #161d27;
}

.basic-hardware {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.hardware-strip div {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hardware-strip div:first-child {
  border-left: 0;
}

.hardware-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hardware-strip strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.premium-hardware {
  border-color: rgba(255, 211, 77, 0.34);
  background: linear-gradient(135deg, rgba(255, 211, 77, 0.18), rgba(255, 158, 46, 0.08)), #171509;
}

.basic-plan-grid {
  grid-template-columns: repeat(5, minmax(0, 210px));
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1114px;
  margin-inline: auto;
}

.basic-plan-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 264px;
  padding: 20px 20px 18px;
  border: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.03)),
    #202638;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.premium-plan-card {
  background: #202638;
}

.plan-ribbon {
  display: none !important;
}

.basic-plan-head > span,
.block-cube,
[class*="-cube"] {
  display: none !important;
}

.basic-plan-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3), 0 0 28px rgba(39, 230, 255, 0.08);
}

.basic-plan-head {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  min-height: 48px;
}

.basic-plan-head > div {
  display: grid;
  gap: 4px;
}

.basic-plan-head h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.basic-plan-card .plan-label {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stone-label { color: #b9c6d8; }
.coal-label { color: #dfe7f2; }
.iron-label { color: #ff995f; }
.gold-label { color: #e4f94d; }
.lapis-label { color: #5f8cff; }
.redstone-label { color: #ff3939; }
.diamond-label { color: #27e6ff; }
.emerald-label { color: #47ef79; }
.amethyst-label { color: #d94cff; }
.netherite-label { color: #7f8cff; }

.basic-plan-features {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
}

.basic-plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8d5ed;
  font-size: 14px;
}

.basic-plan-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--volt);
  box-shadow: 0 0 12px rgba(39, 230, 255, 0.35);
}

.basic-plan-features span {
  display: none;
}

.basic-plan-features strong {
  color: #fff;
}

.basic-plan-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  min-height: 50px;
}

.basic-plan-card .price {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.basic-plan-card .price small {
  display: block;
  margin-bottom: 7px;
  color: #9fb7e7;
  font-size: 11px;
  font-weight: 700;
}

.order-circle {
  display: grid;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #596179, #3f465c);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.order-circle:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--volt), var(--cyan));
  color: #06101b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.order-circle.is-coming-soon,
[data-game-order].is-coming-soon {
  border-color: rgba(255, 211, 77, 0.42);
  background: linear-gradient(135deg, rgba(255, 211, 77, 0.92), rgba(174, 106, 0, 0.92));
  color: #fff7ca;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(255, 193, 7, 0.18);
}

.order-circle:focus-visible {
  outline: 3px solid rgba(39, 230, 255, 0.65);
  outline-offset: 3px;
}

.plan-help-line {
  margin: 22px 0 0;
  text-align: center;
  color: #b7c7e8;
  font-weight: 750;
}

.plan-help-line a {
  color: #4f7cff;
  font-weight: 950;
}

.premium-hardware span {
  color: #ffd978;
}

.premium-hardware strong {
  color: #fff6d6;
}

.premium-placeholder {
  max-width: 620px;
}

.plan-grid:not(.basic-plan-grid) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  padding: 28px;
  display: grid;
  align-content: start;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.plan-card.basic-plan-card {
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  padding: 20px 20px 18px;
}

.plan-card:hover {
  border-color: rgba(39, 230, 255, 0.48);
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(39, 230, 255, 0.1);
}

.plan-card.popular {
  border-color: rgba(39, 230, 255, 0.58);
  box-shadow: 0 24px 70px rgba(39, 230, 255, 0.14);
  transform: translateY(-10px);
}

.popular-tag {
  position: absolute;
  inset: 16px 16px auto auto;
  padding: 7px 10px;
  background: rgba(46, 116, 255, 0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.plan-label {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(39, 230, 255, 0.26);
  border-radius: var(--radius-sm);
  background: rgba(39, 230, 255, 0.08);
  color: var(--volt);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 20px 0 14px;
  font-size: 46px;
  font-weight: 950;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.price-before {
  display: block;
  width: fit-content;
  margin-bottom: 5px;
  color: #8fa3b8 !important;
  font-size: 15px !important;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.discount-note {
  display: block;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 236, 151, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.98), rgba(39, 230, 255, 0.88));
  color: #07101c !important;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 22px rgba(255, 211, 77, 0.28), 0 8px 20px rgba(39, 230, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-card.sale-active {
  border-color: rgba(39, 230, 255, 0.52);
}

[data-tier-panel="premium"] .plan-card:hover,
[data-tier-panel="premium"] .plan-card.sale-active,
[data-tier-panel="premium"] .plan-card.popular {
  border-color: rgba(255, 211, 77, 0.58);
  box-shadow: 0 24px 70px rgba(255, 211, 77, 0.12);
}

[data-tier-panel="premium"] .plan-label {
  border-color: rgba(255, 211, 77, 0.34);
  background: rgba(255, 211, 77, 0.12);
  color: var(--gold);
}

[data-tier-panel="premium"] .popular-tag {
  background: rgba(255, 211, 77, 0.14);
  color: var(--gold);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.plan-card li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  background: var(--volt);
}

.order-button {
  width: 100%;
  margin-top: auto;
}

.order-circle.order-button {
  width: 44px;
  margin-top: 0;
  padding: 0;
}

.plan-card .basic-plan-features {
  min-height: 0;
  margin: 14px 0 20px;
}

.panel-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: center;
  background: #06101b;
}

.game-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 68px;
  background: #050a12;
}

.game-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.game-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.95), rgba(5, 10, 18, 0.54), rgba(5, 10, 18, 0.18)),
    linear-gradient(0deg, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.12) 55%);
  pointer-events: none;
}

.game-hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.game-hero-content h1 {
  margin: 16px 0;
}

.game-hero-content p {
  color: var(--muted);
  font-size: 18px;
}

.games-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(39, 230, 255, 0.12), transparent 32%),
    #07101c;
}

.game-search {
  width: min(360px, 100%);
}

.game-search label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.game-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 0 14px;
}

.ping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.ping-grid article {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(39, 230, 255, 0.24);
  background: rgba(39, 230, 255, 0.08);
}

.ping-grid span,
.ping-grid small {
  color: var(--muted);
  font-weight: 800;
}

.ping-grid strong {
  font-size: 24px;
}

.game-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.game-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(150, 170, 190, 0.28);
  background: #121720;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.game-filters button.active {
  background: var(--volt);
  color: #020713;
}

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

.game-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 214px;
  padding: 18px;
  border: 1px solid rgba(39, 230, 255, 0.16);
  background:
    radial-gradient(circle at 16% 0%, rgba(39, 230, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.94), rgba(7, 17, 29, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(39, 230, 255, 0.32);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.26), 0 0 28px rgba(39, 230, 255, 0.07);
}

.game-card.featured-game {
  border-color: rgba(255, 211, 77, 0.34);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 211, 77, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.96), rgba(7, 17, 29, 0.98));
}

.game-card[hidden] {
  display: none;
}

.game-card h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.game-card p:not(.plan-label) {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.game-card strong {
  color: #a8cfff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-cta {
  margin-top: 34px;
}

.game-cover {
  position: relative;
  display: grid;
  min-height: 106px;
  overflow: hidden;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(39, 230, 255, 0.28), rgba(46, 116, 255, 0.12)),
    #0b1828;
}

.game-cover img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.02), rgba(5, 10, 18, 0.58)),
    radial-gradient(circle at 15% 0%, rgba(39, 230, 255, 0.16), transparent 35%);
  pointer-events: none;
}

.game-cover span {
  position: relative;
  z-index: 3;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 10, 18, 0.48);
  color: var(--text);
  font-weight: 950;
}

.game-cover img:not([hidden]) + span {
  opacity: 0;
}

.fallback-cover span {
  opacity: 1;
}

.game-plan-stack {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(39, 230, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.38);
}

.game-plan-stack > span {
  color: #a8cfff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-plan-stack div {
  display: grid;
  grid-template-columns: 0.85fr 0.9fr 1fr;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.game-plan-stack strong,
.game-plan-stack b {
  color: var(--text);
  font-size: 13px;
  line-height: 1.1;
}

.game-plan-stack b {
  text-align: right;
}

.game-plan-stack small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.game-plan-section {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  scroll-margin-top: 104px;
}

.game-plan-section .section-heading {
  margin-bottom: 0;
}

.game-plan-subsection {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.game-plan-subsection[hidden] {
  display: none !important;
}

.game-plan-subhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(39, 230, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(39, 230, 255, 0.12), transparent 32%),
    rgba(5, 10, 18, 0.62);
}

.game-plan-subhead h3 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 22px;
}

.game-plan-subhead > strong {
  color: var(--gold);
  font-size: 16px;
  white-space: nowrap;
}

.game-hardware-strip {
  grid-template-columns: 1.4fr 1fr 1fr;
  border-radius: 18px;
}

.game-detailed-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 210px));
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1114px;
  margin-inline: auto;
}

.game-detailed-plan-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  min-height: 314px;
  padding: 20px;
  border: 1px solid rgba(255, 211, 77, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 211, 77, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.02)),
    #202638;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.game-detailed-plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 211, 77, 0.34);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 211, 77, 0.08);
}

.game-detailed-plan-card.sale-active {
  border-color: rgba(255, 211, 77, 0.46);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 211, 77, 0.1);
}

.game-detailed-plan-card .plan-label {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 211, 77, 0.34);
  border-radius: 10px;
  background: rgba(255, 211, 77, 0.05);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-detailed-plan-card h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1;
}

.game-detailed-plan-card ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 8px 0 14px;
  padding: 0;
  list-style: none;
}

.game-detailed-plan-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7e5ff;
  font-size: 14px;
  line-height: 1.25;
}

.game-detailed-plan-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--volt);
  box-shadow: 0 0 13px rgba(39, 230, 255, 0.42);
}

.game-detailed-plan-card li strong {
  color: #fff;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.game-plan-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.game-plan-footer p {
  margin: 0;
}

.game-plan-footer small {
  display: block;
  margin-bottom: 6px;
  color: #a8cfff;
  font-size: 11px;
  font-weight: 900;
}

.game-plan-footer .discount-note {
  margin-top: 9px;
}

.game-plan-footer strong {
  color: #fff;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.game-plan-footer span {
  color: #d7e5ff;
  font-weight: 900;
}

.game-plan-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 211, 77, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.96), rgba(255, 158, 46, 0.9));
  color: #110b02;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 158, 46, 0.16);
  white-space: nowrap;
}

.game-plan-footer a:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.minecraft-cover {
  background: linear-gradient(135deg, #2bd56c, #1f6a35 46%, #573921);
}

.rust-cover {
  background: linear-gradient(135deg, #d5792b, #733917 52%, #15171d);
}

.valheim-cover {
  background: linear-gradient(135deg, #75d0ff, #244b73 44%, #07101c);
}

.terraria-cover {
  background: linear-gradient(135deg, #5ad56a, #4d77e6 48%, #6b3d25);
}

.ark-cover {
  background: linear-gradient(135deg, #20d3b7, #31567f 48%, #15171d);
}

.cs-cover {
  background: linear-gradient(135deg, #ffcf4d, #283648 48%, #07101c);
}

.racing-cover {
  background: linear-gradient(135deg, #e9eef4, #bd2b2b 48%, #15171d);
}

.dayz-cover {
  background: linear-gradient(135deg, #a9b0a4, #394239 48%, #07101c);
}

.panel-preview {
  overflow: hidden;
  border: 1px solid rgba(87, 215, 255, 0.22);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.panel-topbar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #0a1727;
}

.panel-topbar span {
  width: 12px;
  height: 12px;
  background: var(--danger);
}

.panel-topbar span:nth-child(2) {
  background: var(--gold);
}

.panel-topbar span:nth-child(3) {
  background: var(--volt);
}

.panel-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 430px;
}

.panel-body aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: #07101c;
}

.panel-body aside strong {
  margin-bottom: 12px;
}

.panel-body aside button {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-weight: 800;
}

.panel-body aside .selected {
  background: rgba(39, 230, 255, 0.14);
  color: var(--volt);
}

.console {
  padding: 20px;
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.console-stats span,
.terminal-input {
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

pre {
  min-height: 250px;
  margin: 0 0 16px;
  overflow: auto;
  color: #dff8ff;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-weight: 900;
}

.inline-link {
  display: inline;
}

.legal-card {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.legal-card h3 {
  margin: 14px 0 0;
}

.legal-card p {
  color: var(--muted);
}

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

.review-grid.expanded {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.review-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  border-color: rgba(39, 230, 255, 0.18) !important;
  background:
    radial-gradient(circle at 16% 0%, rgba(39, 230, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.92), rgba(6, 16, 27, 0.94)) !important;
}

.review-rating {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 211, 77, 0.32);
  border-radius: 999px;
  background: rgba(255, 211, 77, 0.11);
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.review-card small {
  color: var(--muted);
  font-weight: 800;
}

.review-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.review-form-wrap {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(39, 230, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 29, 0.86);
}

.review-form {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
}

.review-form label {
  display: block;
  margin-bottom: 7px;
  color: #a8cfff;
  font-size: 13px;
  font-weight: 900;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050a12;
  color: var(--text);
}

.review-form input,
.review-form select {
  min-height: 46px;
  padding: 0 14px;
}

.review-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.review-form-wide,
.review-form button {
  grid-column: 1 / -1;
}

.account-section,
.admin-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(39, 230, 255, 0.13), transparent 34%),
    radial-gradient(circle at 100% 18%, rgba(46, 116, 255, 0.11), transparent 32%),
    #050a12;
}

.auth-section {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  justify-items: center;
}

.auth-section .auth-layout {
  justify-items: center;
}

.auth-card {
  width: min(520px, 100%);
}

.auth-card-heading {
  margin-bottom: 22px;
  text-align: center;
}

.auth-card-heading h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 6vw, 54px);
}

.auth-card-heading p:not(.eyebrow) {
  color: var(--muted);
}

.auth-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.auth-switch button {
  color: var(--volt);
  font-weight: 950;
}

.account-summary,
.admin-lock {
  min-width: 220px;
  padding: 20px;
  border: 1px solid rgba(39, 230, 255, 0.24);
  background: rgba(39, 230, 255, 0.08);
}

.account-summary {
  display: grid;
  gap: 4px;
}

.admin-lock {
  display: grid;
  gap: 10px;
  align-content: center;
}

.account-summary span,
.account-summary small,
.admin-lock,
.helper-text {
  color: var(--muted);
  font-weight: 800;
}

.account-summary strong {
  font-size: 34px;
}

.portal-grid,
.admin-grid,
.metric-grid {
  display: grid;
  gap: 18px;
}

.portal-grid {
  grid-template-columns: 0.9fr 0.8fr 1.3fr;
}

.auth-layout,
.single-panel {
  display: grid;
  width: min(620px, 100%);
}

.wide-panel {
  width: 100%;
}

.account-tools-section {
  padding-top: 40px;
  background: #07101c;
}

.credits-center-section {
  min-height: calc(100vh - 190px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 50% 8%, rgba(39, 230, 255, 0.16), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(46, 116, 255, 0.12), transparent 30%),
    #07101c;
}

.credits-center-section .section-heading {
  width: min(760px, 100%);
  justify-items: center;
  text-align: center;
}

.credits-center-section .account-summary {
  width: min(360px, 100%);
  justify-self: center;
}

.credits-panel {
  width: min(560px, 100%);
  justify-items: stretch;
}

.credits-card {
  text-align: left;
  border-color: rgba(39, 230, 255, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.96), rgba(6, 16, 27, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), 0 0 36px rgba(39, 230, 255, 0.08);
}

.credits-card h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.credits-card .portal-form {
  grid-template-columns: 1fr;
}

.affiliates-center-section {
  min-height: calc(100vh - 190px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 211, 77, 0.12), transparent 31%),
    radial-gradient(circle at 82% 78%, rgba(39, 230, 255, 0.12), transparent 30%),
    #07101c;
}

.affiliates-center-section .section-heading {
  width: min(760px, 100%);
  justify-items: center;
  text-align: center;
}

.affiliates-panel {
  width: min(620px, 100%);
  justify-items: stretch;
}

.affiliates-panel .affiliate-card {
  border-color: rgba(255, 211, 77, 0.26);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 77, 0.12), transparent 32%),
    radial-gradient(circle at 100% 22%, rgba(39, 230, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.96), rgba(6, 16, 27, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), 0 0 36px rgba(255, 211, 77, 0.06);
}

.affiliates-panel .affiliate-card h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.affiliates-panel .portal-form {
  grid-template-columns: 1fr;
}

.owned-server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.owned-server-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(39, 230, 255, 0.08), rgba(46, 116, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.owned-server-card h3 {
  margin-bottom: 0;
}

.owned-server-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.owned-server-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.owned-server-card dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.maintenance-screen {
  display: grid;
  gap: 22px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(39, 230, 255, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.15), transparent 38%),
    #050a12;
  box-shadow: var(--shadow);
}

.maintenance-screen[hidden] {
  display: none;
}

.maintenance-copy {
  text-align: center;
}

.maintenance-copy h2 {
  margin: 8px 0 4px;
  color: var(--volt);
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.92;
  text-shadow: 0 0 38px rgba(39, 230, 255, 0.36);
}

.maintenance-copy p:last-child {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 950;
}

.flappy-shell {
  overflow: hidden;
  border: 1px solid rgba(39, 230, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.flappy-topbar,
.flappy-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.flappy-topbar {
  border-bottom: 1px solid var(--line);
}

.flappy-topbar strong {
  color: var(--text);
  font-size: 18px;
}

.flappy-topbar span,
.flappy-controls span {
  color: var(--muted);
  font-weight: 900;
}

.flappy-controls {
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

#flappy-game {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  background: #06101b;
  cursor: pointer;
}

.minecraft-game-panel {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 720px;
  border: 1px solid rgba(39, 230, 255, 0.24);
  background: #050a12;
  box-shadow: var(--shadow);
}

.minecraft-game-panel[hidden] {
  display: none;
}

.game-panel-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: #07101c;
}

.game-panel-sidebar strong {
  color: var(--text);
  font-size: 20px;
}

.game-panel-sidebar span {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.game-panel-sidebar button {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.game-panel-sidebar .selected {
  background: rgba(39, 230, 255, 0.14);
  color: var(--volt);
}

.game-panel-main {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.game-panel-top,
.console-header,
.game-panel-actions,
.terminal-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.game-panel-top h2 {
  margin-bottom: 0;
}

.game-panel-actions {
  flex-wrap: wrap;
  justify-content: end;
}

.game-panel-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.game-panel-stats article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.game-panel-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game-panel-stats strong {
  font-size: 24px;
}

.game-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 18px;
}

.console-card pre {
  min-height: 390px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #020713;
}

.terminal-form input {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 0 12px;
}

.panel-tool-grid {
  display: grid;
  gap: 14px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.admin-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(39, 230, 255, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(11, 28, 44, 0.96), rgba(6, 16, 27, 0.96)),
    #07101c;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.admin-sidebar strong {
  margin: 0 0 8px;
  padding: 8px 10px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-sidebar button {
  position: relative;
  min-height: 46px;
  padding: 0 14px 0 42px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.admin-sidebar button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(159, 181, 200, 0.38);
  transform: translateY(-50%);
}

.admin-sidebar button:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.admin-sidebar button.active {
  background:
    linear-gradient(135deg, rgba(39, 230, 255, 0.22), rgba(46, 116, 255, 0.12));
  color: var(--volt);
  box-shadow: inset 0 0 0 1px rgba(39, 230, 255, 0.24);
}

.admin-sidebar button.active::before {
  background: var(--volt);
  box-shadow: 0 0 18px rgba(39, 230, 255, 0.75);
}

.admin-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.admin-grid > .portal-card {
  min-height: 420px;
}

.admin-grid > .portal-card[hidden] {
  display: none;
}

.ops-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 20px;
  margin-bottom: 20px;
}

.ops-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(39, 230, 255, 0.24);
  background: #050a12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.ops-visual img,
.ops-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ops-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.42)),
    linear-gradient(0deg, rgba(5, 10, 18, 0.82), rgba(5, 10, 18, 0.02) 48%);
}

.ops-visual-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(560px, 100%);
  min-height: 330px;
  padding: 30px;
}

.ops-visual-overlay h2 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
}

.ops-visual-overlay p {
  color: var(--muted);
  font-size: 17px;
}

.live-usage {
  display: grid;
  align-content: stretch;
  gap: 12px;
  min-height: 330px;
  padding: 18px;
  border: 1px solid rgba(39, 230, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(39, 230, 255, 0.1), rgba(46, 116, 255, 0.04)),
    #081421;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.live-usage-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 4px 6px;
}

.live-usage-heading h3 {
  margin-bottom: 0;
}

.live-usage-heading > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.live-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 10, 18, 0.62);
}

.live-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.live-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-card strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.usage-bar {
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.usage-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--volt), var(--cyan));
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.48);
  transition: width 520ms ease;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portal-card,
.metric-grid article {
  border: 1px solid rgba(39, 230, 255, 0.16);
  background:
    radial-gradient(circle at 14% 0%, rgba(39, 230, 255, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.94), rgba(7, 17, 29, 0.96));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.portal-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 2.2vw, 28px);
}

.metric-grid article {
  display: grid;
  position: relative;
  gap: 7px;
  min-height: 132px;
  overflow: hidden;
  padding: 22px;
}

.metric-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--volt), var(--cyan), transparent);
}

.metric-grid span {
  color: #a8cfff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-grid strong {
  font-size: 31px;
  line-height: 1.05;
}

.metric-grid small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.portal-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.portal-tabs button {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.portal-tabs button.active {
  background: var(--volt);
  color: #020713;
}

.portal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(5, 10, 18, 0.36);
}

.portal-form label {
  display: grid;
  gap: 8px;
  color: #a8cfff;
  font-size: 13px;
  font-weight: 900;
}

.portal-form input,
.portal-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050a12;
  color: var(--text);
  padding: 0 12px;
}

.portal-form textarea,
.portal-form button,
.portal-form .checkbox-label {
  grid-column: 1 / -1;
}

.chat-reply-form label {
  grid-column: 1 / -1;
}

.portal-form .checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.portal-form .checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--volt);
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.finder-card,
.finder-result {
  border: 1px solid rgba(39, 230, 255, 0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(39, 230, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(39, 230, 255, 0.08), rgba(46, 116, 255, 0.035)),
    #07111d;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.finder-card {
  display: grid;
  gap: 16px;
}

.finder-card fieldset,
.finder-slider {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(150, 170, 190, 0.18);
  background: rgba(5, 10, 18, 0.34);
}

.finder-card legend,
.finder-slider span {
  color: var(--text);
  font-weight: 900;
}

.finder-card legend {
  padding: 0;
  font-size: 20px;
  width: 100%;
}

.finder-card legend {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.finder-card fieldset p,
.finder-slider small {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 750;
}

.question-kicker {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(39, 230, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(39, 230, 255, 0.1);
  color: var(--volt) !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.finder-slider strong {
  font-size: clamp(30px, 5vw, 46px);
  color: var(--text);
  line-height: 1;
}

.finder-slider input[type="range"] {
  width: 100%;
  min-height: 34px;
  accent-color: var(--volt);
}

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

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 13px 14px;
  border: 1px solid rgba(150, 170, 190, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-grid label:hover {
  border-color: rgba(39, 230, 255, 0.5);
  background: rgba(39, 230, 255, 0.08);
}

.choice-grid label:has(input:checked) {
  border-color: rgba(39, 230, 255, 0.74);
  background: rgba(39, 230, 255, 0.16);
  box-shadow: inset 4px 0 0 var(--volt);
}

.choice-grid input {
  accent-color: var(--volt);
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.finder-result {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.finder-result::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--volt), #2e74ff, var(--gold));
}

.finder-result h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0;
  line-height: 1;
}

.finder-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.finder-result-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.34);
}

.finder-result-grid span {
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.finder-result-grid strong {
  color: var(--text);
  line-height: 1.2;
}

.finder-reasons {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(39, 230, 255, 0.2);
  background: rgba(39, 230, 255, 0.06);
}

.finder-reasons strong {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.finder-reasons ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.finder-reasons li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.finder-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  background: var(--volt);
}

.finder-placeholder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.32);
}

.finder-placeholder span:nth-child(odd) {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--volt);
  color: #020713;
  font-weight: 950;
}

.finder-placeholder span:nth-child(even) {
  align-self: center;
  color: var(--muted);
  font-weight: 850;
}

.helper-text {
  margin: 14px 0 0;
  font-size: 13px;
}

.affiliate-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(39, 230, 255, 0.2);
  border-radius: 22px;
  background: rgba(5, 10, 18, 0.36);
}

.affiliate-summary div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.affiliate-summary div:last-child {
  grid-column: 1 / -1;
}

.affiliate-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.affiliate-summary strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 20px;
}

.affiliate-card > .button + .button {
  margin-top: 10px;
}

.table-wrap {
  overflow-x: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(5, 10, 18, 0.36);
}

.compact-table {
  margin-top: 2px;
}

.compact-table th,
.compact-table td {
  padding-block: 10px;
}

.table-wrap h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(5, 10, 18, 0.96);
  color: var(--volt);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: var(--muted);
  font-weight: 750;
}

tbody tr:hover td {
  background: rgba(39, 230, 255, 0.045);
  color: #d8ecff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid rgba(39, 230, 255, 0.26);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.12);
  color: var(--volt);
  font-size: 12px;
  font-weight: 950;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.action-button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(39, 230, 255, 0.3);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.1);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.action-button:hover {
  background: rgba(39, 230, 255, 0.2);
  transform: translateY(-1px);
}

.action-button.danger-action {
  border-color: rgba(255, 99, 132, 0.42);
  background: rgba(255, 99, 132, 0.12);
  color: #ffd6df;
}

.admin-inline-action {
  width: 100%;
  margin-top: 10px;
}

.review-grid figure {
  margin: 0;
  padding: 26px;
}

.review-grid blockquote {
  margin: 0 0 24px;
  font-size: 18px;
}

.review-grid figcaption {
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-weight: 900;
}

.faq-item p {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
}

.faq-item[aria-expanded="true"] p {
  display: block;
}

.faq-item[aria-expanded="true"] strong {
  color: var(--volt);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 clamp(18px, 5vw, 72px) 72px;
  padding: 42px;
  border: 1px solid rgba(39, 230, 255, 0.38);
  background:
    radial-gradient(circle at 18% 24%, rgba(39, 230, 255, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(39, 230, 255, 0.16), rgba(46, 116, 255, 0.12)),
    #081421;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

footer .brand-logo {
  width: 54px;
  height: 54px;
}

footer div {
  display: flex;
  gap: 18px;
}

.order-modal {
  width: min(660px, calc(100% - 28px));
  border: 1px solid rgba(39, 230, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(39, 230, 255, 0.08), rgba(46, 116, 255, 0.035)),
    var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}

.order-modal::backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.order-modal form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.checkout-heading {
  padding-right: 42px;
}

.checkout-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 5vw, 48px);
}

.checkout-heading p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  justify-self: end;
  position: absolute;
  inset: 18px 18px auto auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
}

.order-modal label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.order-modal input,
.order-modal select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 0 12px;
}

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

.checkout-summary div {
  display: grid;
  gap: 5px;
  min-height: 84px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(39, 230, 255, 0.22);
  background: rgba(5, 10, 18, 0.52);
}

.checkout-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-summary strong {
  color: var(--text);
  line-height: 1.2;
}

.checkout-fields {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 18, 0.42);
}

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

.checkout-progress span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid rgba(39, 230, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(39, 230, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.checkout-progress b {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--volt);
  color: #020713;
}

.checkout-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 77, 0.26);
  border-radius: var(--radius-md);
  background: rgba(255, 211, 77, 0.08);
  color: #ffe9a6;
  font-weight: 800;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 850px;
  }

  .feature-grid,
  .plan-grid,
  .review-grid,
  .game-grid,
  .portal-grid,
  .admin-grid,
  .ops-hero,
  .metric-grid,
  .finder-layout,
  .owned-server-grid,
  .minecraft-game-panel,
  .game-panel-layout,
  .game-panel-stats,
  .panel-section,
  footer,
  .cta-section,
  .section-heading.split {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .game-detailed-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 210px));
  }

  .hardware-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .basic-hardware {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .finder-result {
    position: static;
  }

  .hardware-strip div:nth-child(odd) {
    border-left: 0;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .support-inbox {
    grid-template-columns: 1fr;
  }

  .support-inbox-sidebar {
    min-height: 0;
  }

  .review-actions {
    justify-content: start;
  }

  .review-form {
    grid-template-columns: 1fr;
  }

  .portal-form {
    grid-template-columns: 1fr;
  }

  .affiliate-summary {
    grid-template-columns: 1fr;
  }

  .affiliate-summary div:last-child {
    grid-column: auto;
  }

  .admin-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    align-items: center;
  }

  .admin-sidebar strong {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
  }

  .admin-sidebar button {
    flex: 0 0 auto;
    min-width: 110px;
    text-align: center;
  }

  .section-heading.split {
    align-items: start;
  }

  .minecraft-heading-wrap {
    grid-template-columns: 1fr;
  }

  .minecraft-video-panel {
    min-height: 190px;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card:hover {
    transform: none;
  }

  .basic-plan-grid {
    grid-template-columns: repeat(2, minmax(220px, 260px));
    justify-content: center;
  }

  .panel-body {
    grid-template-columns: 1fr;
  }

  .panel-body aside {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .panel-body aside button,
  .panel-body aside strong {
    white-space: nowrap;
  }

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

  .checkout-summary {
    grid-template-columns: 1fr;
  }

  .checkout-progress {
    grid-template-columns: 1fr;
  }

  .game-panel-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .game-panel-top,
  .console-header,
  .terminal-form {
    align-items: stretch;
    flex-direction: column;
  }

  .game-panel-actions {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 800px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 10, 18, 0.94), rgba(5, 10, 18, 0.58)),
      linear-gradient(0deg, var(--bg), rgba(5, 10, 18, 0) 34%);
  }

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

  .billing-toggle {
    min-width: 0;
    width: 100%;
  }

  .server-tabs {
    width: 100%;
    min-width: 0;
  }

  .selector-actions,
  .finder-button {
    width: 100%;
  }

  .support-chat-button {
    right: 14px;
    bottom: 14px;
    gap: 12px;
    min-height: 0;
    padding: 14px;
    border-radius: 24px;
  }

  .support-chat-panel {
    right: 14px;
    bottom: 142px;
  }

  .support-card-actions {
    gap: 8px;
  }

  .choice-grid,
  .finder-result-grid {
    grid-template-columns: 1fr;
  }

  .hardware-strip {
    grid-template-columns: 1fr;
  }

  .hardware-strip div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hardware-strip div:first-child {
    border-top: 0;
  }

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

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

  .game-plan-subhead {
    align-items: start;
    flex-direction: column;
  }

  .game-plan-subhead > strong {
    white-space: normal;
  }

  .game-detailed-plan-card {
    min-height: 0;
  }

  .basic-plan-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 26px;
  }

  footer {
    justify-items: start;
  }
}
