hhtml, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000 !important; /* FULL black, no grid unless you uncomment below */
  color: #d8ffdd;
  font-family: 'JetBrains Mono', 'Orbitron', 'Fira Mono', 'Consolas', monospace;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 15px;
  position: relative;
}
/* 
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(57,255,20,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(57,255,20,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
*/

#matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

body, #main-content, main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #131313;
  border-radius: 0;
  border-bottom: 1.2px solid #39ff14;
  box-shadow: 0 1px 10px 0 #39ff1422;
  z-index: 10;
  position: relative;
  width: 100vw;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1.4em;
  padding: 0.7em 0;
}

.nav-btn, .special-btn {
  color: #c2ffd6;
  background: none;
  border: none;
  font-size: 1.13em;
  padding: 0.32em 1.15em;
  border-radius: 6px;
  transition: all 0.13s cubic-bezier(.79,0,.07,1.02);
  text-decoration: none;
  font-weight: 700;
  box-shadow: none;
  outline: none;
  position: relative;
  letter-spacing: .02em;
  cursor: pointer;
}
.nav-btn:hover, .special-btn:hover {
  color: #39ff14;
  background: #181818;
  transform: scale(1.09);
}
.special-btn {
  color: #e1ff14 !important;
  font-weight: bold;
}

main {
  flex: 1 0 auto;
  width: 97vw;
  max-width: 900px;
  margin: 1.3em auto 1em auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.content-box {
  background: rgba(18, 20, 22, 0.97);
  border: 1.5px solid #39ff14;
  border-radius: 7px;
  margin-bottom: 0.8em;
  padding: 0.8em 1em;
  box-shadow: 0 0 10px 1.5px #39ff1480;
  transition: transform 0.12s cubic-bezier(.79,0,.07,1.02), box-shadow 0.13s;
}

.pop-hover:hover, .pop-hover:focus-within {
  transform: scale(1.017);
  box-shadow: 0 0 22px 5px #39ff14bb, 0 0 4px 2px #fff;
  z-index: 2;
}

img, video {
  border-radius: 4px;
  box-shadow: 0 0 4px 0 #39ff1440;
  max-width: 100%;
  margin: 0.3em 0;
  display: block;
}

/* Video on home page is a bit smaller */
.home-video {
  width: 82%;
  max-width: 430px;
  margin: 0.3em auto;
  display: block;
}

.socials {
  display: flex;
  gap: 0.6em;
  flex-wrap: wrap;
  margin: 0.4em 0 0.2em 0;
}
.social-btn {
  background: none;
  color: #39ff14;
  font-weight: 600;
  border: 1px solid #39ff14;
  border-radius: 3px;
  padding: 0.27em 0.7em;
  text-decoration: none;
  font-size: 0.97em;
  transition: all 0.13s;
  box-shadow: 0 0 3px #39ff1470;
  margin-bottom: 0.2em;
  display: inline-block;
}
.social-btn:hover {
  background: #112412;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 7px #39ff14, 0 0 1.2px #fff;
}

.donate {
  margin-top: 0.4em;
  color: #39ff14;
  font-size: 0.97em;
  word-break: break-all;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', 'JetBrains Mono', Arial, monospace;
  letter-spacing: 0.04em;
  color: #39ff14;
  text-shadow: 0 2px 0 #000, 0 0px 12px #39ff1480;
}
h1 {
  font-size: 1.5em;
  margin-bottom: 0.2em;
}
h2 {
  font-size: 1.15em;
  margin-bottom: 0.14em;
}

footer {
  border-top: 1.2px solid #39ff14;
  border-bottom: none;
  text-align: center;
  padding: 0.4em 0;
  font-size: 1em;
  color: #39ff14;
  margin-top: auto;
  width: 100vw;
  position: relative;
  bottom: 0;
}

@media (max-width: 600px) {
  main { width: 99vw; padding: 0 2vw; }
  .content-box { padding: 1em 0.7em; }
  nav { gap: 0.3em; }
}
