:root {
  --primary: #00c8ff;
  --secondary: #ff2f6d;
  --bg: #070a12;
  --card: #101622;
  --muted: #9aa0a6;
  --line: rgba(255, 255, 255, 0.11);
  --glass: rgba(21, 21, 21, 0.72);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --green-glow: 0 0 34px rgba(0, 200, 255, 0.26);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 200, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(255, 47, 109, 0.12), transparent 25rem),
    linear-gradient(180deg, #070a12 0%, #05070c 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0, 200, 255, 0.14), transparent 28rem),
    #080808;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  box-shadow: 0 0 34px rgba(0, 200, 255, 0.24);
  animation: spin 900ms linear infinite;
}

.loader-brand {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}

.loader-text {
  color: var(--muted);
  font-size: 0.9rem;
}

.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

.orb {
  position: fixed;
  z-index: -2;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(78px);
  opacity: 0.18;
  pointer-events: none;
}

.orb-a {
  top: 9rem;
  left: -6rem;
  background: var(--primary);
  animation: floatA 12s ease-in-out infinite;
}

.orb-b {
  right: -7rem;
  top: 24rem;
  background: var(--secondary);
  animation: floatB 14s ease-in-out infinite;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 18, 0.74);
  backdrop-filter: blur(22px);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 1.16rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #050505;
  background: linear-gradient(135deg, var(--primary), #a8ffd9);
  box-shadow: var(--green-glow);
}

.logo-image {
  overflow: hidden;
  padding: 3px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 200, 255, 0.24);
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  padding: 10px 13px;
  border-radius: 8px;
  color: #d8d8d8;
  font-size: 0.94rem;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(0, 200, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 200, 255, 0.16);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: 180ms ease;
}

.mobile-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.94), rgba(7, 10, 18, 0.72), rgba(7, 10, 18, 0.9)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1800&q=80") center / cover;
  opacity: 0.95;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(0, 200, 255, 0.54) 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 47, 109, 0.34) 1px, transparent 1.8px);
  background-size: 72px 72px, 118px 118px;
  animation: particles 24s linear infinite;
  opacity: 0.28;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.metric-label,
.section-kicker {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.hero h1,
.page-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  margin-bottom: 22px;
  letter-spacing: 0;
}

.gradient-text {
  background: linear-gradient(90deg, #fff 0%, var(--primary) 58%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.page-lead {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.35;
  color: #f3f3f3;
  max-width: 740px;
  margin-bottom: 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #e7e7e7;
  backdrop-filter: blur(12px);
}

.chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.24));
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary);
}

.chip.has-icon::before {
  display: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: 190ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #050505;
  box-shadow: var(--green-glow);
}

.btn-secondary {
  background: rgba(255, 47, 109, 0.1);
  color: #fff;
  border-color: rgba(255, 47, 109, 0.45);
  box-shadow: 0 0 28px rgba(255, 47, 109, 0.1);
}

.btn-ghost {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.12);
}

.hero-console,
.glass-card,
.plan-card,
.domain-row,
.soon-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-console {
  border-radius: 16px;
  padding: 18px;
  transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
}

.console-top {
  display: flex;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}

.dot:nth-child(2) {
  background: #ffd166;
}

.dot:nth-child(3) {
  background: var(--primary);
}

.server-stack {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.server-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.server-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 200, 255, 0.11);
  color: var(--primary);
}

.server-icon img,
.icon-box img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.26));
}

.server-row strong {
  display: block;
}

.server-row small,
.muted {
  color: var(--muted);
}

.status {
  color: var(--primary);
  font-weight: 800;
}

section {
  padding: 86px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0;
  max-width: 760px;
}

.section-head p {
  color: var(--muted);
  max-width: 430px;
  line-height: 1.7;
  margin-bottom: 0;
}

.feature-grid,
.category-grid,
.plans-grid,
.contact-grid,
.tos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card,
.plan-card,
.contact-card {
  border-radius: 14px;
  padding: 24px;
  transition: 190ms ease;
  position: relative;
  overflow: hidden;
}

.glass-card::after,
.plan-card::after,
.soon-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.2), transparent 64%);
  opacity: 0;
  transition: 200ms ease;
}

.glass-card:hover,
.plan-card:hover,
.domain-row:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 255, 0.38);
  box-shadow: var(--shadow), var(--green-glow);
}

.glass-card:hover::after,
.plan-card:hover::after,
.soon-card:hover::after {
  opacity: 1;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--primary);
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.glass-card h3,
.plan-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.glass-card p,
.contact-card p,
.plan-card p,
.plan-card li {
  color: #c5c8cc;
  line-height: 1.65;
}

.locations {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.location-item {
  min-height: 116px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.15), transparent 55%);
}

