/* Mobile menu styles */
.mobile-menu {
  display: none;
}

.overlay {
  display: none;
}

@media screen and (max-width: 600px) {
  .mobile-menu {
    display: block;
  }

  .mobile-menu-button {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: rgba(0, 20, 40, 0.8);
    border: 2px solid #00a6ff;
    border-radius: 8px;
    color: #00a6ff;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 166, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    background: linear-gradient(180deg, rgba(135, 206, 235, 0.15), rgba(176, 224, 230, 0.12));
    border-right: 2px solid rgba(135, 206, 235, 0.5);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu-content.active {
    left: 0;
  }

  .mobile-menu-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(135, 206, 235, 0.15);
    border: 2px solid rgba(135, 206, 235, 0.6);
    border-radius: 50%;
    color: #00a6ff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 166, 255, 0.3), inset 0 0 15px rgba(135, 206, 235, 0.2);
  }

  .close-button:hover {
    transform: rotate(90deg);
    box-shadow: 0 0 25px rgba(0, 166, 255, 0.4), inset 0 0 20px rgba(135, 206, 235, 0.3);
    background: rgba(135, 206, 235, 0.25);
  }

  .mobile-menu-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 0;
  }

  .mobile-menu-logos img {
    height: 35px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 166, 255, 0.3));
  }

  .mobile-menu-logos img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 166, 255, 0.5));
  }

  .mobile-menu-footer {
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 20, 40, 0.5);
    border-top: 2px solid rgba(0, 166, 255, 0.2);
  }

  .mobile-menu-footer .copyright {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .mobile-menu-creators {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
  }

  .mobile-menu-creators a {
    display: inline-block;
    color: #00a6ff;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(0, 166, 255, 0.1);
    border: 1px solid rgba(0, 166, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 166, 255, 0.2);
    -webkit-text-fill-color: #00a6ff;
  }

  .mobile-menu-creators a:hover {
    background: rgba(0, 166, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 166, 255, 0.3);
    -webkit-text-fill-color: #fff;
  }

  /* Hide header and footer on mobile */
  .header, .footer {
    display: none;
  }
}
