* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
}

body {
  font-family: "Inter", sans-serif;
  /* Complete background redesign with rich deep navy and warm accents */
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #2d3748 50%, #1a2332 75%, #0f1419 100%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Sophisticated warm lighting with coral, gold, and teal accents */
  background: radial-gradient(circle at 20% 30%, rgba(255, 127, 80, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(72, 209, 204, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(255, 182, 193, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

/* Removed stars background for cleaner look */

main {
  position: relative;
  z-index: 1;
}



h1,
h2,
h3 {
  /* Updated gradient with warm coral and gold tones */
  background: linear-gradient(135deg, #ff7f50, #ffd700, #48d1cc, #ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2em;
}




