html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    background: #1c150f;
}


#lava {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;

   
    filter: blur(35px) brightness(1.05) saturate(1.1);
}

body::after {
    font-family: "skippy-sharp", sans-serif;
    font-weight: 400;
    font-style: normal;
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    pointer-events: none;
    z-index: 1;
}

h1 {
    position: absolute;
    top: 12%;
    left: 6%;
    z-index: 10;

    font-family: "highest-praise", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: clamp(4rem, 13vw, 10rem);
    color: white;
    line-height: 0.9;

    opacity: 0;
    animation: fadeInText 2s ease forwards;

    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.25),
      0 0 38px rgba(255, 255, 255, 0.15);

    position: relative;
}

.line1 {
    display: block;
    margin-bottom: .75em;
    margin-top: 1.35em;
}

.name-line {
    display: flex;
    align-items: flex-start; 
    gap: 0.35em;             
}

.small-im {
    font-size: 0.35em;
    transform: translateY(0.12em);
    transform: translateX(0.8em); 
    opacity: 0.95;
}

.name-text {
    font-size: 1.5em;
}

  @keyframes fadeInText {
    0% { opacity: 0; transform: translate(-10px, -50%); }
    100% { opacity: 1; transform: translate(0, -50%); }
  }
  
  .home-btn {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translate(-50%, 0); 
    z-index: 20;
  
    padding: 0.8rem .8rem;
    font-size: 1.9rem;
    font-family: "skippy-sharp", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-decoration: none;
  
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    border-radius: 12px;
    backdrop-filter: blur(6px);
  
    transition: 0.25s ease;
    animation: buttonPulse 4s ease-in-out infinite;
  
    overflow: hidden;
  }
  
  .home-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 160%;
    height: 100%;
    background: linear-gradient(
      110deg,
      transparent 0%,
      rgba(255,255,255,0.65) 50%,
      transparent 100%
    );
    opacity: 0;
    transform: skewX(-20deg);
  }
  
  .home-btn:hover::after {
    animation: shimmerMove 0.9s ease forwards;
    opacity: 1;
  }
  
  @keyframes shimmerMove {
    0% { left: -160%; }
    100% { left: 160%; }
  }
  
  .home-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 12px white, 0 0 22px rgba(255, 255, 255, 0.5);
  }
  
  @keyframes buttonPulse {
    0%   { box-shadow: 0 0 10px rgba(255,255,255,0.25); }
    50%  { box-shadow: 0 0 25px rgba(255,255,255,0.45); }
    100% { box-shadow: 0 0 10px rgba(255,255,255,0.25); }
  }
  