body {
    margin: 0;
    font-family: monospace;
    background: black;
    color: #00ffcc;
    overflow-x: visible;
}

.container {
    display: flex;
}

/* LEFT PANEL */

.left-panel {
    flex: 1;
    padding: 40px;
    background: radial-gradient(circle at center, #001122, #000);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 48px;
    margin-bottom: 10px;
    color: #00ffcc;
}

.tagline {
    font-size: 16px;
    margin-bottom: 30px;
    color: #aaa;
}

/* AVATAR GRID */

.avatars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.avatars img {
    width: 100%;
    border: 2px solid #00ffcc;
    border-radius: 6px;
    transition: 0.2s;
}

.avatars img:hover {
    transform: scale(1.05);
}

/* RIGHT PANEL */

.right-panel {
    width: 350px;
    background: #001133;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-box input {
    margin-bottom: 15px;
    padding: 10px;
    background: black;
    border: 1px solid #00ffcc;
    color: #00ffcc;
}

.login-box button {
    padding: 10px;
    background: #00aa88;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.login-box button:hover {
    background: #00ccaa;
}

.register {
    text-align: center;
    margin-top: 10px;
}

.register a {
    color: #00ffcc;
    text-decoration: underline;
}

#lurkAsGuest {
   font-size: 16px;
    text-decoration: underline;
    font-weight: normal;
    opacity: 0.2;
    color: #00ffcc;
    text-align: center;
}

.learnMore {
   font-size: 12px;
    text-decoration: underline;
    font-weight: normal;
    opacity: 0.3;
    color: #00ffcc;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .container {
        flex-direction: column;
    }

    .left-panel {
        padding: 20px;
        text-align: center;
    }

    .avatars {
        grid-template-columns: repeat(3, 1fr);
    }

    .right-panel {
        width: 100%;
        padding: 20px 0;
    }
}