(@)font-face {

font-family: "Bank Gothic";

src: url('https://wdlnyowarfare.neocities.org/fonts/BankGothic Md BT.ttf') format("truetype");

}

body {

font-family: 'Bank Gothic', sans-serif;

}

* {
  box-sizing: border-box;
}

:root {
  --bg-black: #040404;
  --bg-deep: #0b0c0c;
  --bg-panel: rgba(20, 22, 21, 0.88);
  --bg-panel-2: rgba(34, 37, 35, 0.78);
  --line-dark: rgba(255, 255, 255, 0.06);
  --line-mid: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(255, 255, 255, 0.18);
  --text-main: #e7e7df;
  --text-dim: #c3c3bc;
  --text-faint: #7a7a76;
  --accent-main: #d6d6d6;
  --accent-soft: #f3f3f3;
  --shadow-deep: 0 12px 30px rgba(0, 0, 0, 0.5);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
}

body {
  font-family: "Bank Gothic", sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(rgba(8, 9, 9, 0.72), rgba(8, 9, 9, 0.86)),
    url("assets/mainbackground.jpg") center center / cover no-repeat fixed;
  position: relative;
  overflow-x: hidden;
}

/* smoky film layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), transparent 45%),
    linear-gradient(to right, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 50%, rgba(0,0,0,0.08) 100%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* scanlines + subtle grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.028) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background:#000000;
  border-left: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    inset 0 0 120px rgba(255,255,255,0.015),
    0 0 40px rgba(0,0,0,0.45);
}

/* header */
.site-header {
  position: relative;
  padding: 0 px;
  background: #000000 !important;
  border-bottom: 1px solid #222;
  z-index: 10;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background-color: #000000;
}

.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 8px;
  position: relative;
}

.logo-wrap img {
  height: 90px;
  width: auto;
  filter:
    grayscale(20%)
    drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

/* navbar */
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 55%, #000000 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.95),
    0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.nav-btn {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 10px 11px;
  font-family: "Bank Gothic", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8d8d1;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(0,0,0,0.45);
  background: linear-gradient(to bottom, #111111 0%, #080808 100%);
  text-shadow: 0 1px 1px rgba(0,0,0,0.75);
  position: relative;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-btn:first-child {
  border-left: none;
}

.nav-btn:last-child {
  border-right: none;
}

.nav-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: transparent;
}

.nav-btn:hover {
  color: #ffffff;
  background: linear-gradient(to bottom, #1b1b1b 0%, #0b0b0b 100%);
}

.nav-btn:hover::after {
  background: rgba(255,255,255,0.45);
}

.nav-btn.active {
  color: #f4f4ef;
  background: linear-gradient(to bottom, #202020 0%, #0a0a0a 100%);
}

.nav-btn.active::after {
  background: #d6d6d6;
  box-shadow: 0 0 6px rgba(255,255,255,0.18);
}

/* footer */
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(to bottom, rgba(12,13,13,0.96), rgba(5,5,5,1));
  padding: 14px 18px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.footer-links {
  font-family: "Bank Gothic", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer-links a {
  color: #b5b5af;
  margin: 0 6px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.68rem;
  color: #666962;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* utility classes you can reuse */
.mw-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(to right, rgba(255,255,255,0.025), transparent 18%),
    linear-gradient(to bottom, rgba(38,41,39,0.84), rgba(15,16,16,0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 0 40px rgba(255,255,255,0.015),
    var(--shadow-deep);
}

.mw-title {
  font-family: "Teko", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.mw-small-label {
  font-family: "Teko", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfcfcf;
}

@media (max-width: 800px) {
  .site-shell {
    width: 100%;
    border-left: none;
    border-right: none;
  }

  .navbar {
    flex-direction: column;
  }

  .nav-btn {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-btn:last-child {
    border-bottom: none;
  }

  .logo-wrap img {
    height: 72px;
  }
}