html, body {
    margin: 0;
    padding: 0;
    height: 200vh;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #000814, #001d3d, #003566);
    color: white;
    font-family: 'Arial', sans-serif;
  }
  
  .stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  
  .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
  }
  
  .content {
    position: relative;
    min-height: 200vh; /* allow scroll */
    padding: 100px 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    z-index: 10; /* Higher z-index to be above canvas */
  }

  .content h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffd700; /* Fallback color */
  }

  .content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #b8b8b8;
    opacity: 1; /* Make sure it's visible */
    transform: translateY(0); /* Reset transform */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  a.back-home {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000814;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(255, 107, 53, 0.4);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    z-index: 1000;
  }

  a.back-home:hover {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #fff;
    transform: scale(1.05);
  }

  @keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  
  canvas {
    display: block;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5; /* Below content but above stars */
    pointer-events: none; /* Allow clicks to pass through */
  }
