  :root{
    --neon-blue: #00f3ff;
  }
  body{
    background-color: #050b14;
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    padding-top: 60px;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    color: white;
    background-image: 
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05)1px, transparent 1px);
    background-size: 30px 30px;
    font-family:'Orbitron', sans-serif;
    position: relative;
    padding-bottom: 10px;
    box-sizing: border-box;
  }
  .input-style{
    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 80%;
    font-family: 'Orbitron', sans-serif;
    border-bottom: 2px solid var(--neon-blue);
    outline: none;
    background: transparent;
    color: white;
  }
  input::placeholder{
    color: white;
  }
  .cyber-footer{
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    margin-top: auto;
    flex-shrink: 0;
  }
  .footer-links{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a{
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
  }
  .footer-links a:hover{
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
  }
  .copyright{
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Obitron', sans-serif;
    margin: 0;
  }
  .tool-icon{
    width: 150px;
    height: auto;
    transition: 0.3s;
  }
  .tool-icon:hover{
    filter: drop-shadow(0 0 10px var(--neon-blue));
    cursor: pointer;
  }
  .tools{
    display: flex;
    flex-direction: row;
    width: 450px;
    height: auto;
    background-color: rgba(10, 25, 47, 0.9);;
    justify-content: center;
    gap: 40px;
  }
  #home-button{
    width: 150px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: 0.3s;
  }
  #home-button:hover{
    filter: drop-shadow(0 0 10px var(--neon-blue));
    cursor: pointer;
  }
  #hub-logo{
    width: 250px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 40px;
    transition: 0.3;
  }
  #hub-logo:hover{
    filter: drop-shadow(0 0 15px var(--neon-blue));
    cursor: pointer;
  }
  .main{
    display: flex;
    flex-direction: column;
    align-items: center;

  }
  .tools{
    width: 100%;
  }
    .legal-container{
    max-width: 800px;
    width: 90%;
    margin: 120px auto 100px auto;
    background-color: rgba(10, 25, 47, 0.9);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    box-sizing: border-box;
  }
  .legal-container h2{
    color: var(--neon-blue);
    text-transform: uppercase;
    border-bottom: 2px solid var(--neon-blue);
    padding-bottom: 10px;
    margin-top: 0;
  }
  .legal-container p{
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: sans-serif;
  color: #e0e0e0;
  }

/* Phone Layout for all*/
  @media (max-width: 768px){
    body{
      padding-bottom: 10px;
  
    }
    #logo-link{
      order: 1;
      align-self:center;
      margin-bottom: 10px;
    }
    #home-button{
     
      width: 120px;
      margin-top: -10px;

    }
    .main{
      display: contents;
    }
    #hub-logo{
      order: 1;
    }
    .tools{
      order: 2;
      width: 100%;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cyber-footer{
      order: 99;
    }
    
  }
