body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
    color: #f0f0f0;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
}

header {
    text-align: center;
    background: linear-gradient(to right, #660066, #000000, #0d0d0d);
    padding: 1rem 0;
    border-bottom: 2px solid #ff00ff;
}

.banner {
    color: #ff00ff;
    font-size: 32pt;
    text-shadow: 0 0 5px #ff00ff;
}

.video-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cam-player {
    width: 100%;
    max-width: 960px;
    height: 540px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
}

footer {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(to right, #000000, #330033);
    border-top: 2px solid #ff00ff;
    color: #aaa;
    font-size: 0.9rem;
}

.menu-container {
    text-align: center;
    margin-top: 20px;
}

.neon-dropdown {
    margin-top: 15px;
    padding: 10px;
    font-size: 14pt;
    background: #111;
    color: #fff;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
    font-family: 'Orbitron', sans-serif;
    border-radius: 10px;
    transition: 0.3s ease;
}

.neon-dropdown:focus {
    background: #ff00ff;
    color: #000;
    outline: none;
}

.hidden-eye {
    font-size: 24pt;
    color: #00ffff;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.eggplant-zone {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    animation: bounce 1s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #0d0d0d,
        #0d0d0d 10px,
        #ff00ff 10px,
        #ff00ff 20px
    );
    opacity: 0.2;
    z-index: -1;
}
.neon-dropdown option:checked {
    background: #000000; /* black background */
    color: #ff00ff; /* purple text */
}
.neon-dropdown option:hover {
    background: #ff00ff; /* bright purple on hover */
    color: #000000; /* black text when hovering */
}
/* Highlight dropdown when a selection is active */
.neon-dropdown.has-selection {
    border-color: #00ffff;
    background: #000;
    color: #ff00ff;
  }
  .bio {
    font-size: 16pt;
    color: #00ffff;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff;
    transition: 0.3s ease;}