.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
  }
  
  .nav-links a:hover {
    color: #888888;
  }
  
  .nav-links a.active {
    color: #cccccc;
    border-bottom: 2px solid #ffffff;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      gap: 1rem;
    }
  
    .nav-links a {
      font-size: 0.7rem;
    }
  }