#menu-toggle {
  display: none;
}
#top-menu {
    position: absolute;
    top: 0;
    right: 20px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    z-index: 1000;
  }
  
  #top-menu .menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 1rem;
    margin: 0;
  background: rgba(240, 240, 240, 0.95);
    box-shadow: none;
  }
  
  #top-menu .menu li a {
    text-decoration: none;
    color: #666; /* changed from #333 to a softer gray */
    font-weight: 500;
  }
  
  #top-menu .menu-icon {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.5rem;
    background: #f2f2f2;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  @media (max-width: 600px) {
    #top-menu .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 40px;
      right: 0;
    }
  
    #menu-toggle:checked + .menu-icon + .menu {
      display: flex;
    }
  
    #top-menu .menu-icon {
      display: block;
    }
  
    #menu-toggle {
      display: none;
    }
  }