.footer-bottom {
    background-color: #11111B;
    color: #E0E0E0;
    padding: 2rem 1rem;     
    text-align: center;
  }
  

  .footer-line {
    width: 80%;
    height: 2px;
    background-color: #FFC331; 
    margin: 0 auto 1.5rem;     
  }
  
 
  .footer-links {
    display: grid;
    grid-template-columns: auto 1fr auto; 
    align-items: center;
    max-width: 1200px;  
    margin: 0 auto;
  }
  

  .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  
  .footer-copy {
    font-size: 0.95rem;
    opacity: 0.8;
  }
 
  @media (max-width: 600px) {
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .footer-link, 
    .footer-copy {
      font-size: 0.9rem;
    }
    .background-line {
        position: absolute;
        top: 0;
        left: 0;
        /* ... */
        overflow: visible;
      }
      
  }