/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0b0b0f;
    color: #ffffffcc;
    font-family: 'Unbounded', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  
  /* Ethereal glow */
  .glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7f5cff 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
  }
  
  /* Core layout */
  main {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  
  .logo {
    font-size: 4rem;
    color: #d6ccff;
    letter-spacing: 0.05em;
  }
  
  .tagline {
    margin-top: 1rem;
    font-size: 1.2rem;
    opacity: 0.7;
  }