:root {
  --accent-cyan: #5dd5ff;
  --accent-violet: #5aa8ff;
  --accent-amber: #ffbb71;
}

html {
  height: 100%;
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
}
body {
  min-height: 100%;
  margin: 0;
  background: radial-gradient(circle at 25% 20%, rgba(93, 213, 255, 0.25), transparent 50%),
    radial-gradient(circle at 75% 15%, rgba(90, 168, 255, 0.25), transparent 55%),
    linear-gradient(135deg, #05060b 0%, #0c0f1a 50%, #08090f 100%);
  color: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.35;
  z-index: 0;
}

body::before {
  background: radial-gradient(circle, rgba(93, 213, 255, 0.7), transparent 70%);
  top: -120px;
  left: -80px;
}

body::after {
  background: radial-gradient(circle, rgba(255, 187, 113, 0.65), transparent 65%);
  bottom: -140px;
  right: -110px;
}
  
  #container {
    position: relative; 
    padding: 32px;
    border-radius: 28px;
    background: rgba(7, 10, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  #thanks {
    margin-top: 32px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent-cyan), var(--accent-violet));
    box-shadow: 0 12px 22px rgba(93, 213, 255, 0.25);
    animation: appear 0.3s 0.6s forwards;
    opacity: 0;
    transform: translateY(-5px);
  }

  #thanks p {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #05060b;
  }
  
  #hand2 {
    animation: 0.3s forwards hands2;
    position: absolute;
    right: 0;
    z-index: -1;
    top: -1rem;
    transform: scaleX(-1) rotate(-55deg);
    opacity: 0;
  }

  #hand { color: var(--accent-cyan); }

  #hand2 { color: var(--accent-violet); }
  
  #hand2 path:last-child,
  #hand path:last-child {
    animation: appearHide 0.3s forwards;
    opacity: 0.65;
  }
  
  #hand path:last-child {
    animation-delay: 0.3s;
  }
  
  #lines, #lines2 {
    animation: linesAppear 0.4s;
    bottom: -3.6rem;
    right: -4.5rem;
    transform: scale(0.775);
    opacity: 0;
    mix-blend-mode: screen;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.45));
  }
  
  #lines2 {
    animation: linesAppear2 0.35s 0.35s;
    right: -1.1rem;
    bottom: -4.5rem;
    transform: rotate(45deg) scale(0.8);
  }
  
  @keyframes appearHide {
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  
  #hand {
    animation: 0.3s 0.25s forwards scale;
    opacity: 0;
    fill: none;
    transform: rotate(-65deg);
    margin-right: 3rem;
  }
  
  @keyframes scale {
    50% {
      opacity: 1;
      transform: rotate(-60deg) scale(1.75);
    }
    100% {
      opacity: 1;
    }
  }
  
  
  @keyframes hands2 {
    50% {
      opacity: 1;
      transform: scaleX(-1) scale(1.5) rotate(-55deg);
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes linesAppear {
    50% {
      opacity: 0.9;
      transform: scale(1.2);
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes linesAppear2 {
    50% {
      opacity: 0.9;
      transform: rotate(45deg) scale(1.15);
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes appear {
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }