/* DeadNet — Landing Page Styles */

/* ── Hero background: diagonal stripe on black + scanline overlay ── */
.hero-bg {
  position: relative;
  background-color: #0a0a0a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 8px,
    rgba(0, 188, 212, 0.12) 8px,
    rgba(0, 188, 212, 0.12) 9px
  );
}

/* ── Hero title glow ── */
.hero-title {
  display: inline;
}

/* Glow on the DEAD text (white + cyan halo) */
.hero-glow-white {
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.25),
    0 0 70px rgba(0, 188, 212, 0.15);
}

/* Glow on the NET text (red) */
.hero-glow-red {
  text-shadow:
    0 0 30px rgba(232, 28, 10, 0.35),
    0 0 70px rgba(232, 28, 10, 0.15);
}

/* ── Status badge pulse ── */
.status-pulse {
  animation: status-text-pulse 2.5s ease-in-out infinite;
}

@keyframes status-text-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── Code blocks ── */
.code-block {
  background: #07191B;
  border: 2px solid #07191B;
  overflow: hidden;
}

.code-header {
  padding: 4px 12px;
  background: #1a1a1a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
  border-bottom: 1px solid #333;
}

.code-body {
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: #e0e0e0;
  overflow-x: auto;
  white-space: pre;
  margin: 0;
}

/* ── Fade-in scroll animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile nav ── */
.mobile-nav.open {
  display: block;
}
