/* GABBYNET 1999 CYBERCORE CSS */

:root{
  --bg:#05010a;
  --panel:#0e0b1a;
  --border:#7b2cff;
  --border2:#00fff7;
  --text:#e9ddff;
  --link:#00fff7;
  --hot:#ff3cff;
  --shadow: rgba(0,0,0,.6);
}

html, body{
  height:100%;
}

body{
  margin:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,60,255,.15), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(0,255,247,.12), transparent 50%),
    linear-gradient(180deg, #020008 0%, #060112 60%, #020008 100%);
  color: var(--text);
  font-family: "Verdana", "Tahoma", "MS Sans Serif", sans-serif;
  letter-spacing: 0.2px;
}

a{ color: var(--link); text-decoration: none; }
a:hover{ color: var(--hot); text-decoration: underline; }

.marquee{
  width: 92%;
  margin: 10px auto 12px;
  padding: 6px 10px;
  background: rgba(0,0,0,.55);
  border: 2px solid var(--border2);
  box-shadow: 0 0 20px rgba(0,255,247,.15);
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255,60,255,.35);
}

.frame{
  width: 92%;
  max-width: 1100px;
  border: 3px solid var(--border);
  box-shadow: 0 20px 60px var(--shadow);
  background: rgba(0,0,0,.35);
}

.titlebar{
  padding: 8px 10px;
  background: linear-gradient(90deg, rgba(123,44,255,.9), rgba(0,255,247,.55));
  color: #000;
  font-weight: bold;
  font-size: 14px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  text-shadow: none;
}

.windowbtns{
  font-family: "Courier New", monospace;
  background: rgba(0,0,0,.2);
  padding: 2px 6px;
  border: 1px solid rgba(0,0,0,.35);
}

.inner{
  padding: 10px;
}

.layout{
  width: 100%;
}

.sidebar{
  width: 22%;
  vertical-align: top;
}

.main{
  width: 56%;
  vertical-align: top;
}

.box{
  border: 2px solid var(--border2);
  background: rgba(14,11,26,.72);
  box-shadow: 0 0 18px rgba(0,255,247,.08);
  margin-bottom: 10px;
}

.boxtitle{
  padding: 6px 8px;
  font-weight: bold;
  background: rgba(123,44,255,.35);
  border-bottom: 1px solid rgba(0,255,247,.35);
  text-shadow: 0 0 10px rgba(255,60,255,.25);
}

.boxinner{
  padding: 10px;
  font-size: 13px;
  line-height: 1.35;
}

hr{
  border: none;
  border-top: 1px dashed rgba(0,255,247,.5);
  margin: 12px 0;
}

.badges img{
  margin: 4px 6px 0 0;
  vertical-align: middle;
}

.footer{
  margin-top: 6px;
}

.tiny{
  font-size: 11px;
  opacity: .9;
}

/* Subtle CRT scanlines overlay */
.scanlines{
  pointer-events:none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.035),
    rgba(255,255,255,.035) 1px,
    rgba(0,0,0,0) 3px,
    rgba(0,0,0,0) 6px
  );
  mix-blend-mode: overlay;
  opacity: .35;
}
