html {
  font-size: 16px;
}

body {
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: 'IBM Plex Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* Force minimum font size for ALL elements */
* {
  min-height: 0;
  min-width: 0;
}

/* Target small text classes specifically */
.text-xs, 
[class*="text-[9px]"],
[class*="text-[10px]"],
[class*="text-[11px]"] {
  font-size: 1rem !important; /* Minimum 1rem as requested */
}

.cyber-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cyber-copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b; /* slate-500 */
  transition: color 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-link:hover {
  color: #22d3ee; /* cyber-accent */
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem !important;
  font-weight: 600;
}

.nav-link {
  color: #94a3b8; /* slate-400 */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.nav-link:hover {
  color: #22d3ee; /* cyber-accent */
}

.nav-link-active {
  color: #22d3ee; /* cyber-accent */
  border-bottom: 2px solid #22d3ee;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.glass {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.neon-text {
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.8), 0 0 20px rgba(34, 211, 238, 0.4);
}

.cyber-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(34, 211, 238, 0.1);
  transition: all 0.3s ease;
}

.cyber-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
  transform: translateY(-2px);
}

.post-card {
  background: rgba(15, 23, 42, 0.4);
  border-left: 2px solid rgba(34, 211, 238, 0.2);
  transition: all 0.3s ease;
}

.post-card:hover {
  border-left-color: rgba(34, 211, 238, 1);
  background: rgba(15, 23, 42, 0.6);
}

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

.animate-pulse-cyan {
  animation: pulse-cyan 3s infinite;
}

.hero-visual-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  z-index: -1;
  overflow: hidden;
  background-color: #020617;
}

.hero-visual-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  filter: grayscale(10%) contrast(115%) brightness(90%);
}

.hero-visual-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(34, 211, 238, 0.1), transparent 60%),
    linear-gradient(to bottom, transparent 20%, #020617 95%),
    linear-gradient(to right, #020617 0%, transparent 15%, transparent 85%, #020617 100%);
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(34, 211, 238, 0.02) 50%);
  background-size: 100% 4px;
  pointer-events: none;
}
