:root {
  --neon-yellow: #ffd400;
  --deep-black: #070707;
  --grid-yellow: rgba(255, 212, 0, 0.28);
  --panel-bg: #111;
  --panel-border: #f5cf32;
  --text-main: #f4f4f4;
  --text-hot: #ff4e00;
  --link-blue: #00eaff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Verdana", "Trebuchet MS", sans-serif;
  background:
    linear-gradient(90deg, transparent 49%, var(--grid-yellow) 50%, transparent 51%) 0 0 / 42px 42px,
    linear-gradient(0deg, transparent 49%, var(--grid-yellow) 50%, transparent 51%) 0 0 / 42px 42px,
    radial-gradient(circle at 15% 20%, #222 0%, var(--deep-black) 60%);
  min-height: 100vh;
}

.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 40% 75%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 70% 35%, #fff 0 1px, transparent 2px);
  background-size: 240px 240px;
  animation: drift 18s linear infinite;
  opacity: 0.55;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(240px); }
}

.wrapper {
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 18px 0 34px;
  position: relative;
  z-index: 2;
}

.top-counter {
  text-align: right;
  font-size: 0.76rem;
  color: #ffde59;
  letter-spacing: 1px;
  text-shadow: 0 0 7px #ffde59;
  margin-bottom: 8px;
}

.banner {
  border: 4px ridge var(--panel-border);
  background: linear-gradient(125deg, #0d0d0d, #202020 40%, #0d0d0d 80%);
  text-align: center;
  padding: 16px 14px 20px;
  box-shadow: 0 0 20px rgba(255, 212, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.banner::before,
.banner::after {
  content: "✦";
  position: absolute;
  top: 10px;
  font-size: 1.25rem;
  color: var(--link-blue);
  text-shadow: 0 0 8px var(--link-blue);
  animation: blink 1.2s steps(1) infinite;
}

.banner::before { left: 12px; }
.banner::after { right: 12px; animation-delay: 0.6s; }

@keyframes blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0.25; }
}

.logo {
  margin: 0;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 3px;
  color: var(--neon-yellow);
  text-transform: uppercase;
  text-shadow:
    0 0 2px #fff,
    0 0 12px rgba(255, 212, 0, 0.7),
    2px 2px 0 #000;
}

.tagline {
  margin: 4px 0 0;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: #efefef;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee {
  border: 3px groove #d5d5d5;
  background: #000;
  margin-top: 12px;
  padding: 6px;
  color: var(--text-hot);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 14px;
  margin-top: 14px;
}

.panel {
  border: 3px outset #fff3;
  background: var(--panel-bg);
  box-shadow: inset 0 0 0 2px #000;
}

.panel-title {
  margin: 0;
  padding: 8px 10px;
  font-size: 0.84rem;
  background: linear-gradient(90deg, #3a3000, #796300, #3a3000);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #000;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 10px;
}

.nav-list li + li { margin-top: 8px; }

.nav-list a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  text-shadow: 0 0 7px rgba(0, 234, 255, 0.45);
}

.nav-list a.active,
.nav-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.button-90s {
  width: 100%;
  border: 2px outset #ffc;
  background: linear-gradient(180deg, #ffe46e, #d39d00);
  color: #111;
  font-weight: 800;
  padding: 8px;
  margin-top: 10px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.78rem;
}

.button-90s:active { border-style: inset; }

.hero {
  padding: 12px;
  display: grid;
  gap: 12px;
}

.hero-box {
  border: 2px dashed #f6cf31;
  background: linear-gradient(135deg, #111, #080808);
  padding: 14px;
}

.hero h2 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: #ffde59;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.96rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-card {
  border: 2px ridge #999;
  background: #000;
  min-height: 108px;
  padding: 10px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 6px;
}

.quick-card b {
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quick-card span {
  color: #ffcb2c;
  font-size: 0.86rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  border: 1px solid #6e6e6e;
  padding: 8px;
  text-align: left;
}

.data-table th {
  background: #221d00;
  color: #ffe37b;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.data-table tr:nth-child(even) td {
  background: #101010;
}

.member-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 10px;
}

.member-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-card,
.gallery-card,
.contact-card {
  border: 2px ridge #8d8d8d;
  background: #090909;
  padding: 12px;
}

.member-card h3,
.gallery-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  color: #ffd84f;
  font-size: 1rem;
  text-transform: uppercase;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  border-left: 3px solid #f5cf32;
  padding: 0 0 14px 14px;
  margin-left: 8px;
}

.timeline b {
  color: #ffe37b;
}

.gallery-card p,
.member-card p,
.contact-card p {
  margin: 0;
}

.photo-box {
  height: 120px;
  border: 2px dashed #8b8b8b;
  background: repeating-linear-gradient(
    45deg,
    #161616,
    #161616 8px,
    #0d0d0d 8px,
    #0d0d0d 16px
  );
  display: grid;
  place-items: center;
  color: #ddd;
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

label {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: #ffe37b;
}

input,
textarea {
  border: 2px inset #888;
  background: #fffde8;
  color: #111;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 7px;
}

textarea {
  min-height: 115px;
  resize: vertical;
}

.footer {
  margin-top: 14px;
  border: 3px ridge #aaa;
  background: #0e0e0e;
  text-align: center;
  padding: 9px;
  font-size: 0.79rem;
  color: #ddd;
  letter-spacing: 0.7px;
}

.footer a {
  color: var(--link-blue);
  text-decoration: none;
}

@media (max-width: 900px) {
  .layout,
  .member-grid,
  .contact-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .top-counter {
    text-align: center;
  }
}