.location-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.category-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price {
  display: flex;
  align-items: end;
  gap: 5px;
  margin: 18px 0;
}

.price strong {
  font-size: 2.35rem;
  color: var(--primary);
}

.price span {
  color: var(--muted);
  padding-bottom: 7px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.plan-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.plan-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.5);
  color: var(--primary);
  margin-right: 9px;
  vertical-align: 1px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 47, 109, 0.13);
  border: 1px solid rgba(255, 47, 109, 0.28);
  color: #ffb6cc;
  font-size: 0.76rem;
  font-weight: 850;
}

.plan-visual {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  margin-bottom: 18px;
  position: relative;
  transform-style: preserve-3d;
  animation: blockFloat 3.8s ease-in-out infinite;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(0, 200, 255, 0.14);
}

.plan-visual.custom-emoji {
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.plan-visual.custom-emoji img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: auto;
  filter: drop-shadow(0 0 18px rgba(0, 200, 255, 0.18));
}

.plan-visual::before,
.plan-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: brightness(0.82);
  transform: translate(10px, 10px);
  z-index: -1;
}

.plan-visual::after {
  inset: 7px;
  transform: none;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.18) 0 8%, transparent 9% 100%);
  opacity: 0.6;
}

.block-proxy {
  background:
    linear-gradient(135deg, #20252c, #0c1017),
    repeating-linear-gradient(45deg, rgba(0, 200, 255, 0.25) 0 8px, transparent 8px 16px);
}

.block-dirt {
  background:
    linear-gradient(#3bb84a 0 26%, transparent 26%),
    repeating-linear-gradient(45deg, #70451f 0 9px, #5b3519 9px 18px);
}

.block-wood {
  background:
    radial-gradient(circle at center, #f0b45b 0 15%, #9c5d24 16% 36%, transparent 37%),
    repeating-linear-gradient(90deg, #8c4e1f 0 12px, #b06b2c 12px 24px);
}

.block-stone {
  background:
    repeating-linear-gradient(135deg, #8c8f91 0 12px, #6f7478 12px 22px, #a2a5a7 22px 34px);
}

.block-coal {
  background:
    radial-gradient(circle at 30% 32%, #3b4247 0 12%, transparent 13%),
    repeating-linear-gradient(135deg, #121416 0 11px, #25282b 11px 21px);
}

.block-copper {
  background:
    radial-gradient(circle at 68% 22%, rgba(0, 200, 255, 0.3), transparent 22%),
    repeating-linear-gradient(135deg, #b66a35 0 12px, #d28b55 12px 22px, #7fc7a0 22px 30px);
}

.block-iron {
  background:
    linear-gradient(135deg, #ececec, #9097a0),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 0 9px, transparent 9px 18px);
}

.block-diamond {
  background:
    radial-gradient(circle at 28% 22%, #e8ffff 0 10%, transparent 11%),
    repeating-linear-gradient(135deg, #43f0ff 0 12px, #149cb0 12px 24px, #8af8ff 24px 34px);
}

.block-netherite {
  background:
    radial-gradient(circle at 62% 35%, #735c69 0 12%, transparent 13%),
    repeating-linear-gradient(135deg, #1d171b 0 12px, #33262e 12px 24px, #5a4a55 24px 34px);
}

.block-bedrock {
  background:
    repeating-linear-gradient(135deg, #1b1b1b 0 10px, #5a5a5a 10px 20px, #2d2d2d 20px 30px, #8c8c8c 30px 38px);
}

.cta-band {
  padding: 54px;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(0, 200, 255, 0.16), rgba(255, 47, 109, 0.09)),
    rgba(21, 21, 21, 0.76);
  border: 1px solid rgba(0, 200, 255, 0.24);
  box-shadow: var(--shadow), var(--green-glow);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero {
  padding: 78px 0 42px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.plans-page {
  padding-top: 36px;
}

.media-showcase {
  padding: 0 0 30px;
}

.media-panel {
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.44), rgba(11, 11, 11, 0.86)),
    var(--media-image) center / cover no-repeat;
  transition: transform 420ms ease, filter 420ms ease;
}

.media-panel:hover::before {
  transform: scale(1.04);
  filter: saturate(1.14);
}

.media-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 54px);
}

.media-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 12px;
}

.media-content p {
  color: #d0d4d8;
  line-height: 1.7;
  margin-bottom: 0;
}

.minecraft-media {
  --media-image: url("https://images.unsplash.com/photo-1627856014754-2907e2355d5e?auto=format&fit=crop&w=1600&q=80");
}

.vps-media {
  --media-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80");
}

.dedicated-media {
  --media-image: url("https://images.unsplash.com/photo-1597852074816-d933c7d2b988?auto=format&fit=crop&w=1600&q=80");
}

.plan-switch {
  width: fit-content;
  display: flex;
  gap: 8px;
  padding: 8px;
  margin: 0 auto 28px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.switch-btn {
  min-width: 132px;
  border: 0;
}

.switch-btn.active {
  background: var(--primary);
  color: #050505;
  box-shadow: var(--green-glow);
}

.plan-panel {
  display: none;
}

.plan-panel.active {
  display: block;
}

.plans-subhead {
  margin: 0 0 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.plans-subhead h2 {
  margin-bottom: 8px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.addon-pill {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.addon-pill strong {
  display: block;
  color: var(--primary);
  margin-top: 6px;
}

.soon-wrap {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

.soon-card {
  position: relative;
  width: min(780px, 100%);
  text-align: center;
  border-radius: 20px;
  padding: clamp(32px, 6vw, 76px);
  overflow: hidden;
  animation: pulseBorder 3.8s ease-in-out infinite;
}

.soon-card .icon-box {
  margin: 0 auto 22px;
  width: 64px;
  height: 64px;
}

.soon-card h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.soon-card p {
  color: #c9ccd0;
  max-width: 590px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.domain-table {
  display: grid;
  gap: 12px;
}

.domain-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  border-radius: 12px;
  padding: 18px 20px;
  transition: 190ms ease;
}

.domain-row.header {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent;
  box-shadow: none;
}

.domain-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
}

.domain-price {
  font-weight: 850;
}

.contact-card .btn {
  margin-top: 12px;
}

.tos-card {
  grid-column: span 2;
}

.legal-wrap {
  display: grid;
  gap: 16px;
}

.legal-section {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.legal-section h2 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.18rem;
}

.legal-section p,
.legal-section li {
  color: #c9ccd0;
  line-height: 1.72;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section strong {
  color: #fff;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 76px);
}

.admin-sidebar {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(20px);
}

.admin-sidebar h2 {
  font-size: 1rem;
  margin: 0 0 18px;
  color: var(--primary);
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu a {
  padding: 12px 13px;
  border-radius: 8px;
  color: #cfd5dc;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.admin-menu a:hover,
.admin-menu a.active {
  color: var(--primary);
  background: rgba(0, 200, 255, 0.08);
  border-color: rgba(0, 200, 255, 0.2);
}

.admin-main {
  padding: 34px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.admin-stat,
.admin-panel {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.admin-stat {
  padding: 18px;
}

.admin-stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.7rem;
  color: var(--primary);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.admin-panel {
  padding: 22px;
}

.admin-panel h2 {
  margin-bottom: 16px;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: #d7dce2;
  font-weight: 700;
  font-size: 0.9rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.admin-form textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.08);
}

.admin-table {
  display: grid;
  gap: 10px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.admin-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.admin-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 200, 255, 0.1);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 850;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    top: 0;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .admin-main {
    padding: 22px 16px;
  }
}

.footer {
  padding: 52px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 26px;
}

.footer h4 {
  color: var(--primary);
  margin: 0 0 14px;
}

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

.footer a,
.footer p {
  color: #bfc3c7;
}

.footer a:hover {
  color: var(--primary);
}

.copyright {
  color: #73777d;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.copyright span {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 800;
}

@keyframes particles {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 300px 600px, -420px 360px;
  }
}

@keyframes floatA {
  50% {
    transform: translate(7rem, 3rem) scale(1.08);
  }
}

@keyframes floatB {
  50% {
    transform: translate(-5rem, -2rem) scale(0.95);
  }
}

@keyframes pulseBorder {
  50% {
    box-shadow: var(--shadow), 0 0 54px rgba(0, 200, 255, 0.2), inset 0 0 42px rgba(0, 200, 255, 0.035);
    border-color: rgba(0, 200, 255, 0.42);
  }
}

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

@keyframes blockFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateZ(-2deg);
  }
  50% {
    transform: translateY(-8px) rotateX(6deg) rotateZ(3deg);
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(22px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: 190ms ease;
  }

  .mobile-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-grid,
  .feature-grid,
  .category-grid,
  .plans-grid,
  .contact-grid,
  .tos-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-console {
    transform: none;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .location-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tos-card {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .hero,
  section {
    padding: 58px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .location-strip,
  .domain-row {
    grid-template-columns: 1fr;
  }

  .domain-row.header {
    display: none;
  }

  .cta-band {
    padding: 28px;
  }

  .plan-switch {
    width: 100%;
  }

  .switch-btn {
    min-width: 0;
    flex: 1;
  }

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

  .server-row {
    grid-template-columns: 42px 1fr;
  }

  .server-row .status {
    grid-column: 2;
  }
}
