
:root {
  --bg: #0b111d;
  --panel: #142033;
  --panel-2: #1d2a3c;
  --line: rgba(255,255,255,.10);
  --orange: #ff9b05;
  --text: #f5f7fb;
  --muted: #a9c1db;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,155,5,.16), transparent 32%),
    linear-gradient(135deg, #080d16 0%, #0e1726 55%, #0b111d 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(96vw, 1500px);
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,16,27,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
}
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.logo small { color: var(--orange); }
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav a {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-weight: 800;
  font-size: 14px;
  transition: .18s ease;
}
.nav a:hover,
.nav a.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
}
.nav-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #111;
  font-size: 24px;
  font-weight: 900;
  padding: 7px 11px;
  cursor: pointer;
}
.social-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 22px 10px 0;
}
.social-strip a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}
.social-strip svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.hero { padding: 28px 0 64px; }
.hero-content .badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
  letter-spacing: .6px;
}
.hero-content h1 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}
.hero-content h1 span { color: var(--orange); }
.hero-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.mini-server-card {
  background: rgba(20,32,51,.88);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.server-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 22px;
}
.server-copy-row small {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
}
.server-copy-row strong {
  display: block;
  font-size: 20px;
  word-break: break-word;
}
.copy-btn {
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #111;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
}
.copy-btn:hover { filter: brightness(1.08); }
.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    padding-bottom: 14px;
  }
  .nav.open { display: flex; }
  .topbar-inner { flex-wrap: wrap; }
  .nav a { width: 100%; text-align: center; }
  .server-copy-row { align-items: flex-start; flex-direction: column; }
  .copy-btn { width: 100%; }
}
