
  

  
  .hero-right {
    position: relative;
   
  }
  .spin-button-hero {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: 18px;
    background: rgb(2 93 254 / 96%);
    ;
    color: aliceblue;
    border: none;
    cursor: pointer;

    transition: all 0.5s;
    position: relative;
    top: 20px;
    z-index: 6;
  }
  
  .spin-button-hero:hover {
    transform: scale(1.05);
    background: hsla(0, 95%, 49%, 0.922);
  }
  .hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
    z-index: 2;
    pointer-events: none;
  }
  
  
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    background: transparent;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .logo img {
    height: 90px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
  }
  
  .hero-section {
    position: relative;
    padding-top: 120px;
    color: #fff;
    overflow: hidden;
    min-height: 100vh;
    background-image: url(/image/hero-bg.png);
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: right center;
    z-index: 1;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    background-image: url(/image/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  
    z-index: -1; 
    opacity: 0.1; 
  }
  
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  
  .hero-title {
    font-size: 7rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.291);
   
  }
  
  .gradient-text {
    background: linear-gradient(90deg, #ffcf00, #ff0066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .hero-subtitle {
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    color: #aaa;
    line-height: 1.6;
    max-width: 520px;
  }
  
  .hero-right img {
    max-width: 540px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
  
  .chip {
    position: absolute;
    top: -120px;
    width: 90px;
    height: 90px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    pointer-events: none;
  }
  
  .chip1 {
    left: 10%;
    background-image: url('/1.svg');
    animation-duration: 10s;
    animation-delay: 0s;
  }
  
  .chip2 {
    left: 30%;
    background-image: url('/2.svg');
    animation-duration: 12s;
    animation-delay: 1s;
  }
  
  .chip3 {
    left: 50%;
    background-image: url('/3.svg');
    animation-duration: 9s;
    animation-delay: 0.5s;
  }
  
  .chip4 {
    left: 70%;
    background-image: url('/4.svg');
    animation-duration: 11s;
    animation-delay: 2s;
  }
  
  .chip5 {
    left: 90%;
    background-image: url('/5.svg');
    animation-duration: 10.5s;
    animation-delay: 0.3s;
  }
  
  @keyframes fall {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      transform: translateY(calc(100vh + 100px));
      opacity: 0;
    }
  }
  



  .pulse {
    animation: pulse-glow 2s ease-in-out infinite;
  }
  
  @keyframes pulse-glow {
    0% {
      transform: scale(1);
      filter: brightness(1) drop-shadow(0 0 0px #ff0066);
    }
    50% {
      transform: scale(1.06);
      filter: brightness(1.2) drop-shadow(0 0 12px #ff0066);
    }
    100% {
      transform: scale(1);
      filter: brightness(1) drop-shadow(0 0 0px #ff0066);
    }
  }
  


  @media (max-width: 1024px) {
    .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
    }
  
    .hero-right {
      justify-content: center;
    }
  
    .hero-title {
      font-size: 44px;
      
    }
  
    .hero-subtitle {
      font-size: 18px;
    }
  
    .hero-right img {
      max-width: 80%;
    }
  
    .chip {
      display: none;
    }
    .logo img {
      width: 120px;
    }
    .header {
      padding: 0;
    }
    .hero-section {
      background-size: calc(300px);
      background-position: center;
      padding-top: 80px;
    }
    .spin-button-hero{
      top: 240px;
    }
  }
  