* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Science Gothic", sans-serif;
  }

  body {
    height: 100vh;
    background: url("background-image.png") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  /* Header Navigation */
  .header-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 20px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    animation: fadeInSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    will-change: transform, opacity;
  }

  .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #373737;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(-15px) scale(0.9);
    animation: fadeInSlideScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
  }

  .social-link:nth-child(1) {
    animation-delay: 0.4s;
  }

  .social-link:nth-child(2) {
    animation-delay: 0.55s;
  }

  .social-link:nth-child(3) {
    animation-delay: 0.7s;
  }

  .social-link:hover {
    transform: translateY(-4px) scale(1.05);
    opacity: 0.9;
  }

  .social-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .social-link:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
  }


  /* Center Container */
  .center-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .center-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Logo */
  .logo {
    opacity: 0;
    transform: translateY(-60px) scale(0.8) rotate(-5deg);
    animation: dropInSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
    will-change: transform, opacity;
  }

  .logo img {
    width: 120px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .logo:hover img {
    transform: scale(1.1) rotate(5deg);
  }

  /* Text */
  .center-text {
    text-align: center;
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    animation: fadeInSlideScale 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
    color:#373737;
    will-change: transform, opacity;
  }

  .coming {
    font-size: 22px;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.3s;
  }

  .soon {
    margin-top:-25px;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: fadeInUpScale 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.5s;
  }

  .center-text p {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 2s;
    font-size: 14px;
    letter-spacing: 2px;
  }

  /* Footer */
  .footer {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    animation: fadeInSlideScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.8s;
    will-change: transform, opacity;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .footer:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .footer img {
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .footer:hover img {
    transform: scale(1.1);
  }


/* Shared */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    animation: fadeInSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
  }
  
  /* Depth */
  .blur-layer {
    z-index: 1;
  }
  
  .main-layer {
    z-index: 2;
  }
  
  /* Shape base */
  .shape {
    position: absolute;
    animation: float 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform;
  }
  
  /* Sizes (keep big differences) */
  .sm { width: 10px; height: 10px; }
  .md { width: 16px; height: 16px; }
  .lg { width: 24px; height: 24px; }
  .xl { width: 36px; height: 36px; }
  
  /* Styles */
  .yellow { background: #f2b233; }
  .outline { border: 2px solid rgba(0, 0, 0, 0.25); }
  
  /* Blur depth */
  .blur {
    filter: blur(3px);
    opacity: 0.5;
  }
  
/* Foreground (around, not on top) */
.s1 { top: 32%; left: 38%; }
.s2 { top: 46%; left: 30%; }
.s3 { top: 60%; left: 42%; }

.s4 { top: 34%; left: 62%; }
.s5 { top: 58%; left: 66%; }
.s6 { top: 22%; left: 18%; }
.s7 { top: 72%; left: 82%; }

/* Animation durations */
.s1 { animation-duration: 10s; }
.s2 { animation-duration: 12s; }
.s3 { animation-duration: 14s; }

.s4 { animation-duration: 11s; }
.s5 { animation-duration: 13s; }

/* Blurry background (farther out) */
.b1 { animation-duration: 16s; }
.b2 { animation-duration: 18s; }

/* Blurry background (farther out) */
.b1 { top: 28%; left: 20%; animation-duration: 26s; }
.b2 { top: 64%; left: 78%; animation-duration: 30s; }


@keyframes float {
    0%, 100% { 
      transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% { 
      transform: translateY(-30px) translateX(10px) rotate(5deg) scale(1.05);
    }
    50% { 
      transform: translateY(-40px) translateX(-5px) rotate(8deg) scale(1.1);
    }
    75% { 
      transform: translateY(-20px) translateX(-10px) rotate(-5deg) scale(1.05);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fadeInSmooth {
    from { 
      opacity: 0;
    }
    to { 
      opacity: 1;
    }
  }

  @keyframes fadeInSlide {
    from {
      opacity: 0;
      transform: translateY(-20px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes fadeInSlideScale {
    from {
      opacity: 0;
      transform: translateY(-15px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUpScale {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  @keyframes dropInSmooth {
    from {
      opacity: 0;
      transform: translateY(-60px) scale(0.8) rotate(-5deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1) rotate(0deg);
    }
  }