html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1117 100%);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#main-content {
  display: none;
  position: relative;
  padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 5vw, 3rem);
  max-width: 1200px;
  margin: auto;
  animation: contentGlow 3s ease-in-out infinite alternate;
}

@keyframes contentGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.05); }
}

h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h2::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0096ff, transparent);
}

p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #a8b2c7;
  max-width: 70ch;
  margin: 0 auto 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #main-content {
    padding: 2rem 1.5rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}