* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
    overflow: hidden;
    background-color: #121212;
  }
  
  #p5-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
  }
  
  header {
    padding-top: 2vh;
  }
  
  h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }
  
  h2 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1.5rem;
  }
  
  p {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    max-width: 650px;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 300;
  }
  
  .main-content {
    max-width: 800px;
  }
  
  .beta-access {
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: inline-block;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }
  
  .beta-access:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  a:hover {
    opacity: 0.8;
  }
  
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2vh;
  }
  
  .social-links a {
    margin-left: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
  }
  
  .social-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
  }
  
  .social-links a:hover::after {
    width: 100%;
  }
  
  .demo-link {
    opacity: 0.6;
    font-size: 0.9rem;
    position: relative;
  }
  
  .demo-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
  }
  
  .demo-link:hover {
    opacity: 1;
  }
  
  .demo-link:hover::after {
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .content {
      padding: 1.5rem;
    }
    
    footer {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .social-links {
      margin-top: 1rem;
    }
    
    .social-links a {
      margin-left: 0;
      margin-right: 1.5rem;
    }
  }