/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body, html {
    height: 100%;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    background-color: #0e0e11;
    position: relative;
  }
  
  /* Background loop */
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 20px
    );
    animation: scrollBG 45s linear infinite;
    z-index: -1;
    opacity: 0.15;
  }
  
  @keyframes scrollBG {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }
  
  /* Top logo */
  .logo {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #b792ff;
    opacity: 0.6;
  }
  
  /* Bottom shimmer icon */
  .shimmer-m {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
  }
  
  /* Content layout */
  .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }
  
  h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    color: #b792ff;
    text-shadow: 0 0 24px #b792ff40;
  }
  
  .subheading {
    margin-top: 20px;
    font-size: 1.25rem;
    color: #aaa;
    max-width: 90%;
  }
  
  .cta {
    margin-top: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    color: #fff;
    background: rgba(183, 146, 255, 0.1);
    border: 1px solid #b792ff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .cta:hover {
    background: #b792ff;
    color: #000;
    box-shadow: 0 0 12px #b792ff88;
  }