/* Mobile navigation fixes - Add to mobile-styles.css */

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #05ddff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 1001;
}

/* Mobile-specific media queries */
@media (max-width: 767px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile navigation - modified to work with your styles */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(14, 21, 47, 0.95);
    width: 100%;
    height: auto;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #42269d;
  }
  
  /* Show the menu when active class is applied */
  .nav-menu.active {
    left: 0;
  }
  
  /* Reset flex to vertical for mobile */
  .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  
  /* Style each navigation link properly in mobile view */
  .nav-menu .nav-link {
    margin: 5px 0;
    padding: 15px 20px;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid rgba(66, 38, 157, 0.3);
    color: #c2f3ff !important;
  }
  
  /* Remove the nav divider on mobile */
  .nav-menu a.nav-link::after {
    display: none !important;
  }
  
  /* Center the download button */
  .button.download {
    margin: 15px auto;
    width: 80%;
    display: block;
    text-align: center;
  }
  
  /* Stack the main content for better mobile layout */
  .container.main-content {
    flex-direction: column;
  }
  
  .left-container, 
  .shop-container, 
  .right-container {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .header-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .subheader-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}