:root {
  --bg-deep: #070d18;
  --bg-panel: rgba(12, 22, 40, 0.82);
  --bg-card: rgba(18, 32, 56, 0.65);
  --border: rgba(120, 200, 255, 0.18);
  --border-bright: rgba(120, 220, 255, 0.45);
  --text: #e8f4ff;
  --text-muted: #8fb4d4;
  --ice: #7ee8ff;
  --ice-dim: #3db8d9;
  --diamond: #4eeaff;
  --grass: #5cb85c;
  --gold: #ffcc44;
  --discord: #5865f2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --pixel: "Silkscreen", monospace;
  --body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(40, 120, 200, 0.22), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(80, 180, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #0a1220 0%, var(--bg-deep) 40%, #050810 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

#snow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(14px);
  background: rgba(7, 13, 24, 0.72);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--pixel);
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.logo-block {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-dim) 100%);
  box-shadow:
    inset -2px -2px 0 rgba(0, 0, 0, 0.25),
    inset 2px 2px 0 rgba(255, 255, 255, 0.35),
    0 0 18px rgba(78, 234, 255, 0.35);
  image-rendering: pixelated;
}

.logo .accent {
  color: var(--diamond);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--ice);
}

.nav-discord {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(88, 101, 242, 0.5);
  border-radius: 8px;
  color: #c8ceff !important;
  background: rgba(88, 101, 242, 0.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

main {
  position: relative;
  z-index: 3;
  padding-top: 5.5rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  min-height: calc(100vh - 5.5rem);
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(78, 234, 255, 0.18), transparent 70%);
  filter: blur(40px);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.eyebrow {
  font-family: var(--pixel);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-dim);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  line-height: 1.05;
}

.title-line {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.title-main {
  display: block;
  font-family: var(--pixel);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 0%, var(--ice) 55%, var(--ice-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(78, 234, 255, 0.25);
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.35));
}

.hero-sub {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero-sub strong {
  color: var(--ice);
}

.ip-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 28rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  background: var(--bg-panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.ip-card-inner {
  flex: 1;
  padding: 1rem 1.1rem;
}

.ip-label {
  display: block;
  font-family: var(--pixel);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.ip-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#server-ip {
  font-family: var(--pixel);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  color: var(--diamond);
  letter-spacing: 0.06em;
}

.ip-hint {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ip-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 1rem;
  min-width: 5.5rem;
  background: rgba(92, 184, 92, 0.08);
  border-left: 1px solid rgba(92, 184, 92, 0.25);
  font-family: var(--pixel);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ee08e;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fdc6f;
  box-shadow: 0 0 12px #6fdc6f;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-copy svg {
  width: 16px;
  height: 16px;
}

.btn-copy:hover {
  background: rgba(78, 234, 255, 0.1);
  border-color: var(--border-bright);
}

.btn-copy:active {
  transform: scale(0.97);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn-primary {
  color: #041018;
  background: linear-gradient(180deg, var(--ice) 0%, var(--ice-dim) 100%);
  box-shadow:
    0 8px 24px rgba(61, 184, 217, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-discord {
  color: white;
  background: linear-gradient(180deg, #6872ff 0%, var(--discord) 100%);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.btn-discord svg {
  width: 20px;
  height: 20px;
}

.btn-discord:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}

.block-stack {
  position: relative;
  width: 180px;
  height: 180px;
  transform: rotateX(52deg) rotateZ(-38deg);
  transform-style: preserve-3d;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotateX(52deg) rotateZ(-38deg) translateY(0); }
  50% { transform: rotateX(52deg) rotateZ(-38deg) translateY(-12px); }
}

.mc-block {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 3px 3px 0 rgba(255, 255, 255, 0.18),
    inset -3px -3px 0 rgba(0, 0, 0, 0.25);
}

.block-grass {
  top: 0;
  left: 54px;
  background: linear-gradient(180deg, #6ec06e 0%, #6ec06e 35%, #8b6914 35%, #6b4f12 100%);
}

.block-ice {
  top: 54px;
  left: 0;
  background: linear-gradient(135deg, #b8f0ff 0%, #5ec8e8 50%, #2a8aaa 100%);
  box-shadow: 0 0 30px rgba(94, 200, 232, 0.45);
}

.block-diamond {
  top: 54px;
  left: 108px;
  background: linear-gradient(135deg, #8fffff 0%, #4eeaff 45%, #1a9aaa 100%);
}

.block-obsidian {
  top: 108px;
  left: 54px;
  background: linear-gradient(135deg, #3a2858 0%, #1a1028 100%);
}

.floating-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.item {
  position: absolute;
  font-size: 1.8rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: bob 4s ease-in-out infinite;
}

.item.sword { top: 8%; right: 18%; animation-delay: 0s; }
.item.snowflake { bottom: 18%; left: 8%; animation-delay: 1.2s; color: var(--ice); }
.item.star { top: 42%; right: 6%; color: var(--gold); animation-delay: 2.4s; }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.stat {
  padding: 1.1rem;
  text-align: center;
  background: var(--bg-panel);
}

.stat-value {
  display: block;
  font-family: var(--pixel);
  font-size: 1.1rem;
  color: var(--diamond);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--pixel);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.feature-icon.diamond { color: var(--diamond); background: rgba(78, 234, 255, 0.08); }
.feature-icon.emerald { color: #6fdc6f; background: rgba(92, 184, 92, 0.08); }
.feature-icon.gold { color: var(--gold); background: rgba(255, 204, 68, 0.08); }
.feature-icon.redstone { color: #ff6666; background: rgba(255, 80, 80, 0.08); }

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.mutator-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.mutator-chip {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--pixel);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.2s;
}

.mutator-chip:hover {
  transform: translateY(-2px);
}

.mutator-chip[data-color="border"] { border-color: rgba(255, 200, 80, 0.45); color: #ffd080; }
.mutator-chip[data-color="fog"] { border-color: rgba(160, 160, 180, 0.45); color: #c8c8d8; }
.mutator-chip[data-color="uhc"] { border-color: rgba(255, 80, 80, 0.45); color: #ff9999; }
.mutator-chip[data-color="strength"] { border-color: rgba(255, 60, 60, 0.5); color: #ff7070; }
.mutator-chip[data-color="random"] { border-color: rgba(200, 120, 255, 0.45); color: #d8a0ff; }
.mutator-chip[data-color="blackout"] { border-color: rgba(100, 100, 120, 0.5); color: #aaaacc; }
.mutator-chip[data-color="mace"] { border-color: rgba(255, 204, 68, 0.45); color: var(--gold); }

.store-form {
  max-width: 420px;
  margin: 0 auto 2rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-panel);
}

.store-label {
  display: block;
  font-family: var(--pixel);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.store-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border-bright);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: var(--pixel);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.store-input:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(78, 234, 255, 0.15);
}

.store-hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.rank-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.rank-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.rank-card.rank-featured {
  border-color: rgba(78, 234, 255, 0.45);
  box-shadow: 0 0 40px rgba(78, 234, 255, 0.08);
}

.rank-popular {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(78, 234, 255, 0.15);
  border: 1px solid rgba(78, 234, 255, 0.35);
  font-family: var(--pixel);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
}

.rank-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  font-family: var(--pixel);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
}

.rank-ice { color: #a8e8ff; background: rgba(120, 200, 255, 0.1); border-color: rgba(120, 200, 255, 0.35); }
.rank-snow { color: #eef6ff; background: rgba(220, 235, 255, 0.08); border-color: rgba(220, 235, 255, 0.3); }
.rank-frost { color: var(--diamond); background: rgba(78, 234, 255, 0.1); border-color: rgba(78, 234, 255, 0.4); }
.rank-subzero { color: #b8b0ff; background: rgba(120, 100, 255, 0.12); border-color: rgba(140, 120, 255, 0.4); }

.rank-price {
  margin: 0 0 0.85rem;
}

.rank-amount {
  font-family: var(--pixel);
  font-size: 1.5rem;
  color: var(--text);
}

.rank-once {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rank-perks {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
}

.rank-perks li + li {
  margin-top: 0.25rem;
}

.btn-rank {
  width: 100%;
  margin-top: auto;
  color: #041018;
  font-weight: 700;
}

.btn-rank:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn-rank-ice { background: linear-gradient(180deg, #a8e8ff 0%, #5eb8e8 100%); }
.btn-rank-snow { background: linear-gradient(180deg, #eef6ff 0%, #b8cce8 100%); color: #1a2840; }
.btn-rank-frost { background: linear-gradient(180deg, var(--ice) 0%, var(--ice-dim) 100%); }
.btn-rank-subzero { background: linear-gradient(180deg, #c8b8ff 0%, #7868d8 100%); color: white; }

.store-note {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.store-note a {
  color: var(--ice);
}

.result-page {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
}

.result-card {
  max-width: 520px;
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border-bright);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.result-eyebrow {
  font-family: var(--pixel);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-dim);
  margin: 0 0 0.75rem;
}

.result-card h1 {
  font-family: var(--pixel);
  margin: 0 0 0.75rem;
}

.result-body {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.result-body a {
  color: var(--ice);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-panel {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border-bright);
  background:
    radial-gradient(circle at top, rgba(78, 234, 255, 0.12), transparent 55%),
    var(--bg-panel);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-family: var(--pixel);
  margin: 0 0 0.5rem;
}

.cta-panel p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.cta-ip {
  font-family: var(--pixel);
  font-size: 1.1rem;
  color: var(--diamond);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.site-footer {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--ice);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(18, 32, 56, 0.95);
  border: 1px solid var(--border-bright);
  color: var(--ice);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 260px;
    order: -1;
  }

  .block-stack {
    transform: rotateX(52deg) rotateZ(-38deg) scale(0.85);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.5rem 1.25rem;
    background: rgba(7, 13, 24, 0.96);
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-card {
    flex-direction: column;
  }

  .ip-status {
    flex-direction: row;
    padding: 0.65rem 1rem;
    border-left: none;
    border-top: 1px solid rgba(92, 184, 92, 0.25);
  }
}
