/* Merged theme:
   - Layout/structure from Template 1
   - Colors/header/logo vibe from Template 2 screenshot (GameSpy 2000/2001)
*/

:root{
  /* base */
  --font-ui: Verdana, Arial, Helvetica, sans-serif;
  --bg-page: #0a1b0a;

  /* neon/greens */
  --gs-neon: #00ff00;
  --gs-neon-dk: #00c800;

  /* dark shells */
  --shell-left: #1c3b1c;
  --shell-right: #2a2a2a;
  --panel-dark: #2a2a2a;

  /* light center */
  --center-bg: #ffffff;
  --center-border: #9d9d9d;
  --bar-grey: #cfcfcf;
  --bar-grey2: #d9d9d9;

  --text-dark: #111;
  --text-muted: #666;
  --text-light: #fff;

  /* header gradient + scanlines (from your screenshot request) */
  --gs-hdr-top:  #0f2b0f;
  --gs-hdr-mid1: #155215;
  --gs-hdr-mid2: #00b400;
  --gs-hdr-mid3: #0ea90e;
  --gs-hdr-bot:  #0c250c;

  --gs-scan-dark: rgba(0,0,0,0.16);
  --gs-scan-lite: rgba(255,255,255,0.03);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-ui);
  font-size:13px;
  line-height:1.35;
  background: var(--bg-page);
  color: var(--text-light);
}

a{ color: var(--gs-neon); text-decoration:none; }
a:hover{ text-decoration:underline; }
.sep{ color: rgba(255,255,255,0.6); margin:0 4px; }

.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  position:static; width:auto; height:auto;
  padding:6px 8px;
  background:#000;
  border:1px solid var(--gs-neon);
  display:inline-block;
}

.page{
  width: 1000px; /* template1 layout */
  margin: 0 auto;
  padding: 6px 0 16px;
}

