body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('assets/images/yukksw6aoi951.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
    cursor: url('assets/images/BatCurs.png') 16 16, auto;
}

.glow {
    text-shadow: 0 0 10px cyan;
}

.logo {
    width: 200px;
    height: auto;
}

.about-images img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
}
/* Logo Always Visible */
.logo-container {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1002;
}

/* Flashy Logo Effect */
.menu-logo {
    width: 50px;
    animation: flashGlow 1.5s infinite alternate;
}

@keyframes flashGlow {
    0% { filter: drop-shadow(0 0 5px cyan); }
    50% { filter: drop-shadow(0 0 15px cyan); }
    100% { filter: drop-shadow(0 0 5px cyan); }
}

/* Hamburger Menu Button */
.hamburger-menu {
    position: fixed;
    top: 70px; /* Below the logo */
    left: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    color: cyan;
    user-select: none;
}

/* Menu Container (Hidden by Default) */
.menu-container {
    position: fixed;
    top: 100px; /* Adjusted to appear below the menu icon */
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 15px cyan;
    display: none; /* Hidden initially */
    z-index: 1000;
}

/* Menu Items */
.menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.menu-container ul li {
    margin: 10px 0;
}

.menu-container ul li a {
    text-decoration: none;
    color: cyan;
    font-weight: bold;
    font-size: 1.2em;
    display: block;
}

.menu-container ul li a:hover {
    color: white;
}