/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #ffffffe1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Header Styles */
  .header {
    position: relative;
    text-align: center;
    background: linear-gradient(20deg, rgb(255, 255, 255) 0%, rgb(6, 45, 173) 100%);
    color: rgb(59, 52, 52);
    padding-bottom: 10px; /* Adjust space below header */
  }
  
  .inner-header {
    height: 20vh; /* Reduced height */
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .logo {
    width: 70px;
    fill: rgba(255, 255, 255, 0.11);
    display: inline-block;
    vertical-align: middle;
  }
  
  h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 36px; /* Reduced font size */
    margin: 0;
  }
  
  .waves {
    position: relative;
    width: 100%;
    height: 10vh; /* Reduced height */
    margin-bottom: -7px; /* Fix for safari gap */
    min-height: 80px; /* Reduced min-height */
    max-height: 120px; /* Reduced max-height */
  }
  
  /* Main Container Styles */
  .main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center buttons horizontally */
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
  }
  
  /* Button Styling */
  .button-86 {
    all: unset;
    width: 150px; /* Adjust the width as needed */
    height: 50px; /* Adjust the height as needed */
    font-size: 18px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-86::after,
  .button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
  }
  
  .button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
  }
  
  .button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
  }
  
  .button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
  }
  
  .button-86:hover::after {
    border-radius: 10px;
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #2a2a36;
  }
  
  .button-86:hover {
    color: #ffffff;
    box-shadow: 0px 0px 10px 2px #1d1d2f;
  }
  