/* Nav.css - Navegación adaptativa */
/* Navegación normal para escritorio */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 10px 6px;
  }
  
.desktop-nav .nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
  
.desktop-nav .nav-links {
    display: flex;
    gap: 20px;
}
  
.desktop-nav .nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}
  
.desktop-nav .nav-links a:hover {
    background: rgba(0, 255, 255, 0.2);
    color: #00FFFF;
}
  
  /* Menú flotante para móviles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
}
  
.mobile-menu .menu-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFFF;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
  
.mobile-menu .nav-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: rgba(10, 10, 26, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
  
.mobile-menu .nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    text-align: center;
    border-radius: 5px;
}
  
.mobile-menu .nav-menu a:hover {
    background-color: rgba(0, 255, 255, 0.2);
    color: #00FFFF;
}
  
  /* Ajuste para pantallas y juego */
#startScreen, .container, main {
    padding-top: 70px;
}
  
#info {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 18px;
    z-index: 100;
    display: block;
}

  /* Ajuste responsive */
@media (max-width: 768px) {
    .desktop-nav {
      display: none;
}
    
.mobile-menu {
      display: block;
    }
    
    #startScreen, .container, main {
      padding-top: 0;
    }
}