/* CSGOLD.LT styles.css */
:root{
  --bg:#0b0f14;
  --text:#e7eef8;
  --muted:#9fb1c7;
  --line:#223044;
  --accent:#ffbf2f;
  --accent2:#35b7ff;
  --good:#33d17a;
  --bad:#ff6b6b;
  --shadow: 0 14px 40px rgba(0,0,0,.45);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 60% -10%, rgba(255,191,47,.18), transparent 55%),
              radial-gradient(900px 600px at 10% 0%, rgba(53,183,255,.16), transparent 55%),
              var(--bg);
  color:var(--text);
}


/* ===== Sticky header (banner + nav) ===== */
.siteHeader{ width:100%; }
.stickyTop{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Banner area */
.headerBanner{
  width:100%;
  display:flex;
  justify-content:center;
  background: transparent;
  padding: 0;
  margin: 0;
}
.banner{
  width:100%;
  max-width:768px;
  height:auto;
  display:block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

/* Nav bar under banner */
.navBar{
  background:#111827;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:12px 0;
}

/* Push content below sticky header (banner + nav) */
:root{
  --banner-h: 90px;
  --nav-h: 58px;
}
main{
  padding-top: calc(var(--banner-h) + var(--nav-h) + 14px);
}

.wrap{max-width:1100px; margin:0 auto; padding:18px}
a{color:inherit; text-decoration:none}
code{background:rgba(255,255,255,.06); padding:2px 6px; border-radius:8px; border:1px solid rgba(255,255,255,.08)}

/* Nav */
.navrow{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:900; letter-spacing:.6px;
}
.brandText{opacity:.95}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
  box-shadow: 0 0 18px rgba(255,191,47,.35);
}
.menu{
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  transition:.15s ease;
  font-weight:700;
}
.pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.07); }
.pill.active{
  background: linear-gradient(90deg, rgba(255,191,47,.18), rgba(53,183,255,.12));
  border-color: rgba(255,191,47,.35);
}

/* Discord panel */
.discordCard{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 14px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(88,101,242,.25), rgba(88,101,242,.10));
  border:1px solid rgba(88,101,242,.45);
  box-shadow: 0 0 26px rgba(88,101,242,.22);
  transition: all .18s ease;
  text-decoration:none;
  color:#fff;
  min-width: 270px;
}
.discordCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(88,101,242,.40);
}
.dcIcon{
  font-size:20px;
  background: rgba(255,255,255,.15);
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
}
.dcText{display:flex; flex-direction:column}
.dcTitle{font-weight:1000; font-size:14px; letter-spacing:.2px}
.dcSub{font-size:12px; color: rgba(255,255,255,.75); margin-top:2px}
.dcArrow{margin-left:auto; font-size:18px; opacity:.85}

/* Hero */
.hero{padding:10px 0 6px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  .discordCard{min-width:unset; width:100%}
}
.hero h1{
  margin:6px 0 8px;
  font-size:30px;
  letter-spacing:.3px;
}
.heroSub{margin:0; color:rgba(231,238,248,.78); font-weight:650; line-height:1.35}
.heroChips{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(231,238,248,.90);
  font-weight:800;
  font-size:12px;
}
.heroCard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:14px;
}
.hcTop{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.hcTitle{font-weight:1000}
.hcHint{color:rgba(231,238,248,.65); font-weight:800; font-size:12px}
.hcRow{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
  margin-top:10px;
}
.hcLabel{color:rgba(231,238,248,.72); font-weight:900}
.hcLink{font-weight:900; color: rgba(255,191,47,.95); text-align:right}

/* Layout */
main{ padding:10px 0 40px; }
.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
}
@media (max-width: 920px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardHd{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:space-between;
  background: rgba(0,0,0,.14);
}
.cardHd h2{ margin:0; font-size:16px; letter-spacing:.3px; }
.badge{
  padding:6px 10px;
  border-radius:999px;
  background: rgba(51,209,122,.12);
  border:1px solid rgba(51,209,122,.25);
  color: #c9ffe2;
  font-size:12px;
  font-weight:900;
}
.badgeAlt{
  background:rgba(255,191,47,.10);
  border-color:rgba(255,191,47,.28);
  color:#ffe8b2;
}
.badgeWarn{
  background: rgba(255,107,107,.10);
  border-color: rgba(255,107,107,.26);
  color: rgba(255,200,200,.95);
}
.content{ padding:16px; }

/* Servers */
.servers{ display:grid; gap:12px; }
.srv{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.srvLeft{ display:flex; align-items:center; gap:12px; min-width:0; }
.mode{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:1000;
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), rgba(0,0,0,.25));
  flex:0 0 auto;
}
.mode.public{ box-shadow: 0 0 0 1px rgba(255,191,47,.18) inset; color:var(--accent); }
.mode.csdm{ box-shadow: 0 0 0 1px rgba(53,183,255,.20) inset; color:var(--accent2); }
.mode.gg{ box-shadow: 0 0 0 1px rgba(255,160,80,.20) inset; color:#ffa050; }

.srvMeta{ min-width:0; }
.srvTitle{ font-weight:1000; letter-spacing:.4px; margin:0; }
.srvSub{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.muted{ color: var(--muted); }

.live{ font-weight:1000; }
.live.on{ color: var(--good); }
.live.off{ color: var(--bad); }

.srvActions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.btn{
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-weight:900;
  cursor:pointer;
  transition:.12s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.btn.primary{
  background: linear-gradient(90deg, rgba(255,191,47,.22), rgba(255,191,47,.10));
  border-color: rgba(255,191,47,.35);
}
.btn.copy{
  background: linear-gradient(90deg, rgba(53,183,255,.18), rgba(53,183,255,.08));
  border-color: rgba(53,183,255,.32);
}
.btn.gt{
  background: linear-gradient(90deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border-color: rgba(255,255,255,.14);
}

.ipLink{
  cursor:pointer;
  color: rgba(231,238,248,.92);
  font-weight:900;
  border-bottom:1px dashed rgba(255,255,255,.22);
}
.ipLink:hover{ color:#fff; border-bottom-color: rgba(255,255,255,.35); }

/* Right side */
.list{ display:grid; gap:10px; }
.item{
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}
.item h3{margin:0 0 6px; font-size:14px}
.item p{margin:0; color:var(--muted); font-size:13px; line-height:1.35}
.small{ font-size:12px; color:var(--muted); margin-top:10px; }

.pillLink{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-weight:900;
}
.pillLink:hover{ background: rgba(255,255,255,.07); }

footer{
  padding:18px 0 34px;
  color: rgba(231,238,248,.68);
  border-top:1px solid rgba(255,255,255,.06);
  text-align:center;
}
