/* ============================================
   BASE STYLES & RESET
   Reset, Typography, Colors, Utilities
   ============================================ */

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

html, body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Subtle glow effect */
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(255,255,255,0.01) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  line-height: 1;
}

p {
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.opacity-half {
  opacity: 0.5;
}

.opacity-light {
  opacity: 0.7;
}

.opacity-extra-light {
  opacity: 0.4;
}

/* Animation: Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1.2s ease-out;
}
