.lobby-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
}

.lobby-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-controls {
    display: flex;
    gap: 10px;
}

.rooms-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px #1740c1;
}

.room-card.full {
    opacity: 0.7;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .lobby-wrapper {
        padding: 10px;
    }

    .room-controls {
        flex-direction: column;
    }

    .neon-button {
        padding: 15px;
        width: 100%;
    }
}

.neon-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #1740c1;
    box-shadow: 0 0 10px #1740c1;
    padding: 20px;
}

.neon-text {
    color: #1740c1;
    text-shadow: 0 0 5px #1740c1;
}

.neon-button {
    background: transparent;
    border: 1px solid #1740c1;
    color: #1740c1;
    padding: 8px 16px;
    cursor: pointer;
    margin-bottom:10px;
}

.neon-button:hover {
    transform: translateY(-3px);
    border: 1px solid #173aaa;
    box-shadow: 0 3px 0 0 rgba(24, 65, 195, 0.6);
}

.room-item {
    border: 2px solid #1740c1;
    margin: 10px 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

