@media (max-width: 720px) {
  .taskbar {
    display: none !important;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 30px;
    z-index: 10000;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 6px 0;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease-in-out;
  }

  .mobile-nav a {
    color: white;
    text-decoration: none;
    margin: 10px 0;
  }

  .mobile-nav.show {
    display: flex !important;
  }

  .gallery {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px !important;
    gap: 30px !important;
  }

  .image-slot {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .image-slot img {
    width: 100% !important;
    height: auto !important;
  }

  .bg-glow-text {
    font-size: 2rem !important;
    top: 35% !important;
    padding: 0 15px;
    white-space: normal;
  }
}
