:root {
  --bg: #040506;
  --panel: rgba(10, 13, 18, .72);
  --panel-2: rgba(18, 21, 29, .62);
  --line: rgba(255, 207, 63, .18);
  --line-2: rgba(255,255,255,.09);
  --text: #f8f5ec;
  --muted: #b7b0a3;
  --gold: #f2c94c;
  --gold-2: #b88716;
  --green: #20d35a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.30), rgba(0,0,0,.70)),
    radial-gradient(circle at 50% 34%, rgba(242,201,76,.20), transparent 34%),
    url('bcs-bg.jpg') center/cover fixed,
    #050607;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background:
    radial-gradient(circle at 20% 48%, rgba(242,201,76,.16), transparent 20%),
    radial-gradient(circle at 80% 44%, rgba(242,201,76,.12), transparent 22%),
    linear-gradient(120deg, transparent 0 45%, rgba(242,201,76,.10) 45.1% 45.35%, transparent 45.45% 100%);
}
body::after {
  background: radial-gradient(circle, transparent 50%, rgba(0,0,0,.78) 100%);
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: .12;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 5px);
}

.page {
  position: relative;
  z-index: 3;
  width: min(1660px, 100%);
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 54px) 28px;
}

.topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: .8;
  color: var(--gold);
  letter-spacing: -.05em;
  text-shadow: 0 0 28px rgba(242,201,76,.40);
}
.brand-text {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}
.top-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-links a {
  min-width: 94px;
  text-align: center;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.04);
  transition: .2s ease;
}
.top-links a:hover { border-color: var(--line); transform: translateY(-2px); }
.top-links .outline { border-color: rgba(242,201,76,.45); color: var(--gold); }

.hero {
  text-align: center;
  padding: clamp(54px, 7vw, 112px) 0 36px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  letter-spacing: .56em;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
}
.eyebrow span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
h1 {
  margin: 22px 0 16px;
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  font-size: clamp(54px, 7vw, 114px);
  line-height: .88;
  letter-spacing: .03em;
  text-shadow: 0 8px 34px rgba(0,0,0,.75);
}
h1 strong {
  display: inline-block;
  color: var(--gold);
  text-shadow: 0 0 32px rgba(242,201,76,.30);
}
.lead {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(248,245,236,.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
}
.progress-wrap {
  max-width: 660px;
  margin: 34px auto 0;
}
.progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: 13px;
}
.progress-bar {
  height: 18px;
  border: 1px solid rgba(242,201,76,.30);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,.42);
  box-shadow: inset 0 0 20px rgba(0,0,0,.65), 0 0 26px rgba(242,201,76,.10);
}
.progress-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.15) 0 9px, transparent 9px 18px), linear-gradient(90deg, #ffb800, #ffdf5f, #c68716);
  box-shadow: 0 0 32px rgba(242,201,76,.65);
  animation: loadingPulse 2.2s ease-in-out infinite;
}
.progress-note {
  display: block;
  margin-top: 13px;
  color: rgba(248,245,236,.70);
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(360px, 560px) 1fr;
  align-items: stretch;
  margin: 26px auto 0;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 100px rgba(0,0,0,.42);
}
.server-card {
  display: grid;
  grid-template-columns: 1fr 178px;
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line-2);
  background: rgba(0,0,0,.16);
}
.label {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.server-card h2 {
  margin: 12px 0 14px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}
.copy-ip {
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  color: var(--gold);
  background: transparent;
  font-size: 21px;
  font-weight: 900;
  font-family: Inter, sans-serif;
  text-align: left;
}
.copy-ip:hover { text-decoration: underline; }
.server-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  font-size: 18px;
}
.server-status span {
  width: 74px;
  height: 34px;
  border-radius: 999px;
  background: rgba(32,211,90,.18);
  border: 1px solid rgba(32,211,90,.35);
  position: relative;
}
.server-status span::after {
  content: "ONLINE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.server-status b { font-weight: 700; }
.radar {
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(242,201,76,.20);
  background: repeating-radial-gradient(circle, transparent 0 27px, rgba(242,201,76,.16) 28px 29px), radial-gradient(circle, rgba(242,201,76,.25), transparent 8%);
  overflow: hidden;
}
.radar::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left center;
  animation: radar 3.4s linear infinite;
}
.radar i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 28px var(--gold);
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-row article {
  padding: clamp(22px, 2vw, 34px) 22px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.055);
}
.icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  background: radial-gradient(circle, rgba(242,201,76,.24), rgba(242,201,76,.06));
  border: 1px solid rgba(242,201,76,.22);
  box-shadow: inset 0 0 24px rgba(242,201,76,.08);
}
.feature-row h3 {
  margin: 0 0 10px;
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
}
.feature-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.connect {
  margin: 28px auto 0;
  text-align: center;
}
.connect h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: .38em;
  text-transform: uppercase;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.connect-card {
  min-height: 92px;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 54px 1fr 26px;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 16px 20px;
  color: var(--text);
  text-decoration: none;
  text-align: left;
  background: rgba(7,10,15,.60);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  font: inherit;
  cursor: pointer;
}
.connect-card:hover { transform: translateY(-3px); border-color: rgba(242,201,76,.35); background: rgba(12,16,24,.78); }
.connect-card span {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 28px;
  background: rgba(255,255,255,.06);
}
.connect-card strong {
  align-self: end;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}
.connect-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}
.connect-card b {
  grid-row: 1 / 3;
  grid-column: 3;
  color: var(--gold);
  font-size: 28px;
}
.discord { border-color: rgba(99,102,241,.26); }
.forum { border-color: rgba(255,108,43,.26); }
.ip { border-color: rgba(47,213,132,.26); }
.vip { border-color: rgba(242,201,76,.30); }

.loader-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 0;
  color: rgba(248,245,236,.74);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.loader {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(242,201,76,.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.footer {
  margin: 26px auto 0;
  text-align: center;
  color: rgba(248,245,236,.55);
  font-size: 14px;
}

.copied { color: #111 !important; background: linear-gradient(135deg, #ffdf5f, #c68716) !important; padding: 8px 12px !important; border-radius: 10px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes radar { to { transform: rotate(360deg); } }
@keyframes loadingPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.28); }
}

@media (max-width: 1180px) {
  .live-grid { grid-template-columns: 1fr; }
  .server-card { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .connect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 850px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .top-links { width: 100%; flex-wrap: wrap; }
  .top-links a { flex: 1; min-width: 120px; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .server-card { grid-template-columns: 1fr; }
  .radar { display: none; }
  .eyebrow { letter-spacing: .25em; }
  .eyebrow span { width: 24px; }
}
@media (max-width: 560px) {
  .page { padding: 18px 12px 24px; }
  .brand-text { font-size: 12px; letter-spacing: .18em; }
  .top-links a { width: 100%; }
  .hero { padding-top: 42px; }
  .feature-row, .connect-grid { grid-template-columns: 1fr; }
  .server-card, .feature-row article { padding: 22px; }
  .connect-card { grid-template-columns: 46px 1fr 20px; padding: 14px; }
}
