  :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;
  }
  .calcHome{
    clip-path: polygon(
        10% 0,       /* Point 1: Top edge, slightly in */
        100% 0,      /* Point 2: Top Right corner */
        100% 90%,    /* Point 3: Right edge, near bottom */
        90% 100%,    /* Point 4: Bottom edge, slightly in */
        0 100%,      /* Point 5: Bottom Left corner */
        0 10%    /* Point 6: Left edge, near top */
    );
    border-radius: 30px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    filter: drop-shadow(0 0 10px var(--neon-blue));
    background-color: rgba(10, 25, 47, 0.9);
    border: 1px solid var(--neon-blue);
    width: 550px;
    height: auto;
    min-height: 900px;
    padding-bottom: 50px;
    padding-top: 30px;


    -webkit-transform: translateZ(0);
    transform:translateZ(0);
  }
  label{
    text-align: left;
    font-size: 1em;
    width: 80%;
    text-align: center;
    margin-bottom: -15px;
  }
  button{
    cursor: pointer;
  }

  select{
    cursor: pointer;
  }
  .input-style2{
    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 80%;
    font-family: 'Orbitron', sans-serif;
    border-bottom: 2px solid var(--neon-blue);;
    outline: none;
    background-color: rgba(10, 25, 47, 0.9);
    color: white;
  }
    .radio-container{
  display: flex;

  gap: 20px;
  width: 80%;
  justify-content: center;
  }
  .radio-option{

    gap: 5px;
  }
  .radio-option input{
    cursor: pointer;
  }
  .radio-option label{
    cursor: pointer;
  }
  #result{
    margin: 0;
    margin-top: -10px;
    justify-content: center;
  }
  .lbs-select{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 84%; 
  }
  .weight-input{
  min-width: 380px;
  }
  .unit-selector{
    width: 50px;
    background-color: transparent;
    color: white;
    border: none;
    border-bottom: 2px solid var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    outline: none;
    cursor: pointer;
  }
  .unit-selector1{
    min-width: 150px;
  }
  .options{
    background-color: rgba(10, 25, 47, 0.9);
    color: var(--neon-blue);
    cursor: pointer;
  }
  #height-ft-in input {
    width: 50%;
    text-align: center;
  }
  .result-container{
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .sci-fi-table{
    width: 100%;
    border-collapse:collapse;
    margin-top: 10px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
  }
  .sci-fi-table th, .sci-fi-table td{
    border: 1px solid rgba(0, 243, 255, 0.5);
    padding: 10px;
    text-align: left;
  }
  .sci-fi-table th{
    background-color: rgba(0, 243, 255, 0.1);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .sci-fi-table td:last-child{
    text-align: right;
    font-weight: bold;
    font-size: 1.1rem;
  }
  .macro-dashboard{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 300px;
  }
  .dashboard-layout{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1600px;
    flex-wrap: wrap;
  }
  .homepage-article{
    margin: 50px;
    max-width: 550px;
    height: fit-content;
  }
  .left-column{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #pie-chart{
    width: 200px;
    height: 200px;
    border-radius: 50%;

    background: conic-gradient(
      #ff0055 0% 30%, 
      #00f3ff 30% 75%, 
      #00ff88 75% 100%
      );

    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    border: 2px solid var(--neon-blue);
    -webkit-mask: radial-gradient(transparent 50%, black 51%);
    mask: radial-gradient(transparent 50%, black 51%);
  }
  .macro-legend p{
  margin: 5px 0;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  }
  .loading-text{
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 10px var(--neon-blue);
    animation: pulse 1s infinite;
  }
@keyframes pulse {
  0% {opacity: 1;}
  50% {opacity: 0.3;}
  100% {opacity: 1;}
  }
  
 @media (max-width: 768px){
    body{
      padding-bottom: 10px;
  
    }
    .calcHome{
      order: 2;
      width: 90%;
      min-height: auto;
      padding-bottom: 30px;
      margin: 0px auto;
      padding-top: 50px;
      margin-bottom: 20px;
    }
    .left-column{
      display: contents;
    }
    .macro-dashboard{
      order: 3;
      margin: 0 auto;
    }
    .weight-input{
      min-width: 100px;
    }
    .lbs-select{
      width: 90%;
    }
    .dashboard-layout{
      gap: 30px;
      display: flex;
      flex-direction: column;
    }
    .homepage-article{
      order: 4;
      max-width: 100%;
      margin: 20px auto 0px auto;
    }
    .legal-container{
      padding: 20px;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    #logo-link{
      order: 1;
      align-self:center;
      margin-bottom: 10px;
    }
    #home-button{
     
      width: 120px;
      margin-top: -10px;
    }
    .cyber-footer{
      order: 99;
    }
    
  }

  