* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #202020;
    padding: 100px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.Hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-con {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.glass-button {
    width: 100%;
    max-width: 400px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .glass-button:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #000;
  }
  
  .neumorphism-button {
    width: 100%;
    max-width: 400px;
    height: 80px;
    background: #e0dada;
    border: none;
    color: #333;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 8px 8px 10px #bebebe, -8px -8px 10px #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .neumorphism-button:hover {
    box-shadow: inset 8px 8px 10px #bebebe, inset -8px -8px 10px #ffffff;
  }

  .gradient-button {
    width: 100%;
    max-width: 400px;
    height: 80px;
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    border: none;
    color: #070707;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .gradient-button::before {
    content: 'Buy Now';
    position: absolute;
    top: 0;
    padding-top: 15px;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(45deg, #7873f5, #ff6ec4, #7873f5);
    transition: left 0.3s ease;
    z-index: 0;
  }
  
  .gradient-button:hover::before {
    left: 0;
  }
  
  .gradient-button span {
    position: relative;
    z-index: 1;
  }
 
  @media (max-width: 425px) {
      body {
        padding: 0 !important;
      }
    }
    
    .hero .container {
      padding: 0 15px;
    }
  
    .btn-con {
      margin-bottom: 15px;
      text-align: center;
    }
  
    .btn-con button {
      width: 100%;
      max-width: 400px;
      font-size: 16px;
      padding: 12px 18px;
      margin: 0 auto;
      display: block;
    }
  
  
  