/* ----- topbar + header (template2 vibe) ----- */
.topbar{
  background:#000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.topbar-inner{
  width: 1000px;
  margin: 0 auto;
  padding: 4px 6px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.network{ color: var(--gs-neon); font-weight: bold; letter-spacing:0.2px; }

.toplinks{ display:flex; align-items:center; gap:6px; }
.toplinks a{ color:#fff; font-weight:bold; }
.toplinks a:hover{ color: #d9ffd9; }
.toplinks .sep{ color: rgba(255,255,255,0.55); margin:0 2px; }

/* green stripe */
.gs-header-gradient{
  background:
    repeating-linear-gradient(
      to bottom,
      var(--gs-scan-dark) 0px,
      var(--gs-scan-dark) 1px,
      var(--gs-scan-lite) 1px,
      var(--gs-scan-lite) 2px
    ),
    linear-gradient(
      to bottom,
      var(--gs-hdr-top) 0%,
      var(--gs-hdr-mid1) 24%,
      var(--gs-hdr-mid2) 48%,
      var(--gs-hdr-mid3) 62%,
      var(--gs-hdr-bot) 100%
    );
}

.header{
  width: 1000px;
  margin: 0 auto;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(0,0,0,0.10)),
    #6b6b6b;
  border-top: 2px solid var(--gs-neon);
  border-bottom: 1px solid rgba(0,0,0,0.55);
  overflow:hidden;
}
.header .banner{ height: 70px; } /* slightly shorter for 780px layout */
.header .header-inner{
  padding: 10px 12px 8px;
  margin-top: -70px; /* pull logo onto banner */
  position: relative;
}

.logo{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.45);
  line-height: 1;
}
.gs-green{ color: var(--gs-neon); }
.gs-white{ color: #fff; }
.gs-dot{ color: #d0d0d0; font-size: 28px; padding-left: 2px; }

.tagline{
  color: #e0ffe0;
  font-size: 11px;
  font-weight: bold;
  margin-top: 2px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}

/* ----- 3-column frame (template1 structure) ----- */
.frame{
  display:grid;
  grid-template-columns: 170px 1fr 180px;
  gap: 6px;
  margin-top: 6px;
}

/* side columns */
.left{
  background: var(--shell-left);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px;
}
.right{
  background: var(--shell-right);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px;
}

.panel{
  border: 1px solid rgba(0,0,0,0.65);
  background: rgba(0,0,0,0.18);
}
.panel-green{
  border-color: rgba(0,0,0,0.65);
  background: rgba(0,0,0,0.18);
}
.panel-title{
  padding: 6px 8px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--gs-neon);
  font-weight: bold;
  text-transform: lowercase;
}
.mini{ padding: 8px; color:#fff; }
.muted{ color: rgba(255,255,255,0.75); }

.badge{
  display:inline-block;
  padding: 2px 6px;
  border: 1px solid rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.35);
  color: var(--gs-neon);
  font-weight:bold;
  margin-bottom:6px;
}

/* nav */
.nav{ padding: 6px; display:flex; flex-direction:column; gap:6px; }
.nav-section{
  width:100%;
  border: 1px solid rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.35);
  color: var(--gs-neon);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: bold;
  padding: 5px 6px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-transform: lowercase;
}
.nav-section:hover{ filter: brightness(1.12); }

.nav-items{
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
  padding: 6px 6px 4px;
  display:flex;
  flex-direction:column;
  gap: 4px;
}
.nav-items a{
  color:#fff;
  padding: 1px 2px;
  display:block;
}
.nav-items a:hover{
  background: rgba(0,255,0,0.12);
  border: 1px solid rgba(0,255,0,0.18);
  margin: -1px;
}
.chev{ color: #d9ffd9; }

/* ----- center column ----- */
.center{
  border: 1px solid var(--center-border);
  background: var(--center-bg);
  color: var(--text-dark);
}
.center a{ color: #006600; }
.center a:hover{ color: #003f00; }

/* lead */
.lead{
  border-bottom: 1px solid #b0b0b0;
  background: var(--bar-grey2);
}
.lead-kicker{
  background: var(--bar-grey);
  border-bottom: 1px solid #a7a7a7;
  padding: 6px 8px;
  font-weight:bold;
}
.lead-body{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  padding: 10px;
}
.lead-art{
  width:220px;
  height:140px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.18), rgba(0,0,0,0.02)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.10), rgba(0,0,0,0.10) 2px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 4px);
  border: 1px solid #8c8c8c;
}
.lead-text h1{ margin:0 0 6px; font-size: 14px; color:#003300; }
.lead-text p{ margin:0 0 8px; }
.lead-links{ font-weight:bold; }

/* cards/grid */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}
.card{
  border: 1px solid #9d9d9d;
  background: #ededed;
}
.card-title{
  padding: 5px 6px;
  background: var(--bar-grey);
  border-bottom: 1px solid #a9a9a9;
  font-weight:bold;
  text-transform: lowercase;
  color:#003300;
}
.card-body{ padding: 8px; }

.bullets{ margin:0; padding-left: 16px; }
.bullets li{ margin: 0 0 4px; }

.poll{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-top:6px;
}
.poll label{ display:flex; gap:6px; align-items:center; }

.btn{
  border: 1px solid rgba(0,0,0,0.7);
  background: linear-gradient(to bottom, #1e1e1e, #0f0f0f);
  color: var(--gs-neon);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  cursor:pointer;
  width:max-content;
}
.btn:hover{ filter: brightness(1.12); }

.spot{
  display:flex;
  gap:8px;
  align-items:flex-start;
  margin-bottom:8px;
}
.thumb{
  width:44px;
  height:34px;
  border:1px solid #9d9d9d;
  background: linear-gradient(135deg, rgba(0,0,0,0.12), rgba(0,0,0,0.02));
}

.foot{
  border-top: 1px solid #b0b0b0;
  background: var(--bar-grey2);
  padding: 8px 10px;
}

/* right column bits */
.right .ad{ padding: 8px; display:flex; flex-direction:column; gap:6px; color:#fff; }
.adbox{
  width: 100%;
  height: 140px;
  border: 1px dashed rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:bold;
}
.right .row{ display:flex; gap:6px; align-items:center; margin-bottom:4px; color:#fff; }
.dot{
  width:6px; height:6px;
  background: var(--gs-neon);
  border: 1px solid rgba(0,0,0,0.35);
  display:inline-block;
}
.search{
  padding: 8px;
  display:flex;
  gap:6px;
}
.search input{
  flex:1;
  font-family: var(--font-ui);
  font-size: 8px;
  padding: 3px 4px;
  border: 1px solid #6f6f6f;
  background: #f7f7f7;
}
