/* Base Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0a0f2c;
    overflow: hidden;
  }
  
  /* Hero layout */
  .hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically center the content */
    background-color: #0a0f2c;
  }
  
  /* Canvas rain layer */
  canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  /* Central content */
  .content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    transform: translateY(10px); /* subtle offset to tuck under arc */
  }
  
  /* Rainvow title */
  h1 {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
    background: linear-gradient(to right, #ffffff, #8fa3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(255, 255, 255, 0.2));
  }
  
  /* Slogan */
  p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
  
  /* Button */
  button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    background: rgba(143, 163, 255, 0.15);
    color: white;
    border: 1px solid rgba(143, 163, 255, 0.4);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  button:hover {
    background: rgba(143, 163, 255, 0.25);
    box-shadow: 0 0 10px rgba(143, 163, 255, 0.4);
  }