/* ========== DEADSQUAD — CLEAN + RED ACCENTS ========== */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --red: #c1121f;
  --red-bright: #e63946;
  --red-glow: rgba(193, 18, 31, 0.25);
  --white: #eaeaea;
  --gray: #777;
  --gray-dark: #222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  image-rendering: pixelated;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Press Start 2P', monospace;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: #fff;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes dripDown {
  0% { height: 0; }
  100% { height: var(--h); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--red);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 11px;
  color: var(--red-bright);
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 7px;
  letter-spacing: 2px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-bright);
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 120px 20px 48px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: clamp(18px, 4vw, 32px);
  color: var(--white);
  letter-spacing: 6px;
}

.page-header p {
  font-size: 7px;
  color: var(--gray);
  letter-spacing: 3px;
  margin-top: 10px;
}

/* ========== SECTION ========== */
.section {
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 8px;
  color: var(--red);
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  text-decoration: none;
  padding: 12px 28px;
  letter-spacing: 2px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.btn-red {
  color: #fff;
  background: var(--red);
}

.btn-red:hover {
  background: var(--red-bright);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--gray-dark);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--gray-dark);
  font-size: 6px;
  color: var(--red);
  letter-spacing: 2px;
}

/* ========== BLOOD DRIP (decorative) ========== */
  .drip-bar {
    width: min(300px, 60%);
    height: 3px;
    background: var(--red);
    margin: 0 auto 16px;
  }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  nav { padding: 12px 16px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 6px; }
}
